Salome HOME
Update copyrights 2014.
[modules/kernel.git] / src / SALOMEDS / Test / SALOMEDSTest_AttributeTableOfReal.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 /*!
24  * Check all methods of SALOMEDS_AttributeTableOfReal
25  * Use code of SALOMEDS_AttributeTableOfReal.cxx
26  */
27 void SALOMEDSTest::testAttributeTableOfReal()
28 {
29   //Create or find the Study manager
30   _PTR(StudyManager) sm ( new SALOMEDS_StudyManager(_sm) );
31
32   CPPUNIT_ASSERT(sm);
33
34   //Create a new study
35   _PTR(Study) study = sm->NewStudy("Test");
36
37   CPPUNIT_ASSERT(study);
38
39   //Create Study Builder
40   _PTR(StudyBuilder) studyBuilder = study->NewBuilder();
41
42   CPPUNIT_ASSERT(studyBuilder);
43
44   //Create a SObject with entry 0:1:1
45   _PTR(SObject) so = study->CreateObjectID("0:1:1");
46
47   CPPUNIT_ASSERT(so);
48
49   //Create an attribute AttributeTableOfReal
50   _PTR(AttributeTableOfReal) _attr = studyBuilder->FindOrCreateAttribute(so, "AttributeTableOfReal");
51
52   //Check the attribute creation
53   CPPUNIT_ASSERT(_attr);
54
55   //Check method SetTitle
56   _attr->SetTitle("Table_1");
57
58   //Check method GetTitle
59   CPPUNIT_ASSERT(_attr->GetTitle() == "Table_1");
60
61   //Check method SetNbColumns
62   _attr->SetNbColumns(2);
63
64   //Check method GetNbColumns
65   CPPUNIT_ASSERT(_attr->GetNbColumns() == 2);
66
67   //Check method HasValue
68   CPPUNIT_ASSERT(!_attr->HasValue(1, 1));
69
70   bool isCaught = false;
71   try {
72     _attr->GetValue(1, 1);
73   }
74   catch(...) {
75      isCaught = true;
76   }
77   CPPUNIT_ASSERT(isCaught);
78
79   //Check method PutValue
80   _attr->PutValue(23.23, 1,1);
81
82   CPPUNIT_ASSERT(_attr->HasValue(1, 1));
83
84   //Check method GetValue
85   CPPUNIT_ASSERT(_attr->GetValue(1, 1) == 23.23);
86
87   //Check method GetRowSetIndices
88   std::vector<int> rs = _attr->GetRowSetIndices(1);
89
90   CPPUNIT_ASSERT(rs.size() == 1 && rs[0] == 1);
91
92   _attr->PutValue(32.32, 2,2);
93   CPPUNIT_ASSERT(_attr->HasValue(2, 2));
94
95   std::vector<std::string> rowTitles;
96   rowTitles.push_back("title1");
97   rowTitles.push_back("title2");
98
99   //Check method SetRowTitles
100   _attr->SetRowTitles(rowTitles);
101
102   //Check method SetRowTitle
103   _attr->SetRowTitle(1, "new_title");
104
105   //Check method GetRowTitles
106   std::vector<std::string> rt = _attr->GetRowTitles();
107
108   CPPUNIT_ASSERT(rt.size() == 2 && rt[0] == "new_title" && rt[1] == "title2");
109
110   std::vector<std::string> colTitles;
111   colTitles.push_back("title1");
112   colTitles.push_back("title2");
113
114   //Check method SetColumnTitles
115   _attr->SetColumnTitles(colTitles);
116
117   //Check method SetColumnTitle
118   _attr->SetColumnTitle(1, "new_title");
119
120   //Check method GetColumnTitles
121   std::vector<std::string> ct = _attr->GetColumnTitles();
122
123   CPPUNIT_ASSERT(ct.size() == 2 && ct[0] == "new_title" && ct[1] == "title2");
124
125   std::vector<std::string> rowUnits;
126   rowUnits.push_back("unit1");
127   rowUnits.push_back("unit2");
128
129   //Check method SetRowUnits
130   _attr->SetRowUnits(rowUnits);
131
132   //Check method SetRowUnit
133   _attr->SetRowUnit(1, "new_unit");
134
135   //Check method GetRowUnits
136   std::vector<std::string> ru = _attr->GetRowUnits();
137
138   CPPUNIT_ASSERT(ru.size() == 2 && ru[0] == "new_unit" && ru[1] == "unit2");
139
140   //Check method GetNbColumns
141   CPPUNIT_ASSERT(_attr->GetNbColumns() == 2);
142
143   //Check method AddRow
144   std::vector<double> data;
145   data.push_back(11.11);
146   data.push_back(22.22);
147
148   _attr->AddRow(data);
149
150   CPPUNIT_ASSERT(_attr->GetNbRows() == 3);
151
152   //Check method GetRow
153   std::vector<double> data2 = _attr->GetRow(3);
154
155   CPPUNIT_ASSERT(data2.size() == 2 && data2[0] == 11.11 && data2[1] == 22.22);
156
157   //Check method SetRow
158   data[0] = 33.33;
159   _attr->SetRow(3, data);
160
161   data2 = _attr->GetRow(3);
162
163   CPPUNIT_ASSERT(data2.size() == 2 && data2[0] == 33.33 && data2[1] == 22.22);
164
165    //Check method AddColumn
166   data[0] = -11.11;
167   data[1] = -22.22;
168   data.push_back(-33.33);
169
170   _attr->AddColumn(data);
171
172   CPPUNIT_ASSERT(_attr->GetNbColumns() == 3);
173
174   //Check method GetColumn
175   data2 = _attr->GetColumn(3);
176
177   CPPUNIT_ASSERT(data2.size() == 3 && data2[0] == -11.11 && data2[1] == -22.22 && data2[2] == -33.33);
178
179   //Check method SetColumn
180   data[0] = 11.11;
181   _attr->SetColumn(3, data);
182
183   data2 = _attr->GetColumn(3);
184
185   CPPUNIT_ASSERT(data2.size() == 3 && data2[0] == 11.11 && data2[1] == -22.22 && data2[2] == -33.33);
186
187   sm->Close(study);
188 }
189
190
191