X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPlugins%2FMEDReader%2FTest%2FtestMEDReader2.py;h=78d8f819d27e9f2bf5d79378bb1eb6a0bab3a496;hb=b705d58ad8589dde0c4d7fc673f1fb723c3f2ea5;hp=bc3e24c51ecfdeba0fd0b2ed1016a693d1c9e449;hpb=f97aa0a72a48a5411faa8d0defd3cf4b54f4c305;p=modules%2Fparavis.git diff --git a/src/Plugins/MEDReader/Test/testMEDReader2.py b/src/Plugins/MEDReader/Test/testMEDReader2.py index bc3e24c5..78d8f819 100644 --- a/src/Plugins/MEDReader/Test/testMEDReader2.py +++ b/src/Plugins/MEDReader/Test/testMEDReader2.py @@ -1,5 +1,5 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2007-2014 CEA/DEN, EDF R&D +# Copyright (C) 2007-2015 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -57,16 +57,13 @@ f1ts.write(fname,0) from paraview.simple import * - - testMEDReader1=MEDReader(FileName=fname) testMEDReader1.AllArrays=['TS0/mesh/ComSup0/ACellField@@][@@P0'] testMEDReader2=MEDReader(FileName=fname) testMEDReader2.AllArrays=['TS0/mesh/ComSup1/mesh@@][@@P0'] GroupDatasets1=GroupDatasets(Input=[testMEDReader1,testMEDReader2]) -Clip1 = Clip(ClipType="Plane") -Clip1.Input=GroupDatasets1 +Clip1 = Clip(ClipType="Plane",Input=GroupDatasets1) Clip1.Scalars=['FamilyIdCell'] Clip1.ClipType.Origin=[3.0, 3.0, 3.0] Clip1.InsideOut=1 @@ -82,9 +79,8 @@ DataRepresentation4.ScaleFactor = 0.6000000000000001 DataRepresentation4.Visibility = 1 DataRepresentation4.Representation = 'Wireframe' -ExtractBlock1 = ExtractBlock() +ExtractBlock1 = ExtractBlock(Input=Clip1) ExtractBlock1.BlockIndices=[1, 2] -ExtractBlock1.Input=Clip1 DataRepresentation5 = Show() DataRepresentation5.EdgeColor = [0.0, 0.0, 0.5000076295109483] @@ -94,9 +90,8 @@ a2_ACellField_PVLookupTable=GetLookupTableForArray( "ACellField", 2, RGBPoints=[ a2_ACellField_PiecewiseFunction=CreatePiecewiseFunction( Points=[0.0, 0.0, 0.5, 0.0, 1.0, 1.0, 0.5, 0.0] ) a2_ACellField_PVLookupTable.ScalarOpacityFunction = a2_ACellField_PiecewiseFunction DataRepresentation5.ScalarOpacityFunction = a2_ACellField_PiecewiseFunction -DataRepresentation5.ColorArrayName = 'ACellField' DataRepresentation5.LookupTable = a2_ACellField_PVLookupTable -DataRepresentation5.ColorAttributeType = 'CELL_DATA' +DataRepresentation5.ColorArrayName = ("CELLS", "ACellField") RenderView1 = GetRenderView() RenderView1.CenterOfRotation = [3.0, 3.0, 3.0] @@ -106,6 +101,22 @@ RenderView1.CameraClippingRange = [0.026023957813772633, 26.023957813772633] RenderView1.CameraFocalPoint = [2.9999999999999996, 2.9999999999999987, 2.9999999999999982] RenderView1.ViewSize =[300,300] -WriteImage(outImgName) - - +Render() + +#WriteImage(outImgName) + +# compare with baseline image +import os +import sys +try: + baselineIndex = sys.argv.index('-B')+1 + baselinePath = sys.argv[baselineIndex] +except: + print "Could not get baseline directory. Test failed." + exit(1) +baseline_file = os.path.join(baselinePath, "testMEDReader2.png") +import vtk.test.Testing +vtk.test.Testing.VTK_TEMP_DIR = vtk.util.misc.vtkGetTempDir() +vtk.test.Testing.compareImage(GetActiveView().GetRenderWindow(), baseline_file, + threshold=25) +vtk.test.Testing.interact()