-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlifecycle_test.go
79 lines (54 loc) · 1.41 KB
/
lifecycle_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
package cpy_test
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.nhat.io/cpy/v3"
)
func TestInitialization(t *testing.T) {
cpy.Py_Initialize()
assert.True(t, cpy.Py_IsInitialized())
cpy.Py_Finalize()
assert.False(t, cpy.Py_IsInitialized())
}
func TestInitializationEx(t *testing.T) {
cpy.Py_Initialize()
assert.True(t, cpy.Py_IsInitialized())
assert.Zero(t, cpy.Py_FinalizeEx())
assert.False(t, cpy.Py_IsInitialized())
}
func TestPrefix(t *testing.T) {
prefix, err := cpy.Py_GetPrefix()
require.NoError(t, err)
assert.IsType(t, "", prefix)
}
func TestExecPrefix(t *testing.T) {
execPrefix, err := cpy.Py_GetExecPrefix()
require.NoError(t, err)
assert.IsType(t, "", execPrefix)
}
func TestProgramFullPath(t *testing.T) {
programFullPath, err := cpy.Py_GetProgramFullPath()
require.NoError(t, err)
assert.IsType(t, "", programFullPath)
}
func TestVersion(t *testing.T) {
version := cpy.Py_GetVersion()
assert.IsType(t, "", version)
}
func TestPlatform(t *testing.T) {
platform := cpy.Py_GetPlatform()
assert.IsType(t, "", platform)
}
func TestCopyright(t *testing.T) {
copyright := cpy.Py_GetCopyright()
assert.IsType(t, "", copyright)
}
func TestCompiler(t *testing.T) {
compiler := cpy.Py_GetCompiler()
assert.IsType(t, "", compiler)
}
func TestBuildInfo(t *testing.T) {
buildInfo := cpy.Py_GetBuildInfo()
assert.IsType(t, "", buildInfo)
}