summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/rsc/imap/sx_test.go
blob: 9644209cadb376e4bd1472a21b7354a32f5eee4f (plain)
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
package imap

import (
	"bufio"
	"reflect"
	"strings"
	"testing"
)

var sxTests = []struct {
	in  string
	out *sx
}{
	{"1234", &sx{kind: sxNumber, number: 1234}},
	{"hello", &sx{kind: sxAtom, data: []byte("hello")}},
	{"hello[world]", &sx{kind: sxAtom, data: []byte("hello[world]")}},
	{`"h\\ello"`, &sx{kind: sxString, data: []byte(`h\ello`)}},
	{"{6}\r\nh\\ello", &sx{kind: sxString, data: []byte(`h\ello`)}},
	{`(hello "world" (again) ())`,
		&sx{
			kind: sxList,
			sx: []*sx{
				&sx{
					kind: sxAtom,
					data: []byte("hello"),
				},
				&sx{
					kind: sxString,
					data: []byte("world"),
				},
				&sx{
					kind: sxList,
					sx: []*sx{
						&sx{
							kind: sxAtom,
							data: []byte("again"),
						},
					},
				},
				&sx{
					kind: sxList,
				},
			},
		},
	},
}

func TestSx(t *testing.T) {
	for _, tt := range sxTests {
		b := bufio.NewReader(strings.NewReader(tt.in + "\n"))
		sx, err := rdsx1(b)
		if err != nil {
			t.Errorf("parse %s: %v", tt.in, err)
			continue
		}
		if !reflect.DeepEqual(sx, tt.out) {
			t.Errorf("rdsx1(%s) = %v, want %v", tt.in, sx, tt.out)
		}
	}
}