Revision 3a6370bf39d14d68f194f1204ddf42fe2aa329d2 authored by Pierre Guillou on 11 October 2019, 13:16:44 UTC, committed by Pierre Guillou on 13 April 2022, 09:24:25 UTC
1 parent cdaa0c2
vtkSMTesting.cxx
/*=========================================================================
Program: ParaView
Module: vtkSMTesting.cxx
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkSMTesting.h"
#include "vtkImageData.h"
#include "vtkObjectFactory.h"
#include "vtkProcessModule.h"
#include "vtkSMViewProxy.h"
#include "vtkTesting.h"
#include "vtkTrivialProducer.h"
vtkStandardNewMacro(vtkSMTesting);
vtkCxxSetObjectMacro(vtkSMTesting, ViewProxy, vtkSMViewProxy);
//-----------------------------------------------------------------------------
vtkSMTesting::vtkSMTesting()
{
this->ViewProxy = nullptr;
this->Testing = vtkTesting::New();
}
//-----------------------------------------------------------------------------
vtkSMTesting::~vtkSMTesting()
{
this->SetViewProxy(nullptr);
this->Testing->Delete();
}
//-----------------------------------------------------------------------------
void vtkSMTesting::AddArgument(const char* arg)
{
this->Testing->AddArgument(arg);
}
//-----------------------------------------------------------------------------
int vtkSMTesting::RegressionTest(float thresh)
{
int res = vtkTesting::FAILED;
if (this->ViewProxy)
{
vtkImageData* image = this->ViewProxy->CaptureWindow(1);
// We do the local partition id checks to make sure that testing works with
// pvsynchronousbatch. The image comparison are done only on root node.
vtkProcessModule* pm = vtkProcessModule::GetProcessModule();
if (pm->GetPartitionId() == 0)
{
vtkTrivialProducer* producer = vtkTrivialProducer::New();
producer->SetOutput(image);
res = this->Testing->RegressionTest(producer, thresh);
producer->Delete();
}
else
{
res = vtkTesting::PASSED;
}
image->Delete();
}
return res;
}
//-----------------------------------------------------------------------------
void vtkSMTesting::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << "ViewProxy: " << this->ViewProxy << endl;
}

Computing file changes ...