-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimport_test.go
301 lines (191 loc) · 6.09 KB
/
import_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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package cpy_test
import (
"testing"
"github.com/stretchr/testify/assert"
"go.nhat.io/cpy/v3"
)
func TestImportModule(t *testing.T) {
cpy.Py_Initialize()
os := cpy.PyImport_ImportModule("os")
defer os.DecRef()
assert.NotNil(t, os)
}
func TestImportModuleEx(t *testing.T) {
cpy.Py_Initialize()
queue := cpy.PyImport_ImportModuleEx("queue", nil, nil, nil)
defer queue.DecRef()
assert.NotNil(t, queue)
}
func TestImportModuleLevelObject(t *testing.T) {
cpy.Py_Initialize()
mathName := cpy.PyUnicode_FromString("math")
defer mathName.DecRef()
math := cpy.PyImport_ImportModuleLevelObject(mathName, nil, nil, nil, 0)
defer math.DecRef()
assert.NotNil(t, math)
}
func TestImportModuleLevel(t *testing.T) {
cpy.Py_Initialize()
sys := cpy.PyImport_ImportModuleLevel("sys", nil, nil, nil, 0)
defer sys.DecRef()
assert.NotNil(t, sys)
}
func TestImportImport(t *testing.T) {
cpy.Py_Initialize()
platformName := cpy.PyUnicode_FromString("platform")
defer platformName.DecRef()
platform := cpy.PyImport_Import(platformName)
defer platform.DecRef()
assert.NotNil(t, platform)
}
func TestReloadModule(t *testing.T) {
cpy.Py_Initialize()
os := cpy.PyImport_ImportModule("os")
defer os.DecRef()
assert.NotNil(t, os)
newOs := cpy.PyImport_ReloadModule(os)
defer newOs.DecRef()
assert.NotNil(t, newOs)
// cpy3.PyImport_ReloadModule return a new reference, pointer should be the same.
assert.Equal(t, os, newOs)
}
func TestAddModuleObject(t *testing.T) {
cpy.Py_Initialize()
os := cpy.PyImport_ImportModule("os")
defer os.DecRef()
assert.NotNil(t, os)
pyName := cpy.PyUnicode_FromString("os.new")
defer pyName.DecRef()
module := cpy.PyImport_AddModuleObject(pyName)
assert.NotNil(t, module)
}
func TestAddModule(t *testing.T) {
cpy.Py_Initialize()
os := cpy.PyImport_ImportModule("os")
defer os.DecRef()
assert.NotNil(t, os)
module := cpy.PyImport_AddModule("os.new")
assert.NotNil(t, module)
}
func TestExecCodeModule(t *testing.T) {
cpy.Py_Initialize()
// Fake module.
source := cpy.PyUnicode_FromString("__version__ = '2.0'")
defer source.DecRef()
filename := cpy.PyUnicode_FromString("test_module.py")
defer filename.DecRef()
mode := cpy.PyUnicode_FromString("exec")
defer mode.DecRef()
// Perform module load.
builtins := cpy.PyEval_GetBuiltins()
assert.True(t, cpy.PyDict_Check(builtins))
compile := cpy.PyDict_GetItemString(builtins, "compile")
assert.True(t, cpy.PyCallable_Check(compile))
code := compile.CallFunctionObjArgs(source, filename, mode)
defer code.DecRef()
assert.NotNil(t, code)
module := cpy.PyImport_ExecCodeModule("test_module", code)
assert.NotNil(t, module)
testModuleStr := cpy.PyUnicode_FromString("test_module")
defer testModuleStr.DecRef()
pyModule := cpy.PyImport_GetModule(testModuleStr)
defer pyModule.DecRef()
assert.NotNil(t, pyModule)
}
func TestExecCodeModuleEx(t *testing.T) {
cpy.Py_Initialize()
// Fake module.
source := cpy.PyUnicode_FromString("__version__ = '2.0'")
defer source.DecRef()
filename := cpy.PyUnicode_FromString("test_module.py")
defer filename.DecRef()
mode := cpy.PyUnicode_FromString("exec")
defer mode.DecRef()
// Perform module load.
builtins := cpy.PyEval_GetBuiltins()
assert.True(t, cpy.PyDict_Check(builtins))
compile := cpy.PyDict_GetItemString(builtins, "compile")
assert.True(t, cpy.PyCallable_Check(compile))
code := compile.CallFunctionObjArgs(source, filename, mode)
defer code.DecRef()
assert.NotNil(t, code)
module := cpy.PyImport_ExecCodeModuleEx("test_module", code, "test_module.py")
assert.NotNil(t, module)
}
func TestExecCodeModuleWithPathnames(t *testing.T) {
cpy.Py_Initialize()
// Fake module.
source := cpy.PyUnicode_FromString("__version__ = '2.0'")
defer source.DecRef()
filename := cpy.PyUnicode_FromString("test_module.py")
defer filename.DecRef()
mode := cpy.PyUnicode_FromString("exec")
defer mode.DecRef()
// Perform module load.
builtins := cpy.PyEval_GetBuiltins()
assert.True(t, cpy.PyDict_Check(builtins))
compile := cpy.PyDict_GetItemString(builtins, "compile")
assert.True(t, cpy.PyCallable_Check(compile))
code := compile.CallFunctionObjArgs(source, filename, mode)
defer code.DecRef()
assert.NotNil(t, code)
module := cpy.PyImport_ExecCodeModuleWithPathnames("test_module", code, "test_module.py", "test_module.py")
assert.NotNil(t, module)
}
func TestExecCodeModuleObject(t *testing.T) {
cpy.Py_Initialize()
// Fake module.
source := cpy.PyUnicode_FromString("__version__ = '2.0'")
defer source.DecRef()
filename := cpy.PyUnicode_FromString("test_module.py")
defer filename.DecRef()
mode := cpy.PyUnicode_FromString("exec")
defer mode.DecRef()
// Perform module load.
builtins := cpy.PyEval_GetBuiltins()
assert.True(t, cpy.PyDict_Check(builtins))
compile := cpy.PyDict_GetItemString(builtins, "compile")
assert.True(t, cpy.PyCallable_Check(compile))
code := compile.CallFunctionObjArgs(source, filename, mode)
defer code.DecRef()
assert.NotNil(t, code)
moduleName := cpy.PyUnicode_FromString("test_module")
defer moduleName.DecRef()
module := cpy.PyImport_ExecCodeModuleObject(moduleName, code, filename, filename)
assert.NotNil(t, module)
}
func TestGetMagicNumber(t *testing.T) {
cpy.Py_Initialize()
magicNumber := cpy.PyImport_GetMagicNumber()
assert.NotNil(t, magicNumber)
}
func TestGetMagicTag(t *testing.T) {
cpy.Py_Initialize()
magicTag := cpy.PyImport_GetMagicTag()
assert.NotNil(t, magicTag)
}
func TestGetModuleDict(t *testing.T) {
cpy.Py_Initialize()
moduleDict := cpy.PyImport_GetModuleDict()
defer moduleDict.DecRef()
assert.True(t, cpy.PyDict_Check(moduleDict))
}
func TestGetModule(t *testing.T) {
cpy.Py_Initialize()
os := cpy.PyImport_ImportModule("os")
defer os.DecRef()
assert.NotNil(t, os)
name := cpy.PyUnicode_FromString("os")
defer name.DecRef()
module := cpy.PyImport_GetModule(name)
assert.Equal(t, module, os)
}
func TestGetImporter(t *testing.T) {
cpy.Py_Initialize()
paths := cpy.PySys_GetObject("path")
path := cpy.PyList_GetItem(paths, 0)
assert.NotNil(t, path)
importer := cpy.PyImport_GetImporter(path)
defer importer.DecRef()
assert.NotNil(t, importer)
}