Salome HOME
Updated copyright comment
[modules/kernel.git] / src / SALOMEDS / Test / SALOMEDSTest_SObject.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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_SObject
25  * Use code of SALOMEDS_SObject.cxx
26  */
27
28 void SALOMEDSTest::testSObject()
29 {
30   //Create Study
31   _PTR(Study) study(new SALOMEDS_Study(_study));
32
33   CPPUNIT_ASSERT(study);
34
35   //Create Study Builder
36   _PTR(StudyBuilder) studyBuilder = study->NewBuilder();
37
38   CPPUNIT_ASSERT(studyBuilder);
39
40   //Create a new SComponent
41   _PTR(SComponent) sco = studyBuilder->NewComponent("Test");
42
43   //Create new SObject
44   _PTR(SObject) so = studyBuilder->NewObjectToTag(sco, 2);
45
46   //Check the creation of the SObject
47   CPPUNIT_ASSERT(so);
48
49   //Check method GetID
50   CPPUNIT_ASSERT(so->GetID() == "0:1:1:2");
51
52   //Check method Tag
53   CPPUNIT_ASSERT(so->Tag() == 2);
54
55   //Check method GetFatherComponent
56   _PTR(SComponent) father = so->GetFatherComponent();
57   CPPUNIT_ASSERT(father->GetID() == sco->GetID());
58
59   //Check method GetFather
60   _PTR(SObject) so1 = studyBuilder->NewObject(so);
61   CPPUNIT_ASSERT(so1->GetFather()->GetID() == so->GetID());
62
63   //Check method FindAttribute
64      
65   _PTR(AttributeIOR) _attrIOR = studyBuilder->FindOrCreateAttribute(so, "AttributeIOR");
66   _PTR(AttributeName) _attrName = studyBuilder->FindOrCreateAttribute(so, "AttributeName");
67   _PTR(AttributeComment) _attrComment = studyBuilder->FindOrCreateAttribute(so, "AttributeComment"); 
68
69    std::string ior = _orb->object_to_string(_study);
70   _attrIOR->SetValue(ior);
71   _attrName->SetValue("SO name");
72   _attrComment->SetValue("SO comment");
73
74   _PTR(GenericAttribute) ga;
75   CPPUNIT_ASSERT(so->FindAttribute(ga, "AttributeIOR"));
76
77   //Try to find attribute with empty type
78   CPPUNIT_ASSERT(!so->FindAttribute(ga, ""));
79
80   //Check method ReferencedObject
81   studyBuilder->Addreference(so1, so);
82   _PTR(SObject) so2; 
83   CPPUNIT_ASSERT(so1->ReferencedObject(so2));
84   CPPUNIT_ASSERT(so2->GetID() == so->GetID());
85
86   //Check method FindSubObject
87   CPPUNIT_ASSERT(so->FindSubObject(1, so2));
88   CPPUNIT_ASSERT(so2->GetID() == so1->GetID());
89
90   //Check methods Name
91   so->Name("test");
92   CPPUNIT_ASSERT(so->Name() == "test");
93
94   //Check method GetAllAttributes
95   std::vector< _PTR(GenericAttribute) > v = so->GetAllAttributes();
96    
97   CPPUNIT_ASSERT(v.size() == 4); //+AttributeTarget +AttributeTreeNode
98
99   //Check method GetName
100   CPPUNIT_ASSERT(so->GetName() == "SO name");
101
102   //Check method GetComment
103   CPPUNIT_ASSERT(so->GetComment() == "SO comment");
104
105   //Check method GetIOR
106   CPPUNIT_ASSERT(so->GetIOR() == ior);
107
108   //Check method Depth
109   CPPUNIT_ASSERT(so->Depth() == 3);
110
111   //Check method GetObject
112   CORBA::Object_var obj = dynamic_cast<SALOMEDS_SObject*>(so.get())->GetObject();
113   CPPUNIT_ASSERT(!CORBA::is_nil(obj));
114
115   study->Clear();
116 }
117
118
119