/usr/include/vtk-5.10/vtkTesting.h is in libvtk5-dev 5.10.1+dfsg-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkTesting.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
=========================================================================*/
// .NAME vtkTesting - a unified VTK regression testing framework
// .SECTION Description
//
// This is a VTK regression testing framework. Looks like this:
//
// vtkTesting* t = vtkTesting::New();
//
// Two options for setting arguments
//
// Option 1:
// for ( cc = 1; cc < argc; cc ++ )
// {
// t->AddArgument(argv[cc]);
// }
//
// Option 2:
// t->AddArgument("-D");
// t->AddArgument(my_data_dir);
// t->AddArgument("-V");
// t->AddArgument(my_valid_image);
//
// ...
//
// Two options of doing testing:
//
// Option 1:
// t->SetRenderWindow(renWin);
// int res = t->RegressionTest(threshold);
//
// Option 2:
// int res = t->RegressionTest(test_image, threshold);
//
// ...
//
// if ( res == vtkTesting::PASSED )
// {
// Test passed
// }
// else
// {
// Test failed
// }
//
#ifndef __vtkTesting_h
#define __vtkTesting_h
#include "vtkObject.h"
#include <vector> // STL Header used for argv
#include <string> // STL Header used for argv
class vtkRenderWindow;
class vtkImageData;
class vtkDataArray;
class vtkDataSet;
class vtkRenderWindowInteractor;
class VTK_RENDERING_EXPORT vtkTesting : public vtkObject
{
public:
static vtkTesting *New();
vtkTypeMacro(vtkTesting,vtkObject);
void PrintSelf(ostream& os, vtkIndent indent);
//BTX
enum ReturnValue {
FAILED = 0,
PASSED = 1,
NOT_RUN = 2,
DO_INTERACTOR = 3
};
static int Test(int argc, char *argv[], vtkRenderWindow *rw, double thresh);
// Description:
// This method is intended to be a comprehensive, one line replacement for
// vtkRegressionTest and for the replay based testing using
// vtkInteractorEventRecorder greatly simplifying API and code bloat. It scans
// the command line specified for the following :
// - If a "--DisableReplay" is specified, it disables the testing replay. This
// is particularly useful in enabling the user to exercise the widgets.
// Typically the widgets are defined by the testing replay, so the user
// misses out on playing around with the widget definition behaviour.
// - If a "--Record" is specified in the command line, it records the
// interactions into a "vtkInteractorEventRecorder.log" file. This is useful
// when creating the playback stream that is plugged into tests.
//
// Typical usage in a test for a VTK widget that needs playback
// testing / recording is :
//
// const char TestFooWidgetTestLog[] = {
// ....
// };
//
// int TestFooWidget( int argc, char *argv[] )
// {
// ...
// return vtkTesting::InteractorEventLoop( argc, argv, iren, TestFooWidgetTestLog );
// }
//
//
// In tests where no playback is exercised, the API is simply
//
// int TestFoo( int argc, char *argv[] )
// {
// ...
// return vtkTesting::InteractorEventLoop( argc, argv, iren );
// }
//
static int InteractorEventLoop( int argc, char *argv[],
vtkRenderWindowInteractor *iren, const char *stream = NULL );
//ETX
// Description:
// Use front buffer for tests. By default use back buffer.
vtkSetClampMacro(FrontBuffer, int, 0, 1);
vtkBooleanMacro(FrontBuffer, int);
vtkGetMacro(FrontBuffer, int);
// Description:
// Perform the test and return result. At the same time the output will be
// written cout
virtual int RegressionTest(double thresh);
virtual int RegressionTest(double thresh,ostream &os);
// Description:
// Compare the image with the valid image.
virtual int RegressionTest(vtkImageData* image, double thresh);
virtual int RegressionTest(vtkImageData* image, double thresh, ostream& os);
// Description:
// Compute the average L2 norm between all point data data arrays
// of types float and double present in the data sets "dsA" and "dsB"
// (this includes instances of vtkPoints) Compare the result of
// each L2 comutation to "tol".
int CompareAverageOfL2Norm(vtkDataSet *pdA, vtkDataSet *pdB, double tol);
// Description:
// Compute the average L2 norm between two data arrays "daA" and "daB"
// and compare against "tol".
int CompareAverageOfL2Norm(vtkDataArray *daA, vtkDataArray *daB, double tol);
// Description:
// Set and get the render window that will be used for regression testing.
virtual void SetRenderWindow(vtkRenderWindow* rw);
vtkGetObjectMacro(RenderWindow, vtkRenderWindow);
// Description:
// Set/Get the name of the valid image file
vtkSetStringMacro(ValidImageFileName);
const char *GetValidImageFileName();
// Description:
// Get the image difference.
vtkGetMacro(ImageDifference, double);
// Description:
// Pass the command line arguments into this class to be processed. Many of
// the Get methods such as GetValidImage and GetBaselineRoot rely on the
// arguments to be passed in prior to retrieving these values. Just call
// AddArgument for each argument that was passed into the command line
void AddArgument(const char *argv);
void AddArguments(int argc,const char **argv);
//BTX
// Description:
// Search for a specific argument by name and return its value
// (assumed to be the next on the command tail). Up to caller
// to delete the returned string.
char *GetArgument(const char *arg);
//ETX
// Description
// This method delete all arguments in vtkTesting, this way you can reuse
// it in a loop where you would have multiple testing.
void CleanArguments();
// Description:
// Get some parameters from the command line arguments, env, or defaults
const char *GetDataRoot();
vtkSetStringMacro(DataRoot);
// Description:
// Get some parameters from the command line arguments, env, or defaults
const char *GetTempDirectory();
vtkSetStringMacro(TempDirectory);
// Description:
// Is a valid image specified on the command line areguments?
int IsValidImageSpecified();
// Description:
// Is the interactive mode specified?
int IsInteractiveModeSpecified();
// Description:
// Is some arbitrary user flag ("-X", "-Z" etc) specified
int IsFlagSpecified(const char *flag);
// Description:
// Number of pixels added as borders to avoid problems with
// window decorations added by some window managers.
vtkSetMacro(BorderOffset, int);
vtkGetMacro(BorderOffset, int);
// Description:
// Get/Set verbosity level. A level of 0 is quiet.
vtkSetMacro(Verbose, int);
vtkGetMacro(Verbose, int);
protected:
vtkTesting();
~vtkTesting();
static char* IncrementFileName(const char* fname, int count);
static int LookForFile(const char* newFileName);
int FrontBuffer;
vtkRenderWindow* RenderWindow;
char* ValidImageFileName;
double ImageDifference;
char *TempDirectory;
int BorderOffset;
int Verbose;
//BTX
std::vector<std::string> Args;
//ETX
char *DataRoot;
double StartWallTime;
double StartCPUTime;
private:
vtkTesting(const vtkTesting&); // Not implemented.
void operator=(const vtkTesting&); // Not implemented.
};
#endif
|