Salome HOME
Merge branch 'V8_0_0_BR'
[modules/yacs.git] / src / yacsloader_swig / Test / StdAloneYacsLoaderTest1.py
1 # Copyright (C) 2006-2015  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 tearDown(self):
196     del self.r
197     del self.l
198     pass
199
200   pass
201
202 if __name__ == '__main__':
203     unittest.main()