Salome HOME
Merge multi-study removal branch.
[modules/yacs.git] / src / yacsloader_swig / Test / StdAloneYacsLoaderTest1.py
1 # Copyright (C) 2006-2016  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 import pilot
21 import SALOMERuntime
22 import loader
23 import unittest
24
25 class StdAloneYacsLoaderTest1(unittest.TestCase):
26
27   def setUp(self):
28     SALOMERuntime.RuntimeSALOME_setRuntime()
29     self.r = pilot.getRuntime()
30     self.l = loader.YACSLoader()# self.l.load("foreachImbr_tmp.xml")
31     pass
32
33   def test1(self):
34     """tests imbrication of foreach loop."""
35     SALOMERuntime.RuntimeSALOME_setRuntime()
36     l=loader.YACSLoader()
37     ex=pilot.ExecutorSwig()
38     p=self.r.createProc("pr")
39     td=p.createType("double","double")
40     td2=p.createSequenceTc("seqdbl","seqdbl",td)
41     td3=p.createSequenceTc("seqdblvec","seqdblvec",td2)
42     td4=p.createSequenceTc("seqseqdblvec","seqseqdblvec",td3)
43     node1=self.r.createScriptNode("","node1")
44     node1.setScript("o1=[([1,1],[2,2,2]),([10],[11,11],[12,12,12]),([20],[21,21],[22,22,22],[23,23,23,23])]")
45     o1=node1.edAddOutputPort("o1",td4)
46     p.edAddChild(node1)
47     node2=self.r.createForEachLoop("node2",td3)
48     p.edAddChild(node2)
49     p.edAddCFLink(node1,node2)
50     p.edAddLink(o1,node2.edGetSeqOfSamplesPort())
51     node2.edGetNbOfBranchesPort().edInitInt(2)
52     #
53     node20=self.r.createBloc("node20")
54     node2.edAddChild(node20)
55     node200=self.r.createForEachLoop("node200",td2)
56     node20.edAddChild(node200)
57     node200.edGetNbOfBranchesPort().edInitInt(2)
58     p.edAddLink(node2.edGetSamplePort(),node200.edGetSeqOfSamplesPort())
59     node2000=self.r.createForEachLoop("node2000",td)
60     node2000.edGetNbOfBranchesPort().edInitInt(2)
61     node200.edAddChild(node2000)
62     p.edAddLink(node200.edGetSamplePort(),node2000.edGetSeqOfSamplesPort())
63     node20000=self.r.createScriptNode("","node20000")
64     node2000.edAddChild(node20000)
65     i1=node20000.edAddInputPort("i1",td)
66     o2=node20000.edAddOutputPort("o2",td)
67     node20000.setScript("o2=i1+2")
68     p.edAddLink(node2000.edGetSamplePort(),i1)
69     #
70     node3=self.r.createScriptNode("","node3")
71     node3.setScript("o3=i2")
72     p.edAddChild(node3)
73     i2=node3.edAddInputPort("i2",td4)
74     o3=node3.edAddOutputPort("o3",td4)
75     p.edAddCFLink(node2,node3)
76     p.edAddLink(o2,i2)
77     ex = pilot.ExecutorSwig()
78     self.assertEqual(p.getState(),pilot.READY)
79     ex.RunW(p,0)
80     self.assertEqual(p.getState(),pilot.DONE)
81     zeResu=node3.getOutputPort("o3").get()
82     self.assertEqual(zeResu,[[[3.,3.],[4.,4.,4.]],[[12.],[13.,13.],[14.,14.,14.]],[[22.],[23.,23.],[24.,24.,24.],[25.,25.,25.,25.]]])
83     p.saveSchema("foreachImbrBuildFS.xml")
84     pass
85
86   def test2(self):
87     """ Non regression test. When input/output declared as pyobj hiding a string type to go to or from a ForEachLoop it previous lead
88     to an error.
89     """
90     fname="BugPyObjStrInYacs.xml"
91     p=self.r.createProc("pr")
92     tc0=p.createInterfaceTc("python:obj:1.0","pyobj",[])
93     tc1=p.createSequenceTc("list[pyobj]","list[pyobj]",tc0)
94     #
95     node0=self.r.createScriptNode("Salome","node0")
96     node0.setScript("o1=[\"a\",\"bc\"]")
97     o1=node0.edAddOutputPort("o1",tc1)
98     p.edAddChild(node0)
99     #
100     node1=self.r.createForEachLoop("node1",tc0)
101     p.edAddChild(node1)
102     p.edAddCFLink(node0,node1)
103     node1.edGetNbOfBranchesPort().edInitInt(1)
104     p.edAddLink(o1,node1.edGetSeqOfSamplesPort())
105     #
106     node10=self.r.createScriptNode("Salome","node10")
107     node10.setScript("o1=3*i1")
108     i10_1=node10.edAddInputPort("i1",tc0)
109     o10_1=node10.edAddOutputPort("o1",tc0)
110     node1.edAddChild(node10)
111     p.edAddLink(node1.edGetSamplePort(),i10_1)
112     #
113     node2=self.r.createScriptNode("Salome","node2")
114     node2.setScript("o1=i1")
115     i2_1=node2.edAddInputPort("i1",tc1)
116     o2_1=node2.edAddOutputPort("o1",tc1)
117     p.edAddChild(node2)
118     p.edAddCFLink(node1,node2)
119     p.edAddLink(o10_1,i2_1)
120     ##
121     p.saveSchema(fname)
122     p=self.l.load(fname)
123     ##
124     ex = pilot.ExecutorSwig()
125     self.assertEqual(p.getState(),pilot.READY)
126     ex.RunW(p,0)
127     self.assertEqual(p.getState(),pilot.DONE)
128     #
129     self.assertEqual(p.getChildByName("node2").getOutputPort("o1").get(),['aaa','bcbcbc'])
130     pass
131
132   def test3(self):
133     """ Non regression test Mantis 23234 CEA1726"""
134     fname="test23234.xml"
135     p=self.r.createProc("Test23234")
136     ti=p.createType("int","int")
137     initNode=self.r.createScriptNode("","init")
138     initNode_n=initNode.edAddOutputPort("n",ti)
139     initNode.setScript("n=10")
140     p.edAddChild(initNode)
141     #
142     endNode=self.r.createScriptNode("","checkResu")
143     endNode_n=endNode.edAddInputPort("n",ti)
144     endNode_tot=endNode.edAddInputPort("tot",ti)
145     endNode_error=endNode.edAddOutputPort("error",ti)
146     endNode.setScript("error=tot-n*(n+1)/2")
147     p.edAddChild(endNode)
148     #
149     fl=self.r.createForLoop("ForLoop_sum_1_n")
150     p.edAddChild(fl)
151     #
152     p.edAddCFLink(initNode,fl)
153     p.edAddCFLink(fl,endNode)
154     #
155     summ=self.r.createFuncNode("","sum")
156     summ_i=summ.edAddInputPort("i",ti)
157     summ_total=summ.edAddOutputPort("total",ti)
158     summ.setScript("""n=0
159 def sum(i):
160    global n
161    n+=i+1
162    return n""")
163     summ.setFname("sum")
164     fl.edAddChild(summ)
165     #
166     p.edAddLink(fl.edGetIndexPort(),summ_i)
167     p.edAddLink(initNode_n,fl.edGetNbOfTimesInputPort())
168     p.edAddLink(initNode_n,endNode_n)
169     p.edAddLink(summ_total,endNode_tot)
170     #
171     p.saveSchema(fname)
172     ex=pilot.ExecutorSwig()
173     self.assertEqual(p.getState(),pilot.READY)
174     ex.RunW(p,0)
175     self.assertEqual(p.getState(),pilot.DONE)
176     self.assertEqual(endNode_error.getPyObj(),0)
177     pass
178
179   def test4(self):
180     """ test linked to TestSaveLoadRun.test20. This is a smaller test coming from EDF autotest"""
181     xmlFileName="test4.xml"
182     p=self.r.createProc("test26")
183     n=self.r.createScriptNode("","node1")
184     n.setScript("import os")
185     p.edAddChild(n)
186     n.setState(pilot.DISABLED)
187     #
188     ex=pilot.ExecutorSwig()
189     self.assertEqual(p.getState(),pilot.READY)
190     ex.RunW(p,0)
191     self.assertEqual(p.getState(),pilot.ACTIVATED)
192     self.assertEqual(n.getState(),pilot.DISABLED) # <- test is here.
193     pass
194
195   def test5(self):
196     """ Test focusing P13268. If I connect a list[pyobj] output inside a ForEach to a list[pyobj] outside a foreach it works now."""
197     #self.assertTrue(False)
198     fname="testP1328.xml"
199     p=self.r.createProc("testP1328")
200     tc0=p.createInterfaceTc("python:obj:1.0","pyobj",[])
201     tc1=p.createSequenceTc("list[pyobj]","list[pyobj]",tc0)
202     n0=self.r.createScriptNode("","n0")
203     n1=self.r.createForEachLoop("n1",tc0)
204     n10=self.r.createScriptNode("","n10")
205     n2=self.r.createScriptNode("","n2")
206     p.edAddChild(n0) ; p.edAddChild(n1) ; p.edAddChild(n2) ; n1.edAddChild(n10)
207     n0.setScript("o2=[[elt] for elt in range(10)]")
208     n10.setScript("o6=2*i5")
209     n2.setScript("assert(i8==[[0,0],[1,1],[2,2],[3,3],[4,4],[5,5],[6,6],[7,7],[8,8],[9,9]])")
210     o2=n0.edAddOutputPort("o2",tc1)
211     i5=n10.edAddInputPort("i5",tc0)
212     o6=n10.edAddOutputPort("o6",tc1) # the goal of test is here ! tc1 NOT tc0 !
213     i8=n2.edAddInputPort("i8",tc1)
214     #
215     p.edAddCFLink(n0,n1)
216     p.edAddCFLink(n1,n2)
217     #
218     p.edAddLink(o2,n1.edGetSeqOfSamplesPort())
219     p.edAddLink(n1.edGetSamplePort(),i5)
220     p.edAddLink(o6,i8) # important link for the test !
221     #
222     n1.edGetNbOfBranchesPort().edInitInt(1)
223     #
224     p.saveSchema(fname)
225     #
226     ex=pilot.ExecutorSwig()
227     self.assertEqual(p.getState(),pilot.READY)
228     ex.RunW(p,0)
229     self.assertEqual(p.getState(),pilot.DONE)
230     self.assertEqual(p.getChildByName("n2").getInputPort("i8").getPyObj(),[[0,0],[1,1],[2,2],[3,3],[4,4],[5,5],[6,6],[7,7],[8,8],[9,9]])
231     pass
232
233   def test6(self):
234     """ Test focusing on P13766. Test of a connection of 2 foreach at same level where the output pyobj is connected to the list[pyobj] input samples of the 2nd foreach"""
235     fname="testP13766.xml"
236     p=self.r.createProc("testP13766")
237     tc0=p.createInterfaceTc("python:obj:1.0","pyobj",[])
238     tc1=p.createSequenceTc("list[pyobj]","list[pyobj]",tc0)
239     n0=self.r.createScriptNode("","n0")
240     n1=self.r.createForEachLoop("n1",tc0)
241     n2=self.r.createForEachLoop("n2",tc0)
242     n10=self.r.createScriptNode("","n10")
243     n20=self.r.createScriptNode("","n20")
244     n3=self.r.createScriptNode("","n3")
245     p.edAddChild(n0) ; p.edAddChild(n1) ; p.edAddChild(n2) ; p.edAddChild(n3) ; n1.edAddChild(n10) ; n2.edAddChild(n20)
246     n0.setScript("o2=[[elt] for elt in range(10)]")
247     n10.setScript("o6=3*i5")
248     n3.setScript("assert(i8==[[0,0,0,0,0,0],[1,1,1,1,1,1],[2,2,2,2,2,2],[3,3,3,3,3,3],[4,4,4,4,4,4],[5,5,5,5,5,5],[6,6,6,6,6,6],[7,7,7,7,7,7],[8,8,8,8,8,8],[9,9,9,9,9,9]])")
249     n20.setScript("o10=2*i9")
250     o2=n0.edAddOutputPort("o2",tc1)
251     i5=n10.edAddInputPort("i5",tc0)
252     o6=n10.edAddOutputPort("o6",tc0)
253     i9=n20.edAddInputPort("i9",tc0)
254     o10=n20.edAddOutputPort("o10",tc0)
255     i8=n3.edAddInputPort("i8",tc1)
256     #
257     p.edAddCFLink(n0,n1)
258     p.edAddCFLink(n1,n2)
259     p.edAddCFLink(n2,n3)
260     #
261     p.edAddLink(o2,n1.edGetSeqOfSamplesPort())
262     p.edAddLink(o6,n2.edGetSeqOfSamplesPort())# test is here !
263     p.edAddLink(n1.edGetSamplePort(),i5)
264     p.edAddLink(n2.edGetSamplePort(),i9)
265     p.edAddLink(o10,i8) 
266     #
267     n1.edGetNbOfBranchesPort().edInitInt(1)
268     n2.edGetNbOfBranchesPort().edInitInt(1)
269     #
270     p.saveSchema(fname)
271     #
272     ex=pilot.ExecutorSwig()
273     self.assertEqual(p.getState(),pilot.READY)
274     ex.RunW(p,0)
275     self.assertEqual(p.getState(),pilot.DONE)
276     self.assertEqual(p.getChildByName("n3").getInputPort("i8").getPyObj(),[[0,0,0,0,0,0],[1,1,1,1,1,1],[2,2,2,2,2,2],[3,3,3,3,3,3],[4,4,4,4,4,4],[5,5,5,5,5,5],[6,6,6,6,6,6],[7,7,7,7,7,7],[8,8,8,8,8,8],[9,9,9,9,9,9]])
277     pass
278   
279   def tearDown(self):
280     del self.r
281     del self.l
282     pass
283
284   pass
285
286 if __name__ == '__main__':
287     unittest.main()