forked from expr-lang/expr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource_test.go
69 lines (62 loc) · 2.01 KB
/
source_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package file
import (
"encoding/json"
"testing"
"github.com/stretchr/testify/assert"
)
const (
unexpectedSnippet = "%s got snippet '%s', want '%v'"
snippetNotFound = "%s snippet not found, wanted '%v'"
snippetFound = "%s snippet found at Line %d, wanted none"
)
func TestStringSource_SnippetMultiLine(t *testing.T) {
source := NewSource("hello\nworld\nmy\nbub\n")
if str, found := source.Snippet(1); !found {
t.Errorf(snippetNotFound, t.Name(), 1)
} else if str != "hello" {
t.Errorf(unexpectedSnippet, t.Name(), str, "hello")
}
if str2, found := source.Snippet(2); !found {
t.Errorf(snippetNotFound, t.Name(), 2)
} else if str2 != "world" {
t.Errorf(unexpectedSnippet, t.Name(), str2, "world")
}
if str3, found := source.Snippet(3); !found {
t.Errorf(snippetNotFound, t.Name(), 3)
} else if str3 != "my" {
t.Errorf(unexpectedSnippet, t.Name(), str3, "my")
}
if str4, found := source.Snippet(4); !found {
t.Errorf(snippetNotFound, t.Name(), 4)
} else if str4 != "bub" {
t.Errorf(unexpectedSnippet, t.Name(), str4, "bub")
}
if str5, found := source.Snippet(5); !found {
t.Errorf(snippetNotFound, t.Name(), 5)
} else if str5 != "" {
t.Errorf(unexpectedSnippet, t.Name(), str5, "")
}
}
func TestStringSource_SnippetSingleLine(t *testing.T) {
source := NewSource("hello, world")
if str, found := source.Snippet(1); !found {
t.Errorf(snippetNotFound, t.Name(), 1)
} else if str != "hello, world" {
t.Errorf(unexpectedSnippet, t.Name(), str, "hello, world")
}
if str2, found := source.Snippet(2); found {
t.Errorf(snippetFound, t.Name(), 2)
} else if str2 != "" {
t.Errorf(unexpectedSnippet, t.Name(), str2, "")
}
}
func TestStringSource_MarshalJSON(t *testing.T) {
source := NewSource("hello, world")
encoded, err := json.Marshal(source)
assert.NoError(t, err)
assert.Equal(t, `[104,101,108,108,111,44,32,119,111,114,108,100]`, string(encoded))
decoded := &Source{}
err = json.Unmarshal(encoded, decoded)
assert.NoError(t, err)
assert.Equal(t, source.Content(), decoded.Content())
}