Add dressup feature test structure
This commit is contained in:
@@ -161,6 +161,10 @@ SET(PartDesign_Scripts
|
||||
PartDesignTests/TestLoft.py
|
||||
PartDesignTests/TestPipe.py
|
||||
PartDesignTests/TestMirrored.py
|
||||
PartDesignTests/TestFillet.py
|
||||
PartDesignTests/TestChamfer.py
|
||||
PartDesignTests/TestDraft.py
|
||||
PartDesignTests/TestThickness.py
|
||||
fcgear/__init__.py
|
||||
fcgear/fcgear.py
|
||||
fcgear/fcgeardialog.py
|
||||
|
||||
@@ -41,6 +41,10 @@ INSTALL(
|
||||
PartDesignTests/TestLoft.py
|
||||
PartDesignTests/TestPipe.py
|
||||
PartDesignTests/TestMirrored.py
|
||||
PartDesignTests/TestFillet.py
|
||||
PartDesignTests/TestChamfer.py
|
||||
PartDesignTests/TestDraft.py
|
||||
PartDesignTests/TestThickness.py
|
||||
DESTINATION
|
||||
Mod/PartDesign/PartDesignTests
|
||||
)
|
||||
|
||||
51
src/Mod/PartDesign/PartDesignTests/TestChamfer.py
Normal file
51
src/Mod/PartDesign/PartDesignTests/TestChamfer.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# (c) Juergen Riegel (FreeCAD@juergen-riegel.net) 2011 LGPL *
|
||||
# *
|
||||
# This file is part of the FreeCAD CAx development system. *
|
||||
# *
|
||||
# This program is free software; you can redistribute it and/or modify *
|
||||
# it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
# as published by the Free Software Foundation; either version 2 of *
|
||||
# the License, or (at your option) any later version. *
|
||||
# for detail see the LICENCE text file. *
|
||||
# *
|
||||
# FreeCAD is distributed in the hope that it will be useful, *
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
# GNU Library General Public License for more details. *
|
||||
# *
|
||||
# You should have received a copy of the GNU Library General Public *
|
||||
# License along with FreeCAD; if not, write to the Free Software *
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# USA *
|
||||
#**************************************************************************
|
||||
import unittest
|
||||
|
||||
import FreeCAD
|
||||
|
||||
class TestChamfer(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.Doc = FreeCAD.newDocument("PartDesignTestChamfer")
|
||||
|
||||
def testChamfer(self):
|
||||
self.Body = self.Doc.addObject('PartDesign::Body','Body')
|
||||
self.Box = self.Doc.addObject('PartDesign::AdditiveBox','Box')
|
||||
self.Body.addObject(self.Box)
|
||||
self.Box.Length=10.00
|
||||
self.Box.Width=10.00
|
||||
self.Box.Height=10.00
|
||||
self.Doc.recompute()
|
||||
self.Revolution = self.Doc.addObject("PartDesign::Revolution","Revolution")
|
||||
self.Revolution.Profile = (self.Box, ["Face6"])
|
||||
self.Revolution.ReferenceAxis = (self.Doc.Y_Axis,[""])
|
||||
self.Revolution.Angle = 180.0
|
||||
self.Revolution.Reversed = 1
|
||||
self.Body.addObject(self.Revolution)
|
||||
self.Doc.recompute()
|
||||
# depending on if refinement is done we expect 8 or 10 faces
|
||||
self.assertIn(len(self.Revolution.Shape.Faces), (8, 10))
|
||||
|
||||
def tearDown(self):
|
||||
#closing doc
|
||||
FreeCAD.closeDocument("PartDesignTestChamfer")
|
||||
# print ("omit closing document for debugging")
|
||||
|
||||
51
src/Mod/PartDesign/PartDesignTests/TestDraft.py
Normal file
51
src/Mod/PartDesign/PartDesignTests/TestDraft.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# (c) Juergen Riegel (FreeCAD@juergen-riegel.net) 2011 LGPL *
|
||||
# *
|
||||
# This file is part of the FreeCAD CAx development system. *
|
||||
# *
|
||||
# This program is free software; you can redistribute it and/or modify *
|
||||
# it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
# as published by the Free Software Foundation; either version 2 of *
|
||||
# the License, or (at your option) any later version. *
|
||||
# for detail see the LICENCE text file. *
|
||||
# *
|
||||
# FreeCAD is distributed in the hope that it will be useful, *
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
# GNU Library General Public License for more details. *
|
||||
# *
|
||||
# You should have received a copy of the GNU Library General Public *
|
||||
# License along with FreeCAD; if not, write to the Free Software *
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# USA *
|
||||
#**************************************************************************
|
||||
import unittest
|
||||
|
||||
import FreeCAD
|
||||
|
||||
class TestDraft(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.Doc = FreeCAD.newDocument("PartDesignTestDraft")
|
||||
|
||||
def testDraft(self):
|
||||
self.Body = self.Doc.addObject('PartDesign::Body','Body')
|
||||
self.Box = self.Doc.addObject('PartDesign::AdditiveBox','Box')
|
||||
self.Body.addObject(self.Box)
|
||||
self.Box.Length=10.00
|
||||
self.Box.Width=10.00
|
||||
self.Box.Height=10.00
|
||||
self.Doc.recompute()
|
||||
self.Revolution = self.Doc.addObject("PartDesign::Revolution","Revolution")
|
||||
self.Revolution.Profile = (self.Box, ["Face6"])
|
||||
self.Revolution.ReferenceAxis = (self.Doc.Y_Axis,[""])
|
||||
self.Revolution.Angle = 180.0
|
||||
self.Revolution.Reversed = 1
|
||||
self.Body.addObject(self.Revolution)
|
||||
self.Doc.recompute()
|
||||
# depending on if refinement is done we expect 8 or 10 faces
|
||||
self.assertIn(len(self.Revolution.Shape.Faces), (8, 10))
|
||||
|
||||
def tearDown(self):
|
||||
#closing doc
|
||||
FreeCAD.closeDocument("PartDesignTestDraft")
|
||||
# print ("omit closing document for debugging")
|
||||
|
||||
51
src/Mod/PartDesign/PartDesignTests/TestFillet.py
Normal file
51
src/Mod/PartDesign/PartDesignTests/TestFillet.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# (c) Juergen Riegel (FreeCAD@juergen-riegel.net) 2011 LGPL *
|
||||
# *
|
||||
# This file is part of the FreeCAD CAx development system. *
|
||||
# *
|
||||
# This program is free software; you can redistribute it and/or modify *
|
||||
# it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
# as published by the Free Software Foundation; either version 2 of *
|
||||
# the License, or (at your option) any later version. *
|
||||
# for detail see the LICENCE text file. *
|
||||
# *
|
||||
# FreeCAD is distributed in the hope that it will be useful, *
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
# GNU Library General Public License for more details. *
|
||||
# *
|
||||
# You should have received a copy of the GNU Library General Public *
|
||||
# License along with FreeCAD; if not, write to the Free Software *
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# USA *
|
||||
#**************************************************************************
|
||||
import unittest
|
||||
|
||||
import FreeCAD
|
||||
|
||||
class TestFillet(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.Doc = FreeCAD.newDocument("PartDesignTestFillet")
|
||||
|
||||
def testRevolveFace(self):
|
||||
self.Body = self.Doc.addObject('PartDesign::Body','Body')
|
||||
self.Box = self.Doc.addObject('PartDesign::AdditiveBox','Box')
|
||||
self.Body.addObject(self.Box)
|
||||
self.Box.Length=10.00
|
||||
self.Box.Width=10.00
|
||||
self.Box.Height=10.00
|
||||
self.Doc.recompute()
|
||||
self.Revolution = self.Doc.addObject("PartDesign::Revolution","Revolution")
|
||||
self.Revolution.Profile = (self.Box, ["Face6"])
|
||||
self.Revolution.ReferenceAxis = (self.Doc.Y_Axis,[""])
|
||||
self.Revolution.Angle = 180.0
|
||||
self.Revolution.Reversed = 1
|
||||
self.Body.addObject(self.Revolution)
|
||||
self.Doc.recompute()
|
||||
# depending on if refinement is done we expect 8 or 10 faces
|
||||
self.assertIn(len(self.Revolution.Shape.Faces), (8, 10))
|
||||
|
||||
def tearDown(self):
|
||||
#closing doc
|
||||
FreeCAD.closeDocument("PartDesignTestFillet")
|
||||
# print ("omit closing document for debugging")
|
||||
|
||||
51
src/Mod/PartDesign/PartDesignTests/TestThickness.py
Normal file
51
src/Mod/PartDesign/PartDesignTests/TestThickness.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# (c) Juergen Riegel (FreeCAD@juergen-riegel.net) 2011 LGPL *
|
||||
# *
|
||||
# This file is part of the FreeCAD CAx development system. *
|
||||
# *
|
||||
# This program is free software; you can redistribute it and/or modify *
|
||||
# it under the terms of the GNU Lesser General Public License (LGPL) *
|
||||
# as published by the Free Software Foundation; either version 2 of *
|
||||
# the License, or (at your option) any later version. *
|
||||
# for detail see the LICENCE text file. *
|
||||
# *
|
||||
# FreeCAD is distributed in the hope that it will be useful, *
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
# GNU Library General Public License for more details. *
|
||||
# *
|
||||
# You should have received a copy of the GNU Library General Public *
|
||||
# License along with FreeCAD; if not, write to the Free Software *
|
||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
# USA *
|
||||
#**************************************************************************
|
||||
import unittest
|
||||
|
||||
import FreeCAD
|
||||
|
||||
class TestThickness(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.Doc = FreeCAD.newDocument("PartDesignTestThickness")
|
||||
|
||||
def testThickness(self):
|
||||
self.Body = self.Doc.addObject('PartDesign::Body','Body')
|
||||
self.Box = self.Doc.addObject('PartDesign::AdditiveBox','Box')
|
||||
self.Body.addObject(self.Box)
|
||||
self.Box.Length=10.00
|
||||
self.Box.Width=10.00
|
||||
self.Box.Height=10.00
|
||||
self.Doc.recompute()
|
||||
self.Revolution = self.Doc.addObject("PartDesign::Revolution","Revolution")
|
||||
self.Revolution.Profile = (self.Box, ["Face6"])
|
||||
self.Revolution.ReferenceAxis = (self.Doc.Y_Axis,[""])
|
||||
self.Revolution.Angle = 180.0
|
||||
self.Revolution.Reversed = 1
|
||||
self.Body.addObject(self.Revolution)
|
||||
self.Doc.recompute()
|
||||
# depending on if refinement is done we expect 8 or 10 faces
|
||||
self.assertIn(len(self.Revolution.Shape.Faces), (8, 10))
|
||||
|
||||
def tearDown(self):
|
||||
#closing doc
|
||||
FreeCAD.closeDocument("PartDesignTestThickness")
|
||||
# print ("omit closing document for debugging")
|
||||
|
||||
@@ -35,17 +35,16 @@ from PartDesignTests.TestPipe import TestPipe
|
||||
from PartDesignTests.TestLoft import TestLoft
|
||||
#from PartDesignTests.TestPrimitive import TestPrimitive
|
||||
|
||||
# transformations
|
||||
# transformations and boolean
|
||||
from PartDesignTests.TestMirrored import TestMirrored
|
||||
#from PartDesignTests.TestLinear import TestLinear
|
||||
#from PartDesignTests.TestPolar import TestPolar
|
||||
#from PartDesignTests.TestLinearPattern import TestLinearPattern
|
||||
#from PartDesignTests.TestPolarPattern import TestPolarPattern
|
||||
#from PartDesignTests.TestMultiTransform import TestMultiTransform
|
||||
#from PartDesignTests.TestBoolean import TestBoolean
|
||||
|
||||
# dressup features
|
||||
#from PartDesignTests.TestFillet import TestFillet
|
||||
#from PartDesignTests.TestChamfer import TestChamfer
|
||||
#from PartDesignTests.TestDraft import TestDraft
|
||||
#from PartDesignTests.TestThickness import TestThickness
|
||||
from PartDesignTests.TestFillet import TestFillet
|
||||
from PartDesignTests.TestChamfer import TestChamfer
|
||||
from PartDesignTests.TestDraft import TestDraft
|
||||
from PartDesignTests.TestThickness import TestThickness
|
||||
|
||||
# boolean operation
|
||||
#from PartDesignTests.TestBoolean import TestBoolean
|
||||
|
||||
Reference in New Issue
Block a user