Salome HOME
minor code review
[modules/hydro.git] / src / HYDRO_tests / test_HYDROData_Stream.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include <test_HYDROData_Stream.h>
20 #include <HYDROGUI_StreamDlg.h>
21 #include <HYDROData_Document.h>
22 #include <HYDROData_DTM.h>
23 #include <HYDROData_Stream.h>
24 #include <HYDROData_IPolyline.h>
25 #include <HYDROData_Profile.h>
26 #include <HYDROData_PolylineXY.h>
27 #include <HYDROData_Iterator.h>
28 #include <AIS_InteractiveContext.hxx>
29 #include <TestViewer.h>
30 #include <QApplication>
31 #include <QTest>
32
33 extern QString REF_DATA_PATH;
34 NCollection_Sequence<HYDROData_IPolyline::Point> points2;
35 const double EPS = 1E-3;
36
37 void test_HYDROData_Stream::setUp()
38 {
39   points2.Clear();
40   points2.Append( gp_XY( 0.0, 5.0 ) );
41   points2.Append( gp_XY( 1.0, 1.0 ) );
42   points2.Append( gp_XY( 1.5, 0.0 ) );
43   points2.Append( gp_XY( 4.0, 4.0 ) );
44 }
45
46 void test_HYDROData_Stream::tearDown()
47 {
48 }
49
50 void test_HYDROData_Stream::test_dialog()
51 {
52   HYDROGUI_StreamDlg* aDlg = new HYDROGUI_StreamDlg( 0, "stream" );
53   aDlg->show();
54   qApp->processEvents();
55
56   QImage aStreamDlgImage = QPixmap::grabWidget( aDlg ).toImage();
57   CPPUNIT_ASSERT_IMAGES2( &aStreamDlgImage, "StreamDlg" );
58
59   aDlg->setDDZ( 12.34 );
60   CPPUNIT_ASSERT_DOUBLES_EQUAL( 12.34, aDlg->getDDZ(), EPS );
61
62   aDlg->setSpatialStep( 56.78 );
63   CPPUNIT_ASSERT_DOUBLES_EQUAL( 56.78, aDlg->getSpatialStep(), EPS );
64
65   delete aDlg;
66 }
67
68 void test_HYDROData_Stream::test_alt_object()
69 {
70   Handle(HYDROData_Document) aDoc = HYDROData_Document::Document(1);
71
72   Handle(HYDROData_Stream) aStream = 
73     Handle(HYDROData_Stream)::DownCast( aDoc->CreateObject( KIND_STREAM ) );
74
75   CPPUNIT_ASSERT_EQUAL( false, (bool)aStream.IsNull() );
76   CPPUNIT_ASSERT_EQUAL( true, (bool)aStream->GetAltitudeObject().IsNull() );
77   CPPUNIT_ASSERT_EQUAL( false, (bool)aStream->DTM().IsNull() );
78   CPPUNIT_ASSERT_EQUAL( false, (bool)aStream->GetAltitudeObject().IsNull() );
79   CPPUNIT_ASSERT_EQUAL( KIND_DTM, aStream->getAltitudeObjectType() );
80
81   Handle(HYDROData_DTM) aDTM = 
82     Handle(HYDROData_DTM)::DownCast( aStream->GetAltitudeObject() );
83   CPPUNIT_ASSERT_EQUAL( false, (bool)aDTM.IsNull() );
84
85   aDoc->Close();
86 }
87
88 void test_HYDROData_Stream::test_params_sync()
89 {
90   Handle(HYDROData_Document) aDoc = HYDROData_Document::Document(1);
91
92   Handle(HYDROData_Stream) aStream = 
93     Handle(HYDROData_Stream)::DownCast( aDoc->CreateObject( KIND_STREAM ) );
94   Handle(HYDROData_DTM) aDTM = aStream->DTM();
95   CPPUNIT_ASSERT_EQUAL( false, (bool)aDTM.IsNull() );
96
97   Handle(HYDROData_Profile) aProfile1 = 
98     Handle(HYDROData_Profile)::DownCast( aDoc->CreateObject( KIND_PROFILE ) );
99
100   Handle(HYDROData_Profile) aProfile2 = 
101     Handle(HYDROData_Profile)::DownCast( aDoc->CreateObject( KIND_PROFILE ) );
102
103   aProfile1->SetParametricPoints( points2 );
104   aProfile1->GetProfileUZ()->SetSectionType( 0, HYDROData_IPolyline::SECTION_POLYLINE );
105   aProfile1->SetLeftPoint( gp_XY( 10, 10 ) );
106   aProfile1->SetRightPoint( gp_XY( 20, 0 ) );
107
108   aProfile2->SetParametricPoints( points2 );
109   aProfile2->GetProfileUZ()->SetSectionType( 0, HYDROData_IPolyline::SECTION_POLYLINE );
110   aProfile2->SetLeftPoint( gp_XY( 50, 0 ) );
111   aProfile2->SetRightPoint( gp_XY( 60, 10 ) );
112
113   HYDROData_SequenceOfObjects profiles;
114   profiles.Append( aProfile1 );
115   profiles.Append( aProfile2 );
116
117   aStream->SetProfiles( profiles, false );
118   aStream->SetDDZ( 3.14 );
119   aStream->SetSpatialStep( 4.14 );
120
121   CPPUNIT_ASSERT_DOUBLES_EQUAL( 3.14, aStream->GetDDZ(), EPS );
122   CPPUNIT_ASSERT_DOUBLES_EQUAL( 3.14, aDTM->GetDDZ(), EPS );
123   CPPUNIT_ASSERT_DOUBLES_EQUAL( 4.14, aStream->GetSpatialStep(), EPS );
124   CPPUNIT_ASSERT_DOUBLES_EQUAL( 4.14, aDTM->GetSpatialStep(), EPS );
125
126   HYDROData_SequenceOfObjects profiles1 = aStream->GetProfiles();
127   CPPUNIT_ASSERT_EQUAL( 2, profiles1.Size() );
128   CPPUNIT_ASSERT( profiles.Value(1)->Label() == profiles1.Value(1)->Label() );
129   CPPUNIT_ASSERT( profiles.Value(2)->Label() == profiles1.Value(2)->Label() );
130
131   HYDROData_SequenceOfObjects profiles2 = aDTM->GetProfiles();
132   CPPUNIT_ASSERT_EQUAL( 2, profiles2.Size() );
133   CPPUNIT_ASSERT( profiles.Value(1)->Label() == profiles2.Value(1)->Label() );
134   CPPUNIT_ASSERT( profiles.Value(2)->Label() == profiles2.Value(2)->Label() );
135
136   aDoc->Close();
137 }
138
139 void test_HYDROData_Stream::test_dump()
140 {
141   // Case 1. Without hydraulic axis
142   Handle(HYDROData_Document) aDoc = HYDROData_Document::Document(1);
143
144   Handle(HYDROData_Stream) aStream1 = 
145     Handle(HYDROData_Stream)::DownCast( aDoc->CreateObject( KIND_STREAM ) );
146   aStream1->SetName( "stream_1" );
147
148   Handle(HYDROData_Profile) aProfile1 = 
149     Handle(HYDROData_Profile)::DownCast( aDoc->CreateObject( KIND_PROFILE ) );
150   aProfile1->SetName( "p1" );
151
152   Handle(HYDROData_Profile) aProfile2 = 
153     Handle(HYDROData_Profile)::DownCast( aDoc->CreateObject( KIND_PROFILE ) );
154   aProfile2->SetName( "p2" );
155
156   aProfile1->SetParametricPoints( points2 );
157   aProfile1->GetProfileUZ()->SetSectionType( 0, HYDROData_IPolyline::SECTION_POLYLINE );
158   aProfile1->SetLeftPoint( gp_XY( 10, 10 ) );
159   aProfile1->SetRightPoint( gp_XY( 20, 0 ) );
160
161   aProfile2->SetParametricPoints( points2 );
162   aProfile2->GetProfileUZ()->SetSectionType( 0, HYDROData_IPolyline::SECTION_POLYLINE );
163   aProfile2->SetLeftPoint( gp_XY( 50, 0 ) );
164   aProfile2->SetRightPoint( gp_XY( 60, 10 ) );
165
166   HYDROData_SequenceOfObjects profiles;
167   profiles.Append( aProfile1 );
168   profiles.Append( aProfile2 );
169
170   aStream1->SetProfiles( profiles, false );
171   aStream1->SetDDZ( 0.2 );
172   aStream1->SetSpatialStep( 3.0 );
173
174   MapOfTreatedObjects objs;
175   objs["p1"] = aProfile1;
176   objs["p2"] = aProfile2;
177
178   QStringList aScript1 = aStream1->DumpToPython( "", objs );
179   CPPUNIT_ASSERT_EQUAL( 10, aScript1.size() );
180   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1 = hydro_doc.CreateObject( KIND_STREAM )" ), aScript1[0].toStdString() );
181   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1.SetName( \"stream_1\" )" ),                 aScript1[1].toStdString() );
182   CPPUNIT_ASSERT_EQUAL( std::string( "" ),                                                 aScript1[2].toStdString() );
183   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1.AddProfile( p1 )" ),                        aScript1[3].toStdString() );
184   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1.AddProfile( p2 )" ),                        aScript1[4].toStdString() );
185   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1.SetDDZ( 0.200 )" ),                         aScript1[5].toStdString() );
186   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1.SetSpatialStep( 3.000 )" ),                 aScript1[6].toStdString() );
187   CPPUNIT_ASSERT_EQUAL( std::string( "" ),                                                 aScript1[7].toStdString() );
188   CPPUNIT_ASSERT_EQUAL( std::string( "stream_1.Update()" ),                                aScript1[8].toStdString() );
189   CPPUNIT_ASSERT_EQUAL( std::string( "" ),                                                 aScript1[9].toStdString() );
190
191   // Case 2. With hydraulic axis
192
193   Handle(HYDROData_Stream) aStream2 = 
194     Handle(HYDROData_Stream)::DownCast( aDoc->CreateObject( KIND_STREAM ) );
195   aStream2->SetName( "stream_2" );
196
197   Handle(HYDROData_PolylineXY) anHAxis = 
198     Handle(HYDROData_PolylineXY)::DownCast( aDoc->CreateObject( KIND_POLYLINEXY ) );
199   anHAxis->SetName( "axis" );
200
201   aStream2->SetProfiles( profiles, false );
202   aStream2->SetDDZ( 0.2 );
203   aStream2->SetSpatialStep( 3.0 );
204   aStream2->SetReferenceObject( anHAxis, HYDROData_Stream::DataTag_HydraulicAxis );
205
206   objs.clear();
207   objs["p1"] = aProfile1;
208   objs["p2"] = aProfile2;
209   objs["axis"] = anHAxis;
210
211   QStringList aScript2 = aStream2->DumpToPython( "", objs );
212   CPPUNIT_ASSERT_EQUAL( 11, aScript2.size() );
213   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2 = hydro_doc.CreateObject( KIND_STREAM )" ), aScript2[0].toStdString() );
214   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.SetName( \"stream_2\" )" ),                 aScript2[1].toStdString() );
215   CPPUNIT_ASSERT_EQUAL( std::string( "" ),                                                 aScript2[2].toStdString() );
216   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.SetHydraulicAxis( axis )" ),                aScript2[3].toStdString() );
217   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.AddProfile( p1 )" ),                        aScript2[4].toStdString() );
218   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.AddProfile( p2 )" ),                        aScript2[5].toStdString() );
219   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.SetDDZ( 0.200 )" ),                         aScript2[6].toStdString() );
220   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.SetSpatialStep( 3.000 )" ),                 aScript2[7].toStdString() );
221   CPPUNIT_ASSERT_EQUAL( std::string( "" ),                                                 aScript2[8].toStdString() );
222   CPPUNIT_ASSERT_EQUAL( std::string( "stream_2.Update()" ),                                aScript2[9].toStdString() );
223   CPPUNIT_ASSERT_EQUAL( std::string( "" ),                                                 aScript2[10].toStdString() );
224
225   aDoc->Close();
226 }
227
228 void test_HYDROData_Stream::test_presentation()
229 {
230   Handle(HYDROData_Document) aDoc = HYDROData_Document::Document(1);
231   
232   TCollection_AsciiString fname = REF_DATA_PATH.toLatin1().data();
233   fname += "/Profiles.xyz";
234   NCollection_Sequence<int> bad_ids;
235
236   int aSize = HYDROData_Profile::ImportFromFile( aDoc, fname, bad_ids, true );
237   
238   CPPUNIT_ASSERT_EQUAL( 0, bad_ids.Size() );
239   CPPUNIT_ASSERT_EQUAL( 46, aSize );
240
241   HYDROData_SequenceOfObjects profiles;
242   HYDROData_Iterator it( aDoc, KIND_PROFILE );
243   for( int i=0; it.More(); it.Next(), i++ )
244   {
245     if( i>=25 && i<=35 )
246     {
247       it.Current()->Update();
248       profiles.Append( Handle(HYDROData_Profile)::DownCast( it.Current() ) );
249     }
250   }
251
252   Handle(HYDROData_Stream) aStream = 
253     Handle(HYDROData_Stream)::DownCast( aDoc->CreateObject( KIND_STREAM ) );
254
255   aStream->SetProfiles( profiles, false );
256   aStream->SetDDZ( 0.2 );
257   aStream->SetSpatialStep( 10 );
258   aStream->Update();
259
260   TopoDS_Shape aPrs3d = aStream->GetShape3D();
261   TopoDS_Shape aPrs2d = aStream->GetTopShape();
262
263   TestViewer::show( aPrs2d, 0, true, "stream_dtm_2d", 1, 1 );
264   CPPUNIT_ASSERT_IMAGES;
265
266   TestViewer::eraseAll( true );
267   TestViewer::show( aPrs3d, 0, true, "stream_dtm_3d" );
268   CPPUNIT_ASSERT_IMAGES
269
270   aDoc->Close();
271 }
272