-
Notifications
You must be signed in to change notification settings - Fork 194
/
Copy pathauxiliary_test.go
39 lines (36 loc) · 1.03 KB
/
auxiliary_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
package lua
import "testing"
func TestLoadFileSyntaxError(t *testing.T) {
l := NewState()
err := LoadFile(l, "fixtures/syntax_error.lua", "")
if err != SyntaxError {
t.Error("didn't return SyntaxError on file with syntax error")
}
if l.Top() != 1 {
t.Error("didn't push anything to the stack")
}
if l.IsString(-1) != true {
t.Error("didn't push a string to the stack")
}
estr, _ := l.ToString(-1)
if estr != "fixtures/syntax_error.lua:4: syntax error near <eof>" {
t.Error("didn't push the correct error string")
}
}
func TestLoadStringSyntaxError(t *testing.T) {
l := NewState()
err := LoadString(l, "this_is_a_syntax_error")
if err != SyntaxError {
t.Error("didn't return SyntaxError on string with syntax error")
}
if l.Top() != 1 {
t.Error("didn't push anything to the stack")
}
if l.IsString(-1) != true {
t.Error("didn't push a string to the stack")
}
estr, _ := l.ToString(-1)
if estr != "[string \"this_is_a_syntax_error\"]:1: syntax error near <eof>" {
t.Error("didn't push the correct error string")
}
}