2024-06-20 23:29:18 -07:00
|
|
|
import unittest
|
2024-06-24 11:13:11 -07:00
|
|
|
import cadquery as Cq
|
2024-06-20 23:29:18 -07:00
|
|
|
import nhf.touhou.houjuu_nue as M
|
|
|
|
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
|
2024-06-24 11:13:11 -07:00
|
|
|
def test_hs_joint_parent(self):
|
|
|
|
p = M.Parameters()
|
|
|
|
obj = p.hs_joint_parent()
|
2024-06-26 06:42:50 -07:00
|
|
|
self.assertIsInstance(obj.val().solids(), Cq.Solid, msg="H-S joint must be in one piece")
|
2024-06-20 23:29:18 -07:00
|
|
|
def test_wing_root(self):
|
|
|
|
p = M.Parameters()
|
2024-06-24 11:13:11 -07:00
|
|
|
obj = p.wing_root()
|
2024-06-30 19:03:16 -07:00
|
|
|
#self.assertIsInstance(obj.solids(), Cq.Solid, msg="Wing root must be in one piece")
|
2024-07-03 18:45:16 -07:00
|
|
|
bbox = obj.val().BoundingBox()
|
2024-06-27 20:22:54 -07:00
|
|
|
|
|
|
|
msg = "Must fix 256^3 bbox"
|
|
|
|
self.assertLess(bbox.xlen, 255, msg=msg)
|
|
|
|
self.assertLess(bbox.ylen, 255, msg=msg)
|
|
|
|
self.assertLess(bbox.zlen, 255, msg=msg)
|
2024-07-04 12:03:38 -07:00
|
|
|
def test_wing_root(self):
|
2024-06-20 23:29:18 -07:00
|
|
|
p = M.Parameters()
|
2024-06-28 20:07:37 -07:00
|
|
|
p.wing_root()
|
2024-07-04 12:03:38 -07:00
|
|
|
def test_wings_assembly(self):
|
|
|
|
p = M.Parameters()
|
|
|
|
p.wings_assembly()
|
|
|
|
def test_harness_assembly(self):
|
2024-06-23 22:27:15 -07:00
|
|
|
p = M.Parameters()
|
|
|
|
p.harness_assembly()
|
2024-07-04 12:03:38 -07:00
|
|
|
def test_trident_assembly(self):
|
2024-06-25 06:11:48 -07:00
|
|
|
p = M.Parameters()
|
2024-06-26 06:42:50 -07:00
|
|
|
assembly = p.trident_assembly()
|
|
|
|
bbox = assembly.toCompound().BoundingBox()
|
|
|
|
length = bbox.zlen
|
|
|
|
self.assertGreater(length, 1300)
|
|
|
|
self.assertLess(length, 1700)
|
2024-06-20 23:29:18 -07:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|