-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglreg_tests.py
446 lines (412 loc) · 16.8 KB
/
glreg_tests.py
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
import collections
import sys
import xml.etree.ElementTree
import unittest
import io
import tempfile
import glreg
from glreg import *
_test_reg = r'''<?xml version="1.0" encoding="UTF-8" ?>
<registry>
<types>
<type name="stddef">#include <stddef.h></type>
<type name="khrplatform">#include <KHR/khrplatform.h></type>
<type>typedef unsigned int <name>GLenum</name>;</type>
<type>typedef signed char <name>GLbyte</name>; {}</type>
<type requires="stddef">typedef ptrdiff_t <name>GLsizeiptr</name>;</type>
<type api="gles2"
requires="khrplatform">typedef khronos_int8_t <name>GLbyte</name>;</type>
</types>
<enums namespace="GL" start="0x0000" end="0x7FFF" vendor="ARB">
<enum value="0x0000" name="GL_POINTS"/>
</enums>
<enums namespace="GL" vendor="ARB">
<enum value="0x806F" name="GL_TEXTURE_3D"/>
</enums>
<commands namespace="GL">
<command>
<proto>void <name>glBufferData</name></proto>
<param
group="BufferTargetARB"><ptype>GLenum</ptype> <name>target</name></param>
<param
group="BufferSize"><ptype>GLsizeiptr</ptype> <name>size</name></param>
<param len="size">const void *<name>data</name></param>
<param
group="BufferUsageARB"><ptype>GLenum</ptype> <name>usage</name></param>
</command>
</commands>
<feature api="gl" name="GL_VERSION_3_2" number="3.2">
<require>
<type name="GLbyte"/>
<enum name="GL_POINTS"/>
</require>
<require>
<enum name="GL_TEXTURE_3D"/>
<command name="glBufferData"/>
</require>
<remove profile="core">
<command name="glNewList"/>
<command name="glEndList"/>
</remove>
<remove profile="core">
<enum name="GL_POINT_BIT"/>
<command name="glArrayElement"/>
</remove>
</feature>
<extensions>
<extension name="GL_ARB_vertex_buffer_object" supported="gl">
<require>
<command name="glBufferData"/>
</require>
</extension>
</extensions>
</registry>
'''
class TestLoadFunctions(unittest.TestCase):
def test_load_types(self, types=None):
if types is None:
root = xml.etree.ElementTree.fromstring(_test_reg)
types = glreg._load_types(root)
self.assertIsInstance(types, collections.OrderedDict)
self.assertEqual(len(types), 6)
items = list(types.items())
k, x = items[2]
self.assertEqual(k, ('GLenum', None))
self.assertIsInstance(x, Type)
self.assertEqual(x.name, 'GLenum')
self.assertEqual(x.template, 'typedef unsigned int {name};')
self.assertEqual(x.text, 'typedef unsigned int GLenum;')
self.assertIsNone(x.api)
self.assertEqual(x.required_types, set())
k, x = items[3]
self.assertEqual(k, ('GLbyte', None))
self.assertIsInstance(x, Type)
self.assertEqual(x.name, 'GLbyte')
self.assertEqual(x.template, 'typedef signed char {name}; {{}}')
self.assertIsNone(x.api)
self.assertEqual(x.required_types, set())
k, x = items[5]
self.assertEqual(k, ('GLbyte', 'gles2'))
self.assertIsInstance(x, Type)
self.assertEqual(x.name, 'GLbyte')
self.assertEqual(x.template, 'typedef khronos_int8_t {name};')
self.assertEqual(x.api, 'gles2')
self.assertEqual(x.required_types, {'khrplatform'})
def test_load_enums(self, enums=None):
if enums is None:
root = xml.etree.ElementTree.fromstring(_test_reg)
enums = glreg._load_enums(root)
self.assertIsInstance(enums, collections.OrderedDict)
self.assertEqual(len(enums), 2)
x = enums['GL_POINTS']
self.assertIsInstance(x, Enum)
self.assertEqual(x.name, 'GL_POINTS')
self.assertEqual(x.value, '0x0000')
x = enums['GL_TEXTURE_3D']
self.assertIsInstance(x, Enum)
self.assertEqual(x.name, 'GL_TEXTURE_3D')
self.assertEqual(x.value, '0x806F')
def test_load_commands(self, commands=None):
if commands is None:
root = xml.etree.ElementTree.fromstring(_test_reg)
commands = glreg._load_commands(root)
self.assertIsInstance(commands, collections.OrderedDict)
self.assertEqual(len(commands), 1)
x = commands['glBufferData']
self.assertIsInstance(x, Command)
self.assertEqual(x.name, 'glBufferData')
self.assertIsNone(x.type)
self.assertEqual(x.proto_template, 'void {name}')
y = x.params
self.assertIsInstance(y, list)
self.assertEqual(len(y), 4)
z = y[0]
self.assertIsInstance(z, Param)
self.assertEqual(z.name, 'target')
self.assertEqual(z.type, 'GLenum')
self.assertEqual(z.template, '{type} {name}')
z = y[1]
self.assertIsInstance(z, Param)
self.assertEqual(z.name, 'size')
self.assertEqual(z.type, 'GLsizeiptr')
self.assertEqual(z.template, '{type} {name}')
z = y[2]
self.assertIsInstance(z, Param)
self.assertEqual(z.name, 'data')
self.assertEqual(z.type, None)
self.assertEqual(z.template, 'const void *{name}')
z = y[3]
self.assertIsInstance(z, Param)
self.assertEqual(z.name, 'usage')
self.assertEqual(z.type, 'GLenum')
self.assertEqual(z.template, '{type} {name}')
self.assertEqual(x.required_types, {'GLenum', 'GLsizeiptr'})
def test_load_features(self, features=None):
if features is None:
root = xml.etree.ElementTree.fromstring(_test_reg)
features = glreg._load_features(root)
self.assertIsInstance(features, collections.OrderedDict)
self.assertEqual(len(features), 1)
x = features['GL_VERSION_3_2']
self.assertIsInstance(x, Feature)
self.assertEqual(x.name, 'GL_VERSION_3_2')
self.assertEqual(x.api, 'gl')
self.assertEqual(x.number, (3, 2))
requires = x.requires
self.assertIsInstance(requires, list)
self.assertEqual(len(requires), 2)
y = requires[0]
self.assertIsInstance(y, Require)
self.assertEqual(y.types, ['GLbyte'])
self.assertEqual(y.enums, ['GL_POINTS'])
self.assertEqual(y.commands, [])
self.assertIsNone(y.profile)
self.assertIsNone(y.api)
y = requires[1]
self.assertIsInstance(y, Require)
self.assertEqual(y.types, [])
self.assertEqual(y.enums, ['GL_TEXTURE_3D'])
self.assertEqual(y.commands, ['glBufferData'])
self.assertIsNone(y.profile)
self.assertIsNone(y.api)
removes = x.removes
self.assertIsInstance(removes, list)
self.assertEqual(len(removes), 2)
y = removes[0]
self.assertIsInstance(y, Remove)
self.assertEqual(y.types, [])
self.assertEqual(y.enums, [])
self.assertEqual(y.commands, ['glNewList', 'glEndList'])
self.assertEqual(y.profile, 'core')
y = removes[1]
self.assertIsInstance(y, Remove)
self.assertEqual(y.types, [])
self.assertEqual(y.enums, ['GL_POINT_BIT'])
self.assertEqual(y.commands, ['glArrayElement'])
self.assertEqual(y.profile, 'core')
def test_load_extensions(self, extensions=None):
if extensions is None:
root = xml.etree.ElementTree.fromstring(_test_reg)
extensions = glreg._load_extensions(root)
self.assertIsInstance(extensions, collections.OrderedDict)
self.assertEqual(len(extensions), 1)
x = extensions['GL_ARB_vertex_buffer_object']
self.assertEqual(x.name, 'GL_ARB_vertex_buffer_object')
self.assertEqual(x.supported, {'gl'})
requires = x.requires
self.assertIsInstance(requires, list)
self.assertEqual(len(requires), 1)
y = requires[0]
self.assertIsInstance(y, Require)
self.assertEqual(y.types, [])
self.assertEqual(y.enums, [])
self.assertEqual(y.commands, ['glBufferData'])
self.assertIsNone(y.profile)
self.assertIsNone(y.api)
def test_load(self):
if sys.version_info > (3, 0):
f = io.StringIO(_test_reg)
else:
f = io.BytesIO(_test_reg)
registry = load(f)
self.test_load_types(registry.types)
self.test_load_enums(registry.enums)
self.test_load_commands(registry.commands)
self.test_load_features(registry.features)
self.test_load_extensions(registry.extensions)
def test_loads(self):
registry = loads(_test_reg)
self.test_load_types(registry.types)
self.test_load_enums(registry.enums)
self.test_load_commands(registry.commands)
self.test_load_features(registry.features)
self.test_load_extensions(registry.extensions)
class TestRegistry(unittest.TestCase):
"""Test Registy interface"""
def setUp(self):
self.src = loads(_test_reg)
def test_get_requires(self):
requires = self.src.get_requires()
self.assertIsInstance(requires, list)
self.assertEqual(len(requires), 3)
def test_get_removes(self):
removes = self.src.get_removes()
self.assertIsInstance(removes, list)
# NOTE: No Remove objects are returned because we did
# not specify any api or profile, and thus no Removals
# are active.
self.assertEqual(len(removes), 0)
def test_get_profiles(self):
profiles = self.src.get_profiles()
self.assertIsInstance(profiles, set)
self.assertEqual(profiles, {'core'})
def test_get_apis(self):
apis = self.src.get_apis()
self.assertIsInstance(apis, set)
self.assertEqual(apis, {'gl', 'gles2'})
def test_get_supports(self):
supports = self.src.get_supports()
self.assertIsInstance(supports, set)
self.assertEqual(supports, {'gl'})
class TestImportFunctions(unittest.TestCase):
def setUp(self):
self.src = loads(_test_reg)
self.dst = Registry()
def test_import_type(self):
import_type(self.dst, self.src, 'GLbyte', 'gles2')
stypes = self.src.types
dtypes = self.dst.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 2)
items = list(dtypes.items())
_, x = items[0]
self.assertIs(x, stypes[('khrplatform', None)])
_, x = items[1]
self.assertIs(x, stypes[('GLbyte', 'gles2')])
def test_import_enum(self):
import_enum(self.dst, self.src, 'GL_POINTS')
enums = self.dst.enums
assert isinstance(enums, collections.OrderedDict)
assert len(enums) == 1
items = list(enums.items())
_, x = items[0]
assert isinstance(x, Enum)
assert x.name == 'GL_POINTS'
assert x.value == '0x0000'
def test_import_command(self):
import_command(self.dst, self.src, 'glBufferData')
stypes = self.src.types
dtypes = self.dst.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 3)
self.assertIs(dtypes[('stddef', None)], stypes[('stddef', None)])
self.assertIs(dtypes[('GLenum', None)], stypes[('GLenum', None)])
self.assertIs(dtypes[('GLsizeiptr', None)],
stypes[('GLsizeiptr', None)])
scmds = self.src.commands
dcmds = self.dst.commands
self.assertIsInstance(dcmds, collections.OrderedDict)
self.assertEqual(len(dcmds), 1)
self.assertEqual(dcmds['glBufferData'], scmds['glBufferData'])
def test_import_feature(self):
dtypes = self.dst.types
denums = self.dst.enums
dcmds = self.dst.commands
import_feature(self.dst, self.src, 'GL_VERSION_3_2')
# Test types import
stypes = self.src.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 4)
self.assertIs(dtypes[('stddef', None)], stypes[('stddef', None)])
self.assertIs(dtypes[('GLenum', None)], stypes[('GLenum', None)])
self.assertIs(dtypes[('GLsizeiptr', None)],
stypes[('GLsizeiptr', None)])
self.assertIs(dtypes[('GLbyte', None)], stypes[('GLbyte', None)])
# Test enums import
senums = self.src.enums
self.assertIsInstance(denums, collections.OrderedDict)
self.assertEqual(len(denums), 2)
self.assertIs(denums['GL_POINTS'], senums['GL_POINTS'])
self.assertIs(denums['GL_TEXTURE_3D'], senums['GL_TEXTURE_3D'])
# Test commands import
scmds = self.src.commands
self.assertIsInstance(dcmds, collections.OrderedDict)
self.assertEqual(len(dcmds), 1)
self.assertIs(dcmds['glBufferData'], scmds['glBufferData'])
def test_import_extension(self):
dtypes = self.dst.types
dcmds = self.dst.commands
import_extension(self.dst, self.src, 'GL_ARB_vertex_buffer_object')
# Test types import
stypes = self.src.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 3)
self.assertIs(dtypes[('stddef', None)], stypes[('stddef', None)])
self.assertIs(dtypes[('GLenum', None)], stypes[('GLenum', None)])
self.assertIs(dtypes[('GLsizeiptr', None)],
stypes[('GLsizeiptr', None)])
# Test commands import
scmds = self.src.commands
self.assertIsInstance(dcmds, collections.OrderedDict)
self.assertEqual(len(dcmds), 1)
self.assertIs(dcmds['glBufferData'], scmds['glBufferData'])
def test_import_registry(self):
dtypes = self.dst.types
denums = self.dst.enums
dcmds = self.dst.commands
import_registry(self.dst, self.src)
# Test types import
stypes = self.src.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 4)
self.assertIs(dtypes[('stddef', None)], stypes[('stddef', None)])
self.assertIs(dtypes[('GLenum', None)], stypes[('GLenum', None)])
self.assertIs(dtypes[('GLsizeiptr', None)],
stypes[('GLsizeiptr', None)])
self.assertIs(dtypes[('GLbyte', None)], stypes[('GLbyte', None)])
# Test enums import
senums = self.src.enums
self.assertIsInstance(denums, collections.OrderedDict)
self.assertEqual(len(denums), 2)
self.assertIs(denums['GL_POINTS'], senums['GL_POINTS'])
self.assertIs(denums['GL_TEXTURE_3D'], senums['GL_TEXTURE_3D'])
# Test commands import
scmds = self.src.commands
self.assertIsInstance(scmds, collections.OrderedDict)
self.assertEqual(len(dcmds), 1)
self.assertIs(dcmds['glBufferData'], scmds['glBufferData'])
class TestGroupAPIS(unittest.TestCase):
def test_group_apis(self):
reg = loads(_test_reg)
stypes = reg.types
senums = reg.enums
scmds = reg.commands
apis = group_apis(reg)
self.assertIsInstance(apis, list)
self.assertEqual(len(apis), 2)
# Test for first API (GL_VERSION_3_2)
api = apis[0]
self.assertIsInstance(api, Registry)
# Test types
dtypes = api.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 4)
# Test enums
denums = api.enums
self.assertIsInstance(denums, collections.OrderedDict)
self.assertEqual(len(denums), 2)
# Test commands
dcmds = api.commands
self.assertIsInstance(dcmds, collections.OrderedDict)
self.assertEqual(len(dcmds), 1)
# Test for second API (GL_ARB_vertex_buffer_object)
api = apis[1]
self.assertIsInstance(api, Registry)
# Test types
dtypes = api.types
self.assertIsInstance(dtypes, collections.OrderedDict)
self.assertEqual(len(dtypes), 0)
# Test enums
denums = api.enums
self.assertIsInstance(denums, collections.OrderedDict)
self.assertEqual(len(denums), 0)
# Test commands
dcmds = api.commands
self.assertIsInstance(dcmds, collections.OrderedDict)
self.assertEqual(len(dcmds), 0)
class TestMain(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.fin = tempfile.NamedTemporaryFile('w')
cls.fin.write(_test_reg)
cls.fin.flush()
def setUp(self):
self.fout = tempfile.NamedTemporaryFile('r')
def test_main(self):
glreg.main(['-o', self.fout.name, self.fin.name])
def test_main_list_apis(self):
glreg.main(['-o', self.fout.name, '--list-apis', self.fin.name])
def test_main_list_profiles(self):
glreg.main(['-o', self.fout.name, '--list-profiles', self.fin.name])
def test_main_list_supports(self):
glreg.main(['-o', self.fout.name, '--list-supports', self.fin.name])