Salome HOME
merge from branch BR_V5_DEV
[modules/yacs.git] / src / SALOMEDS / Test / SALOMEDSTest_SObject.cxx
1 //  Copyright (C) 2007-2008  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.
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  * Check all methods of SALOMEDS_SObject
24  * Use code of SALOMEDS_SObject.cxx
25  */
26
27 void SALOMEDSTest::testSObject()
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("TestSObject");
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 new SComponent
45   _PTR(SComponent) sco = studyBuilder->NewComponent("Test");
46
47   //Create new SObject
48   _PTR(SObject) so = studyBuilder->NewObjectToTag(sco, 2);
49
50   //Check the creation of the SObject
51   CPPUNIT_ASSERT(so);
52
53   //Check method GetID
54   CPPUNIT_ASSERT(so->GetID() == "0:1:1:2");
55
56   //Check method Tag
57   CPPUNIT_ASSERT(so->Tag() == 2);
58
59   //Check method GetFatherComponent
60   _PTR(SComponent) father = so->GetFatherComponent();
61   CPPUNIT_ASSERT(father->GetID() == sco->GetID());
62
63   //Check method GetFather
64   _PTR(SObject) so1 = studyBuilder->NewObject(so);
65   CPPUNIT_ASSERT(so1->GetFather()->GetID() == so->GetID());
66
67   //Check method FindAttribute
68      
69   _PTR(AttributeIOR) _attrIOR = studyBuilder->FindOrCreateAttribute(so, "AttributeIOR");
70   _PTR(AttributeName) _attrName = studyBuilder->FindOrCreateAttribute(so, "AttributeName");
71   _PTR(AttributeComment) _attrComment = studyBuilder->FindOrCreateAttribute(so, "AttributeComment"); 
72
73    string ior = _orb->object_to_string(_sm);
74   _attrIOR->SetValue(ior);
75   _attrName->SetValue("SO name");
76   _attrComment->SetValue("SO comment");
77
78   _PTR(GenericAttribute) ga;
79   CPPUNIT_ASSERT(so->FindAttribute(ga, "AttributeIOR"));
80
81   //Try to find attribute with empty type
82   CPPUNIT_ASSERT(!so->FindAttribute(ga, ""));
83
84   //Check method ReferencedObject
85   studyBuilder->Addreference(so1, so);
86   _PTR(SObject) so2; 
87   CPPUNIT_ASSERT(so1->ReferencedObject(so2));
88   CPPUNIT_ASSERT(so2->GetID() == so->GetID());
89
90   //Check method FindSubObject
91   CPPUNIT_ASSERT(so->FindSubObject(1, so2));
92   CPPUNIT_ASSERT(so2->GetID() == so1->GetID());
93
94   //Check method GetStudy
95   CPPUNIT_ASSERT(so->GetStudy()->StudyId() == study->StudyId());
96
97   //Check methods Name
98   so->Name("test");
99   CPPUNIT_ASSERT(so->Name() == "test");
100
101   //Check method GetAllAttributes
102   vector< _PTR(GenericAttribute) > v = so->GetAllAttributes();
103    
104   CPPUNIT_ASSERT(v.size() == 5); //+AttributeTarget +AttributeTreeNode
105
106   //Check method GetName
107   CPPUNIT_ASSERT(so->GetName() == "SO name");
108
109   //Check method GetComment
110   CPPUNIT_ASSERT(so->GetComment() == "SO comment");
111
112   //Check method GetIOR
113   CPPUNIT_ASSERT(so->GetIOR() == ior);
114
115   //Check method Depth
116   CPPUNIT_ASSERT(so->Depth() == 3);
117
118   //Check method GetObject
119   CORBA::Object_var obj = dynamic_cast<SALOMEDS_SObject*>(so.get())->GetObject();
120   CPPUNIT_ASSERT(!CORBA::is_nil(obj));
121
122   sm->Close(study);
123 }
124
125
126