-
Notifications
You must be signed in to change notification settings - Fork 0
/
syncer_test.go
65 lines (52 loc) · 2.04 KB
/
syncer_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
package kdlscan2
import (
"testing"
"github.com/alunegov/kdlscan2/file/lng"
)
func TestSyncResourceStrings(t *testing.T) {
var tests = []struct {
name string
targetFlag lng.KeyFlag
targetValue string
refFlag lng.KeyFlag
refValue string
expFlag lng.KeyFlag
expValue string
}{
{"0", lng.Std, "t", lng.Std, "r", lng.Std, "r"},
{"1", lng.Std, "t", lng.Modified, "r", lng.Std, "t"},
{"2", lng.Std, "t", lng.Deleted, "r", lng.Std, "t"},
{"3", lng.Modified, "t", lng.Std, "r", lng.Std, "r"},
{"4", lng.Modified, "t", lng.Modified, "r", lng.Modified, "t"},
{"5", lng.Modified, "t", lng.Deleted, "r", lng.Modified, "t"},
{"6", lng.Deleted, "t", lng.Std, "r", lng.Deleted, "t"},
{"7", lng.Deleted, "t", lng.Modified, "r", lng.Deleted, "t"},
{"8", lng.Deleted, "t", lng.Deleted, "r", lng.Deleted, "t"},
{"9", lng.Std, "t", lng.Std, "t", lng.Std, "t"},
{"10", lng.Std, "t", lng.Modified, "t", lng.Std, "t"},
{"11", lng.Std, "t", lng.Deleted, "t", lng.Std, "t"},
{"12", lng.Modified, "t", lng.Std, "t", lng.Std, "t"},
{"13", lng.Modified, "t", lng.Modified, "t", lng.Modified, "t"},
{"14", lng.Modified, "t", lng.Deleted, "t", lng.Modified, "t"},
{"15", lng.Deleted, "t", lng.Std, "t", lng.Deleted, "t"},
{"16", lng.Deleted, "t", lng.Modified, "t", lng.Deleted, "t"},
{"17", lng.Deleted, "t", lng.Deleted, "t", lng.Deleted, "t"},
}
targetFile := lng.NewFile()
refFile := lng.NewFile()
targetSection, _ := targetFile.NewSection(resourceStringSection)
refSection, _ := refFile.NewSection(resourceStringSection)
for _, testCase := range tests {
_, _ = targetSection.NewKey(testCase.targetFlag, testCase.name, 0, testCase.targetValue)
_, _ = refSection.NewKey(testCase.refFlag, testCase.name, 0, testCase.refValue)
}
if err := syncResourceStrings(targetFile, refFile); err != nil {
t.Error(err)
}
for i, testCase := range tests {
key, _ := targetSection.Key(testCase.name)
if key.Flag() != testCase.expFlag || key.Value() != testCase.expValue {
t.Errorf("Test case %d failed", i)
}
}
}