-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhigh_level_layer_test.go
51 lines (34 loc) · 1.02 KB
/
high_level_layer_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
package cpy_test
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.nhat.io/cpy/v3"
)
func TestRunFile(t *testing.T) {
cpy.Py_Initialize()
pyErr, err := cpy.PyRun_AnyFile("resources/fixtures/test.py")
assert.Zero(t, pyErr)
require.NoError(t, err)
stdout := cpy.PySys_GetObject("stdout")
result := stdout.CallMethodArgs("getvalue")
defer result.DecRef()
assert.Equal(t, "hello world\n", cpy.PyUnicode_AsUTF8(result))
}
func TestRunString(t *testing.T) {
cpy.Py_Initialize()
pythonCode, err := os.ReadFile("resources/fixtures/test.py")
require.NoError(t, err)
assert.Zero(t, cpy.PyRun_SimpleString(string(pythonCode)))
stdout := cpy.PySys_GetObject("stdout")
result := stdout.CallMethodArgs("getvalue")
defer result.DecRef()
assert.Equal(t, "hello world\n", cpy.PyUnicode_AsUTF8(result))
}
func TestPyMain(t *testing.T) {
cpy.Py_Initialize()
pyErr, err := cpy.Py_Main([]string{"resources/fixtures/test.py"})
assert.Zero(t, pyErr)
require.NoError(t, err)
}