File size: 2,434 Bytes
985c397 | 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 | #!/usr/bin/env python3
# test script for DrawViewDetail
# creates a page, a view and a detail view
import FreeCAD
import unittest
from .TechDrawTestUtilities import createPageWithSVGTemplate
from PySide import QtCore
class DrawViewDetailTest(unittest.TestCase):
def setUp(self):
"""Creates a page"""
FreeCAD.newDocument("TDPart")
FreeCAD.setActiveDocument("TDPart")
FreeCAD.ActiveDocument = FreeCAD.getDocument("TDPart")
FreeCAD.ActiveDocument.addObject("Part::Box", "Box")
self.page = createPageWithSVGTemplate()
self.page.Scale = 5.0
# page.ViewObject.show() # unit tests run in console mode
print("DrawViewDetail test: page created")
self.view = FreeCAD.ActiveDocument.addObject("TechDraw::DrawViewPart", "View")
self.page.addView(self.view)
FreeCAD.ActiveDocument.View.Source = [FreeCAD.ActiveDocument.Box]
FreeCAD.ActiveDocument.recompute()
#wait for threads to complete before checking result
loop = QtCore.QEventLoop()
timer = QtCore.QTimer()
timer.setSingleShot(True)
timer.timeout.connect(loop.quit)
timer.start(2000) #2 second delay
loop.exec_()
print("DrawViewDetail test: view created")
def tearDown(self):
print("DrawViewDetail test finished")
FreeCAD.closeDocument("TDPart")
def testMakeDrawViewPart(self):
"""Tests if a view can be added to page"""
print("testing DrawViewDetail")
detail = FreeCAD.ActiveDocument.addObject(
"TechDraw::DrawViewDetail", "Detail"
)
detail.BaseView = self.view
detail.Direction = self.view.Direction
detail.XDirection = self.view.XDirection
self.page.addView(detail)
FreeCAD.ActiveDocument.recompute()
print("DrawViewDetail test: Detail created")
#wait for threads to complete before checking result
loop = QtCore.QEventLoop()
timer = QtCore.QTimer()
timer.setSingleShot(True)
timer.timeout.connect(loop.quit)
timer.start(2000) #2 second delay
loop.exec_()
edges = detail.getVisibleEdges()
self.assertEqual(len(edges), 4, "DrawViewDetail has wrong number of edges")
self.assertTrue("Up-to-date" in detail.State, "DrawViewDetail is not Up-to-date")
if __name__ == "__main__":
unittest.main()
|