108 lines
5.0 KiB
Python
108 lines
5.0 KiB
Python
# ***************************************************************************
|
|
# * Copyright (c) 2018 - FreeCAD Developers *
|
|
# * Author: Przemo Firszt <przemo@firszt.eu> *
|
|
# * Author: Bernd Hahnebach <bernd@bimstatik.org> *
|
|
# * *
|
|
# * 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 *
|
|
# * *
|
|
# ***************************************************************************/
|
|
|
|
|
|
# Unit test for the FEM module
|
|
# the order should be as follows:
|
|
# common-, object-, mesh-, inout-, ccxtools-, solverframworktests
|
|
from femtest.testcommon import TestFemCommon
|
|
from femtest.testobject import TestObjectCreate
|
|
from femtest.testobject import TestObjectType
|
|
from femtest.testmesh import TestMeshCommon
|
|
from femtest.testmesh import TestMeshEleTetra10
|
|
from femtest.testresult import TestResult
|
|
from femtest.testccxtools import TestCcxTools
|
|
from femtest.testsolverframework import TestSolverFrameWork
|
|
|
|
|
|
# For more information on how to run a specific test class or a test method see
|
|
# file src/Mod/Test/__init__ and forum https://forum.freecadweb.org/viewtopic.php?f=10&t=22190#p175546
|
|
|
|
# It may be useful to temporary comment FreeCAD.closeDocument(self.doc_name) in tearDown method to not close the document
|
|
|
|
|
|
'''
|
|
# examples from within FreeCAD:
|
|
# all FEM tests
|
|
import Test, TestFem
|
|
Test.runTestsFromModule(TestFem)
|
|
|
|
# module
|
|
import Test, femtest.testcommon
|
|
Test.runTestsFromModule(femtest.testcommon)
|
|
|
|
# class
|
|
import Test, femtest.testcommon
|
|
Test.runTestsFromClass(femtest.testcommon.TestFemCommon)
|
|
|
|
# method
|
|
import unittest
|
|
mytest = unittest.TestLoader().loadTestsFromName("femtest.testcommon.TestFemCommon.test_pyimport_all_FEM_modules")
|
|
unittest.TextTestRunner().run(mytest)
|
|
|
|
|
|
# examples from shell in build dir:
|
|
# all FreeCAD tests
|
|
./bin/FreeCAD --run-test 0
|
|
|
|
# all FEM tests
|
|
./bin/FreeCAD --run-test "TestFem"
|
|
|
|
# module
|
|
./bin/FreeCAD --run-test "femtest.testccxtools"
|
|
./bin/FreeCAD --run-test "femtest.testcommon"
|
|
./bin/FreeCAD --run-test "femtest.testmesh"
|
|
./bin/FreeCAD --run-test "femtest.testobject"
|
|
./bin/FreeCAD --run-test "femtest.testresult"
|
|
./bin/FreeCAD --run-test "femtest.testsolverframework"
|
|
|
|
# class
|
|
./bin/FreeCAD --run-test "femtest.testcommon.TestFemCommon"
|
|
|
|
# method
|
|
./bin/FreeCAD --run-test "femtest.testcommon.TestFemCommon.test_pyimport_all_FEM_modules"
|
|
|
|
|
|
# open files generated from test suite
|
|
from femtest.utilstest import get_fem_test_tmp_dir as test_file_dir
|
|
doc = FreeCAD.open(test_file_dir() + 'FEM_ccx_Flow1D_thermomech/Flow1D_thermomech.FCStd')
|
|
doc = FreeCAD.open(test_file_dir() + 'FEM_ccx_frequency/cube_frequency.FCStd')
|
|
doc = FreeCAD.open(test_file_dir() + 'FEM_ccx_multimat/multimat.FCStd')
|
|
doc = FreeCAD.open(test_file_dir() + 'FEM_ccx_static/cube_static.FCStd')
|
|
doc = FreeCAD.open(test_file_dir() + 'FEM_ccx_thermomech/spine_thermomech.FCStd')
|
|
|
|
# open files from FEM test suite source code
|
|
# be careful on updating these files, they consist the original results!
|
|
# TODO update files, becaus some of them have non existing FEM object classes
|
|
doc = FreeCAD.open(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/cube.FCStd')
|
|
doc = FreeCAD.open(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/cube_frequency.FCStd')
|
|
doc = FreeCAD.open(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/cube_static.FCStd')
|
|
doc = FreeCAD.open(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/Flow1D_thermomech.FCStd')
|
|
doc = FreeCAD.open(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/multimat.FCStd')
|
|
doc = FreeCAD.open(FreeCAD.ConfigGet("AppHomePath") + 'Mod/Fem/femtest/testfiles/ccx/spine_thermomech.FCStd')
|
|
|
|
|
|
'''
|