From: esy Date: Tue, 28 Dec 2021 14:43:40 +0000 (+0100) Subject: TestSaveOpen and TestSelectionInitialization: Fix tmp issue with parallel X-Git-Tag: V9_9_0a1~12^2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b0933db57ab75436b6863066e27ffeec8164ffb6;p=modules%2Fshaper.git TestSaveOpen and TestSelectionInitialization: Fix tmp issue with parallel --- diff --git a/src/ModelAPI/Test/TestSaveOpen1.py b/src/ModelAPI/Test/TestSaveOpen1.py index 8560b2125..587d64022 100644 --- a/src/ModelAPI/Test/TestSaveOpen1.py +++ b/src/ModelAPI/Test/TestSaveOpen1.py @@ -18,6 +18,7 @@ # from salome.shaper import model +from tempfile import TemporaryDirectory from ModelAPI import * model.begin() @@ -27,21 +28,22 @@ Point_name = Point_2.name() model.end() # check save document in a current folder -aSession = ModelAPI_Session.get() -aFiles = StringList() -aSession.save(".", aFiles) -assert(len(aFiles) == 1) +with TemporaryDirectory() as tmp_dir: + aSession = ModelAPI_Session.get() + aFiles = StringList() + aSession.save(tmp_dir, aFiles) + assert(len(aFiles) == 1) # check open of the same document -assert(aSession.load(".") == False) # error because this document is already opened + assert(aSession.load(tmp_dir) == False) # error because this document is already opened # close the current document -aSession.closeAll() + aSession.closeAll() # open again: it must be correct now -assert(aSession.load(".")) + assert(aSession.load(tmp_dir)) # check the created point is opened -partSet = model.moduleDocument() -assert(partSet.size("Features") == 1) -assert(partSet.object("Features", 0).data().name() == Point_name) + partSet = model.moduleDocument() + assert(partSet.size("Features") == 1) + assert(partSet.object("Features", 0).data().name() == Point_name) diff --git a/src/ModelAPI/Test/TestSaveOpen2.py b/src/ModelAPI/Test/TestSaveOpen2.py index 14a97b4fa..26d31df79 100644 --- a/src/ModelAPI/Test/TestSaveOpen2.py +++ b/src/ModelAPI/Test/TestSaveOpen2.py @@ -18,6 +18,7 @@ # from salome.shaper import model +from tempfile import TemporaryDirectory from ModelAPI import * model.begin() @@ -33,36 +34,37 @@ Translation_1 = model.addTranslation(partSet, [model.selection("COMPOUND", "Part model.end() # check save document in a current folder -aSession = ModelAPI_Session.get() -aFiles = StringList() -aSession.save(".", aFiles) -assert(len(aFiles) == 3) +with TemporaryDirectory() as tmp_dir: + aSession = ModelAPI_Session.get() + aFiles = StringList() + aSession.save(tmp_dir, aFiles) + assert(len(aFiles) == 3) -# check open of the same document -assert(aSession.load(".") == False) # error because this document is already opened + # check open of the same document + assert(aSession.load(tmp_dir) == False) # error because this document is already opened -# close the current document -aSession.closeAll() + # close the current document + aSession.closeAll() -# open again: it must be correct now -assert(aSession.load(".")) + # open again: it must be correct now + assert(aSession.load(tmp_dir)) -# activate the Part of session -model.begin() -partSet = model.moduleDocument() -assert(partSet.size("Features") == 2) -aPart = objectToFeature(partSet.object("Features", 0)) -aPartResult = modelAPI_ResultPart(aPart.results()[0]) -aPartResult.activate() -aPartDoc = aPartResult.partDoc() -aSession.setActiveDocument(aPartDoc, True) -model.do() -# check the field result data -aFieldFeature = aPartDoc.objectByName("Features", "Field_1") -aFieldResult = modelAPI_ResultField(objectToFeature(aFieldFeature).results()[0]) -assert(aFieldResult.textLine(0) == "5") -aSession.setActiveDocument(partSet, True) -model.do() -aTranslation = objectToFeature(partSet.objectByName("Features", "Translation_1")) -partSet.setCurrentFeature(aTranslation, True) -model.end() + # activate the Part of session + model.begin() + partSet = model.moduleDocument() + assert(partSet.size("Features") == 2) + aPart = objectToFeature(partSet.object("Features", 0)) + aPartResult = modelAPI_ResultPart(aPart.results()[0]) + aPartResult.activate() + aPartDoc = aPartResult.partDoc() + aSession.setActiveDocument(aPartDoc, True) + model.do() + # check the field result data + aFieldFeature = aPartDoc.objectByName("Features", "Field_1") + aFieldResult = modelAPI_ResultField(objectToFeature(aFieldFeature).results()[0]) + assert(aFieldResult.textLine(0) == "5") + aSession.setActiveDocument(partSet, True) + model.do() + aTranslation = objectToFeature(partSet.objectByName("Features", "Translation_1")) + partSet.setCurrentFeature(aTranslation, True) + model.end() diff --git a/src/ModelAPI/Test/TestSelectionInitialization.py b/src/ModelAPI/Test/TestSelectionInitialization.py index d244e9072..649f469fd 100644 --- a/src/ModelAPI/Test/TestSelectionInitialization.py +++ b/src/ModelAPI/Test/TestSelectionInitialization.py @@ -18,6 +18,7 @@ # from salome.shaper import model +from tempfile import TemporaryDirectory from ModelAPI import * model.begin() @@ -29,25 +30,26 @@ Sphere_1 = model.addSphere(Part_1_doc, model.selection("VERTEX", "Point_1"), 10) model.end() # save document in a current folder -aSession = ModelAPI_Session.get() -aFiles = StringList() -aSession.save(".", aFiles) -# close the current document -aSession.closeAll() -# open the saved document -assert(aSession.load(".")) +with TemporaryDirectory() as tmp_dir: + aSession = ModelAPI_Session.get() + aFiles = StringList() + aSession.save(tmp_dir, aFiles) + # close the current document + aSession.closeAll() + # open the saved document + assert(aSession.load(tmp_dir)) -# activate the Part of session -model.begin() -partSet = model.moduleDocument() -assert(partSet.size("Features") == 1) -aPart = objectToFeature(partSet.object("Features", 0)) -aPartResult = modelAPI_ResultPart(aPart.results()[0]) -aPartResult.activate() -aPartDoc = aPartResult.partDoc() -aSession.setActiveDocument(aPartDoc, True) -model.end() + # activate the Part of session + model.begin() + partSet = model.moduleDocument() + assert(partSet.size("Features") == 1) + aPart = objectToFeature(partSet.object("Features", 0)) + aPartResult = modelAPI_ResultPart(aPart.results()[0]) + aPartResult.activate() + aPartDoc = aPartResult.partDoc() + aSession.setActiveDocument(aPartDoc, True) + model.end() -# check the sphere location (it should not be "Origin" - default one) -aSphere = objectToFeature(aPartDoc.objectByName("Features", "Sphere_1")) -assert(aSphere.selection("center_point").namingName() == "Point_1") + # check the sphere location (it should not be "Origin" - default one) + aSphere = objectToFeature(aPartDoc.objectByName("Features", "Sphere_1")) + assert(aSphere.selection("center_point").namingName() == "Point_1")