Salome HOME
MEDCoupling API change - stage #1
[tools/medcoupling.git] / src / MEDPartitioner / Test / MEDPARTITIONERTest.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __MEDPARTITIONERTEST_HXX__
21 #define __MEDPARTITIONERTEST_HXX__
22
23 #ifdef WIN32
24 # if defined MEDPARTITIONERTEST_EXPORTS || defined MEDPARTITIONERTest_EXPORTS
25 #  define MEDPARTITIONERTEST_EXPORT __declspec( dllexport )
26 # else
27 #  define MEDPARTITIONERTEST_EXPORT __declspec( dllimport )
28 # endif
29 #else
30 # define MEDPARTITIONERTEST_EXPORT
31 #endif
32
33
34 #include <cppunit/extensions/HelperMacros.h>
35
36 #include <set>
37 #include <string>
38 #include <iostream>
39
40 #include "MEDCouplingUMesh.hxx"
41 #include "MEDCouplingMappedExtrudedMesh.hxx"
42 #include "MEDCouplingFieldDouble.hxx"
43
44 class MEDPARTITIONERTEST_EXPORT MEDPARTITIONERTest : public CppUnit::TestFixture
45 {
46   CPPUNIT_TEST_SUITE( MEDPARTITIONERTest );
47   CPPUNIT_TEST( testMeshCollectionSingle );
48   CPPUNIT_TEST( testMeshCollectionXml );
49 #if defined(MED_ENABLE_METIS)
50   CPPUNIT_TEST( testMeshCollectionSinglePartitionMetis );
51   CPPUNIT_TEST( testMeshCollectionComplexPartitionMetis );
52   CPPUNIT_TEST( testMetisSmallSize );
53 #endif
54 #if defined(MED_ENABLE_SCOTCH)
55   CPPUNIT_TEST( testMeshCollectionSinglePartitionScotch );
56   CPPUNIT_TEST( testMeshCollectionComplexPartitionScotch );
57   CPPUNIT_TEST( testScotchSmallSize );
58 #endif
59
60 #if defined(HAVE_MPI)
61 #if defined(MED_ENABLE_PARMETIS)
62   //test with mpi on system
63   CPPUNIT_TEST( testMpirunSmallSize );
64   CPPUNIT_TEST( testMpirunMedianSize );
65   CPPUNIT_TEST( testMpirunHugeSize );
66 #endif
67 #endif
68
69   CPPUNIT_TEST( testCreateBoundaryFaces2D ); // imp 0021756
70
71   //CPPUNIT_TEST( deleteTestMeshes );
72   CPPUNIT_TEST_SUITE_END();
73
74 public:
75
76   //global use
77   int _ni;  //nb of hexa9
78   int _nj;
79   int _nk;
80   int _ntot;
81   std::string _file_name; //initial test mesh file med CUBE3D
82   std::string _file_name_with_faces; //initial test mesh file med CUBE3D plus a set of faces
83   std::string _file_name2; //initial test mesh file med CARRE3D
84   std::string _file_name_huge_xml;
85   int _nb_target_huge;
86   std::string _mesh_name; //initial test mesh file med
87   int _verbose;
88
89   //for utils
90   void setSize(int ni, int nj, int nk);
91   void setSmallSize();
92   void setMedianSize();
93   void setbigSize();
94   std::string getPartitionerExe() const;
95   std::string getPartitionerParaExe() const;
96   MEDCoupling::MEDCouplingUMesh * buildCUBE3DMesh();
97   MEDCoupling::MEDCouplingUMesh * buildFACE3DMesh();
98   MEDCoupling::MEDCouplingUMesh * buildCARRE3DMesh();
99   MEDCoupling::MEDCouplingFieldDouble * buildVecFieldOnCells(std::string myfileName);
100   MEDCoupling::MEDCouplingFieldDouble * buildVecFieldOnNodes();
101   void createTestMeshWithoutField();
102   void createTestMeshWithVecFieldOnCells();
103   void createTestMeshWithVecFieldOnNodes();
104   void verifyTestMeshWithVecFieldOnNodes();
105   void verifyMetisOrScotchMedpartitionerOnSmallSizeForMesh(std::string MetisOrScotch);
106   void verifyMetisOrScotchMedpartitionerOnSmallSizeForFieldOnCells(std::string MetisOrScotch);
107   void verifyMetisOrScotchMedpartitionerOnSmallSizeForFieldOnGaussNe(std::string MetisOrScotch);
108   void verifyMedpartitionerOnSmallSizeForMesh();
109   void verifyMedpartitionerOnSmallSizeForFieldOnCells();
110   void verifyMedpartitionerOnSmallSizeForFieldOnGaussNe();
111   void createTestMeshes();
112   void createHugeTestMesh(int ni, int nj, int nk, int nbx, int nby, int nbz, int nbTarget);
113   void launchMetisOrScotchMedpartitionerOnTestMeshes(std::string MetisOrScotch);
114   void launchMedpartitionerOnTestMeshes();
115   void launchMedpartitionerOnHugeTestMeshes();
116   void deleteTestMeshes();
117
118   //for CPPUNIT_TEST
119   void setUp();
120   void tearDown();
121   void testMeshCollectionSingle();
122   void testMeshCollectionXml();
123 #if defined(MED_ENABLE_METIS)
124   void testMeshCollectionSinglePartitionMetis();
125   void testMeshCollectionComplexPartitionMetis();
126   void testMetisSmallSize();
127 #endif
128 #if defined(MED_ENABLE_SCOTCH)
129   void testMeshCollectionSinglePartitionScotch();
130   void testMeshCollectionComplexPartitionScotch();
131   void testScotchSmallSize();
132 #endif
133
134 #if defined(HAVE_MPI)
135   void testMpirunSmallSize();
136   void testMpirunMedianSize();
137   void testMpirunHugeSize();
138 #endif
139
140   void testCreateBoundaryFaces2D();
141 };
142
143 #endif