You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
4.0 KiB
Go
112 lines
4.0 KiB
Go
package wikilink_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.ndumas.com/ndumas/wikilink-parser"
|
|
)
|
|
|
|
func Test_Lexer(t *testing.T) {
|
|
// t.Parallel()
|
|
tcs := []struct {
|
|
name string
|
|
in string
|
|
expected []wikilink.Item
|
|
}{
|
|
{
|
|
name: "wikilink", in: "[[wikilink]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemIdent, Val: "wikilink"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
{
|
|
name: "wikilink|display name", in: "[[wikilink|display name]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemIdent, Val: "wikilink"},
|
|
{Typ: wikilink.ItemAlias, Val: "|"},
|
|
{Typ: wikilink.ItemIdent, Val: "display name"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
{
|
|
name: "wikilink|display name|second pipe", in: "[[wikilink|display name|second pipe]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemIdent, Val: "wikilink"},
|
|
{Typ: wikilink.ItemAlias, Val: "|"},
|
|
{Typ: wikilink.ItemIdent, Val: "display name"},
|
|
{Typ: wikilink.ItemAlias, Val: "|"},
|
|
{Typ: wikilink.ItemIdent, Val: "second pipe"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
{
|
|
name: "wikilink with numeric alias|420|second pipe", in: "[[wikilink|420|second pipe]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemIdent, Val: "wikilink"},
|
|
{Typ: wikilink.ItemAlias, Val: "|"},
|
|
{Typ: wikilink.ItemIdent, Val: "420"},
|
|
{Typ: wikilink.ItemAlias, Val: "|"},
|
|
{Typ: wikilink.ItemIdent, Val: "second pipe"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
{
|
|
name: "wikilink with spaces in filename", in: "[[wikilink spaces]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemIdent, Val: "wikilink spaces"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
{
|
|
name: "#heading", in: "[[#heading]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemHeading, Val: "#"},
|
|
{Typ: wikilink.ItemIdent, Val: "heading"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
{
|
|
name: "wikilink#heading", in: "[[wikilink#heading]]", expected: []wikilink.Item{
|
|
{Typ: wikilink.ItemOpenLink, Val: "[["},
|
|
{Typ: wikilink.ItemIdent, Val: "wikilink"},
|
|
{Typ: wikilink.ItemHeading, Val: "#"},
|
|
{Typ: wikilink.ItemIdent, Val: "heading"},
|
|
{Typ: wikilink.ItemCloseLink, Val: "]]"},
|
|
},
|
|
},
|
|
/*
|
|
{name: "", in: "", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink#heading|display name", in: "[[wikilink#heading|display name]]", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink#heading|display name|second pipe", in: "[[wikilink#heading|display name|second pipe]]", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink with numeric aliases#heading|420|display name", in: "[[wikilink#heading|420|second pipe]]", expected: []wikilink.ItemType{}},
|
|
{name: "^blockRef", in: "[[^blockRef]]", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink^blockRef", in: "[[wikilink^blockRef]]", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink^blockRef|display name", in: "[[wikilink#^blockRef|display name]]", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink^blockRef|display name|second pipe", in: "[[wikilink#^blockRef|display name|second pipe]]", expected: []wikilink.ItemType{}},
|
|
{name: "wikilink with numeric aliases^blockRef|420|second pipe", in: "[[wikilink#^blockRef|420|second pipe]]", expected: []wikilink.ItemType{}},
|
|
*/
|
|
}
|
|
|
|
for _, tc := range tcs {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
// t.Parallel()
|
|
l := wikilink.Lex("testLexer", tc.in)
|
|
defer l.L.Sync()
|
|
for _, e := range tc.expected {
|
|
n := l.NextItem()
|
|
if e.Typ != n.Typ {
|
|
t.Logf("expected Type %s, received %s", e.Typ.String(), n.Typ.String())
|
|
t.Fail()
|
|
}
|
|
|
|
if e.Val != n.Val {
|
|
t.Logf("expected Value %q, received %q", e.Val, n.Val)
|
|
t.Fail()
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|