-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathumono-lang_test.go
82 lines (61 loc) · 2.3 KB
/
umono-lang_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
70
71
72
73
74
75
76
77
78
79
80
81
82
package umonolang
import (
"strings"
"testing"
"github.com/stretchr/testify/require"
"github.com/stretchr/testify/suite"
"github.com/umono-cms/umono-lang/utils/mocks"
"github.com/umono-cms/umono-lang/utils/test"
)
type UmonoLangTestSuite struct {
suite.Suite
umonoLang *UmonoLang
}
func (s *UmonoLangTestSuite) SetupTest() {
s.umonoLang = New(new(mocks.Converter))
}
func (s *UmonoLangTestSuite) TestConvert() {
inputFileReader := test.NewFileReader("test_assets/main/inputs", "ul")
outputFileReader := test.NewFileReader("test_assets/main/outputs", "mock")
inputDirReader := test.NewDirectoryReader("test_assets/main/inputs")
inputs, err := inputDirReader.ReadWithoutExt()
require.Nil(s.T(), err)
for _, input := range inputs {
inputCont, err := inputFileReader.Read(input, false)
require.Nil(s.T(), err)
outputCont, err := outputFileReader.Read(input, true)
require.Nil(s.T(), err)
require.Equal(s.T(), outputCont, s.umonoLang.Convert(inputCont), "input file name: "+input+".ul")
}
}
func (s *UmonoLangTestSuite) TestSetGlobalComponentOK() {
s.umonoLang.SetGlobalComponent("HELLO_WORLD", "hello!")
require.Equal(s.T(), int(1), len(s.umonoLang.globalComps))
hello := s.umonoLang.globalComps[0]
require.Equal(s.T(), "hello!", hello.RawContent())
}
func (s *UmonoLangTestSuite) TestSetGlobalComponentSyntaxError() {
err := s.umonoLang.SetGlobalComponent("HELLO WORLD", "hello!")
require.NotNil(s.T(), err)
require.True(s.T(), strings.HasPrefix(err.Error(), "SYNTAX_ERROR"))
}
func (s *UmonoLangTestSuite) TestRemoveGlobalComponentOK() {
s.umonoLang.SetGlobalComponent("HELLO_WORLD", "hello!")
err := s.umonoLang.RemoveGlobalComponent("HELLO_WORLD")
require.Nil(s.T(), err)
_, found := findCompByName(s.umonoLang.globalComps, "HELLO_WORLD")
require.Nil(s.T(), found)
}
func (s *UmonoLangTestSuite) TestRemoveGlobalComponentSyntaxError() {
err := s.umonoLang.RemoveGlobalComponent("hello world")
require.NotNil(s.T(), err)
require.True(s.T(), strings.HasPrefix(err.Error(), "SYNTAX_ERROR"))
}
func (s *UmonoLangTestSuite) TestRemoveGlobalComponentNotFound() {
err := s.umonoLang.RemoveGlobalComponent("HELLO_WORLD")
require.NotNil(s.T(), err)
require.True(s.T(), strings.HasPrefix(err.Error(), "NOT_FOUND"))
}
func TestUmonoLangTestSuite(t *testing.T) {
suite.Run(t, new(UmonoLangTestSuite))
}