Salome HOME
Pipe validator fix
[modules/shaper.git] / src / ExchangePlugin / Test / TestExport.py
index 80e46dedce9b50e86f5c158ff2b60942a0a4a02e..6836c5fe4ca78107f993a7040d4bf62fb4359bb3 100644 (file)
@@ -32,30 +32,30 @@ def removeFile(theFileName):
 #=========================================================================
 def testExport(theType, theFormat, theFile, theVolume, theDelta):
     # Import a reference part 
-    aSession.startOperation()
+    aSession.startOperation("Add part")
     aPartFeature = aSession.moduleDocument().addFeature("Part")
     aSession.finishOperation()
     aPart = aSession.activeDocument()
     
-    aSession.startOperation()
+    aSession.startOperation("Import screw")
     anImportFeature = aPart.addFeature("Import")
-    anImportFeature.string("import_file_selector").setValue("Data/screw.step")
+    anImportFeature.string("file_path").setValue("Data/screw.step")
     anImportFeature.execute()
     aSession.finishOperation()
     
     removeFile(theFile)
     # Export a part
-    aSession.startOperation()
+    aSession.startOperation("Export part")
     aFeatureKind = "Export"
     anExportFeature = aPart.addFeature(aFeatureKind)
     assert anExportFeature, "{0}: Can not create a feature {1}".format(theType, aFeatureKind)
     
-    aFormatAttrName = "export_file_format"
+    aFormatAttrName = "file_format"
     aFormatAttr = anExportFeature.string(aFormatAttrName)
     assert aFormatAttr, "{0}: Can not receive string field {1}".format(theType, aFormatAttrName)
     aFormatAttr.setValue(theFormat)
     
-    aFileAttrName = "export_file_selector"
+    aFileAttrName = "file_path"
     aFileAttr = anExportFeature.string(aFileAttrName)
     assert aFileAttr, "{0}: Can not receive string field {1}".format(theType, aFileAttrName)
     aFileAttr.setValue(theFile)