35 lines
948 B
Python
35 lines
948 B
Python
|
|
|
|
import FreeCAD
|
|
import os
|
|
import unittest
|
|
from .TechDrawTestUtilities import createPageWithSVGTemplate
|
|
|
|
|
|
class DrawViewImageTest(unittest.TestCase):
|
|
def setUp(self):
|
|
"""Creates a page"""
|
|
FreeCAD.newDocument("TDAnno")
|
|
FreeCAD.setActiveDocument("TDAnno")
|
|
FreeCAD.ActiveDocument = FreeCAD.getDocument("TDAnno")
|
|
self.page = createPageWithSVGTemplate()
|
|
|
|
def tearDown(self):
|
|
FreeCAD.closeDocument("TDAnno")
|
|
|
|
def testMakeImage(self):
|
|
"""Tests if an image can be added to page"""
|
|
path = os.path.dirname(os.path.abspath(__file__))
|
|
imageFileSpec = path + "/TestImage.png"
|
|
img = FreeCAD.ActiveDocument.addObject("TechDraw::DrawViewImage", "TestImage")
|
|
img.ImageFile = imageFileSpec
|
|
self.page.addView(img)
|
|
|
|
FreeCAD.ActiveDocument.recompute()
|
|
|
|
self.assertTrue("Up-to-date" in img.State)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|