mirror of
https://github.com/usememos/memos.git
synced 2025-02-24 15:17:52 +01:00
41 lines
549 B
Go
41 lines
549 B
Go
|
package tokenizer
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestTokenize(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
text string
|
||
|
tokens []*Token
|
||
|
}{
|
||
|
{
|
||
|
text: "*Hello world!",
|
||
|
tokens: []*Token{
|
||
|
{
|
||
|
Type: Star,
|
||
|
Value: "*",
|
||
|
},
|
||
|
{
|
||
|
Type: Text,
|
||
|
Value: "Hello",
|
||
|
},
|
||
|
{
|
||
|
Type: Space,
|
||
|
Value: " ",
|
||
|
},
|
||
|
{
|
||
|
Type: Text,
|
||
|
Value: "world!",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
for _, test := range tests {
|
||
|
result := tokenize(test.text)
|
||
|
require.Equal(t, test.tokens, result)
|
||
|
}
|
||
|
}
|