-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell_test.go
55 lines (49 loc) · 1.18 KB
/
shell_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
package testing
import "testing"
func TestShell_ExportsNothingIfNoVars(t *testing.T) {
rsl := `
2 + 3
`
setupAndRunCode(t, rsl, "--color=never", "--shell")
assertOutput(t, stdOutBuffer, "")
assertOutput(t, stdErrBuffer, "")
assertNoErrors(t)
}
func TestShell_ExportsStrings(t *testing.T) {
rsl := `
a = "alice"
b = "bob"
`
setupAndRunCode(t, rsl, "--color=never", "--shell")
assertOutput(t, stdOutBuffer, "a=\"alice\"\nb=\"bob\"\n")
assertOutput(t, stdErrBuffer, "")
assertNoErrors(t)
}
func TestShell_PrintsGoToStderr(t *testing.T) {
rsl := `
a = "alice"
print('hi')
`
setupAndRunCode(t, rsl, "--color=never", "--shell")
assertOutput(t, stdOutBuffer, "a=\"alice\"\n")
assertOutput(t, stdErrBuffer, "hi\n")
assertNoErrors(t)
}
func TestShell_ErrorExitFuncPrintsShellExitAndDoesNotExportVars(t *testing.T) {
rsl := `
exit(2)
`
setupAndRunCode(t, rsl, "--color=never", "--shell")
assertOnlyOutput(t, stdOutBuffer, "exit 2\n")
assertError(t, 2, "")
}
func TestShell_NonErrorExitFuncStillExportsVars(t *testing.T) {
rsl := `
a = "alice"
exit()
b = "bob"
`
setupAndRunCode(t, rsl, "--color=never", "--shell")
assertOnlyOutput(t, stdOutBuffer, "a=\"alice\"\n")
assertNoErrors(t)
}