forked from hlorus/CAD_Sketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_core.py
42 lines (30 loc) · 1.3 KB
/
test_core.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
from unittest import skip
from CAD_Sketcher.testing.utils import BgsTestCase
from CAD_Sketcher.model.types import SlvsPoint3D
from CAD_Sketcher.model.utilities import slvs_entity_pointer
from sys import float_info
class TestEntities(BgsTestCase):
def test_point_3d(self):
sketcher = self.sketcher
entities = self.entities
# Point at origin
p1 = entities.add_point_3d((0, 0, 0))
self.assertIsInstance(p1, SlvsPoint3D)
self.assertEqual(tuple(p1.location), (0, 0, 0))
def test_entity_pointer(self):
import bpy
from bpy.types import PropertyGroup
from bpy.utils import register_class, unregister_class
from bpy.props import PointerProperty
class PointerTest(PropertyGroup):
pass
slvs_entity_pointer(PointerTest, "pointer")
register_class(PointerTest)
bpy.types.Scene.test_group = PointerProperty(type=PointerTest)
scene = bpy.context.scene
self.assertIsInstance(PointerTest.pointer, property)
self.assertEqual(scene.test_group.rna_type.properties["pointer_i"].type, "INT")
self.assertEqual(scene.test_group.pointer_i, -1)
self.assertEqual(scene.test_group.pointer, None)
del bpy.types.Scene.test_group
unregister_class(PointerTest)