File: itkVTKPolyDataMeshIOTest.cxx

package info (click to toggle)
insighttoolkit5 5.4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 704,592 kB
  • sloc: cpp: 784,579; ansic: 628,724; xml: 44,704; fortran: 34,250; python: 22,934; sh: 4,078; pascal: 2,636; lisp: 2,158; makefile: 460; yacc: 328; asm: 205; perl: 203; lex: 146; tcl: 132; javascript: 98; csh: 81
file content (277 lines) | stat: -rw-r--r-- 11,597 bytes parent folder | download | duplicates (2)
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*=========================================================================
 *
 *  Copyright NumFOCUS
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *         https://www.apache.org/licenses/LICENSE-2.0.txt
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 *=========================================================================*/

#include "itkMeshIOTestHelper.h"
#include "itkVTKPolyDataMeshIO.h"
#include "itkTestingMacros.h"


int
itkVTKPolyDataMeshIOTest(int argc, char * argv[])
{
  if (argc != 16)
  {
    std::cerr << "Missing parameters." << std::endl;
    std::cerr << "Usage: " << itkNameOfTestExecutableMacro(argv)
              << " inputFileName outputFileName notAVTKInputFileName notAVTKOutputFileName useCompression "
                 "updatePoints updatePointData updateCells updateCellData numberOfPoints numberOfPointPixels "
                 "numberOfCells numberOfCellPixels inputIsBinary outputIsBinary"
              << std::endl;
    return EXIT_FAILURE;
  }


  int testStatus = EXIT_SUCCESS;

  auto vtkPolyDataMeshIO = itk::VTKPolyDataMeshIO::New();

  ITK_EXERCISE_BASIC_OBJECT_METHODS(vtkPolyDataMeshIO, VTKPolyDataMeshIO, MeshIOBase);


  // Create a different instance to check the base class methods
  auto vtkMeshIOBaseTest = itk::VTKPolyDataMeshIO::New();
  testStatus = TestBaseClassMethodsMeshIO<itk::VTKPolyDataMeshIO>(vtkMeshIOBaseTest);

  // Test reading exceptions
  std::string inputFileName = "";
  vtkPolyDataMeshIO->SetFileName(inputFileName);
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadMeshInformation());

  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadPoints(nullptr));
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadPointData(nullptr));
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadCells(nullptr));
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadCellData(nullptr));

  inputFileName = argv[3];
  vtkPolyDataMeshIO->SetFileName(inputFileName);
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadMeshInformation());

  ITK_TEST_EXPECT_TRUE(!vtkPolyDataMeshIO->CanReadFile(inputFileName.c_str()));

  inputFileName = "nonExistingFile.vtk";
  ITK_TEST_EXPECT_TRUE(!vtkPolyDataMeshIO->CanReadFile(inputFileName.c_str()));

  inputFileName = argv[1];
  ITK_TEST_EXPECT_TRUE(vtkPolyDataMeshIO->CanReadFile(inputFileName.c_str()));
  vtkPolyDataMeshIO->SetFileName(inputFileName);

  // Test Set/Get methods
  auto useCompression = static_cast<bool>(std::stoi(argv[5]));
  ITK_TEST_SET_GET_BOOLEAN(vtkPolyDataMeshIO, UseCompression, useCompression);

  auto updatePoints = static_cast<bool>(std::stoi(argv[6]));
  ITK_TEST_SET_GET_BOOLEAN(vtkPolyDataMeshIO, UpdatePoints, updatePoints);

  auto updatePointData = static_cast<bool>(std::stoi(argv[7]));
  ITK_TEST_SET_GET_BOOLEAN(vtkPolyDataMeshIO, UpdatePointData, updatePointData);

  auto updateCells = static_cast<bool>(std::stoi(argv[8]));
  ITK_TEST_SET_GET_BOOLEAN(vtkPolyDataMeshIO, UpdateCells, updateCells);

  auto updateCellData = static_cast<bool>(std::stoi(argv[9]));
  ITK_TEST_SET_GET_BOOLEAN(vtkPolyDataMeshIO, UpdateCellData, updateCellData);

  ITK_TEST_EXPECT_TRUE(vtkPolyDataMeshIO->CanReadFile(inputFileName.c_str()));

  // Read the actual data  auto outputIsBinary = static_cast<bool>(std::stoi(argv[16]));
  auto inputIsBinary = static_cast<bool>(std::stoi(argv[14]));
  if (!inputIsBinary)
  {
    vtkPolyDataMeshIO->SetFileType(itk::IOFileEnum::ASCII);
  }
  else
  {
    vtkPolyDataMeshIO->SetFileType(itk::IOFileEnum::BINARY);
  }
  ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->ReadMeshInformation());

  auto numberOfPoints = static_cast<itk::VTKPolyDataMeshIO::SizeValueType>(std::stoi(argv[10]));
  ITK_TEST_EXPECT_EQUAL(numberOfPoints, vtkPolyDataMeshIO->GetNumberOfPoints());

  auto numberOfPointPixels = static_cast<itk::VTKPolyDataMeshIO::SizeValueType>(std::stoi(argv[11]));
  ITK_TEST_EXPECT_EQUAL(numberOfPointPixels, vtkPolyDataMeshIO->GetNumberOfPointPixels());

  auto numberOfCells = static_cast<itk::VTKPolyDataMeshIO::SizeValueType>(std::stoi(argv[12]));
  ITK_TEST_EXPECT_EQUAL(numberOfCells, vtkPolyDataMeshIO->GetNumberOfCells());

  auto numberOfCellPixels = static_cast<itk::VTKPolyDataMeshIO::SizeValueType>(std::stoi(argv[13]));
  ITK_TEST_EXPECT_EQUAL(numberOfCellPixels, vtkPolyDataMeshIO->GetNumberOfCellPixels());


  // Use sufficiently large buffer sizes
  itk::SizeValueType pointBufferSize = 1000;
  itk::SizeValueType pointDataBufferSize = 1000;

  itk::SizeValueType cellBufferSize = 2000;
  itk::SizeValueType cellDataBufferSize = 2000;

  const std::shared_ptr<void> pointBuffer =
    itk::MeshIOTestHelper::AllocateBuffer(vtkPolyDataMeshIO->GetPointComponentType(), pointBufferSize);
  const std::shared_ptr<void> pointDataBuffer =
    itk::MeshIOTestHelper::AllocateBuffer(vtkPolyDataMeshIO->GetPointPixelComponentType(), pointDataBufferSize);
  const std::shared_ptr<void> cellBuffer =
    itk::MeshIOTestHelper::AllocateBuffer(vtkPolyDataMeshIO->GetCellComponentType(), cellBufferSize);
  const std::shared_ptr<void> cellDataBuffer =
    itk::MeshIOTestHelper::AllocateBuffer(vtkPolyDataMeshIO->GetCellPixelComponentType(), cellDataBufferSize);

  auto pointPixelComponentType = vtkPolyDataMeshIO->GetPointPixelComponentType();
  auto cellPixelComponentType = vtkPolyDataMeshIO->GetCellPixelComponentType();

  ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->ReadPoints(pointBuffer.get()));

  if (pointPixelComponentType == itk::IOComponentEnum::UNKNOWNCOMPONENTTYPE)
  {
    ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadPointData(pointDataBuffer.get()));
  }
  else
  {
    ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->ReadPointData(pointDataBuffer.get()));
  }

  ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->ReadCells(cellBuffer.get()));

  if (cellPixelComponentType == itk::IOComponentEnum::UNKNOWNCOMPONENTTYPE)
  {
    ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->ReadCellData(cellDataBuffer.get()));
  }
  else
  {
    ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->ReadCellData(cellDataBuffer.get()));
  }

  // Test writing exceptions
  std::string outputFileName = "";
  vtkPolyDataMeshIO->SetFileName(outputFileName);
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WritePoints(pointBuffer.get()));
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WritePointData(pointDataBuffer.get()));

  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WriteCells(cellBuffer.get()));
  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WriteCellData(cellDataBuffer.get()));

  ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WriteMeshInformation());

  outputFileName = argv[4];
  ITK_TEST_EXPECT_TRUE(!vtkPolyDataMeshIO->CanWriteFile(outputFileName.c_str()));

  outputFileName = argv[2];
  ITK_TEST_EXPECT_TRUE(vtkPolyDataMeshIO->CanWriteFile(outputFileName.c_str()));
  vtkPolyDataMeshIO->SetFileName(outputFileName);

  // Write the actual data
  auto outputIsBinary = static_cast<bool>(std::stoi(argv[15]));
  if (!outputIsBinary)
  {
    vtkPolyDataMeshIO->SetFileType(itk::IOFileEnum::ASCII);
  }
  else
  {
    vtkPolyDataMeshIO->SetFileType(itk::IOFileEnum::BINARY);
  }

  ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->WritePoints(pointBuffer.get()));

  if (pointPixelComponentType == itk::IOComponentEnum::UNKNOWNCOMPONENTTYPE)
  {
    ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WritePointData(pointDataBuffer.get()));
  }
  else
  {
    ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->WritePointData(pointDataBuffer.get()));
  }

  ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->WriteCells(cellBuffer.get()));

  if (cellPixelComponentType == itk::IOComponentEnum::UNKNOWNCOMPONENTTYPE)
  {
    ITK_TRY_EXPECT_EXCEPTION(vtkPolyDataMeshIO->WriteCellData(cellDataBuffer.get()));
  }
  else
  {
    ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->WriteCellData(cellDataBuffer.get()));
  }

  ITK_TRY_EXPECT_NO_EXCEPTION(vtkPolyDataMeshIO->WriteMeshInformation());

  // Not used; empty method body; called for coverage purposes
  vtkPolyDataMeshIO->Write();

  // Read back the written image and check the properties
  auto readWriteVtkPolyDataMeshIO = itk::VTKPolyDataMeshIO::New();

  readWriteVtkPolyDataMeshIO->SetFileName(outputFileName);
  readWriteVtkPolyDataMeshIO->ReadMeshInformation();

  // FIXME
  // For some reason, the point pixel type is different for the rh for fibers.vtk; maybe it does not get written
  // properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetPointPixelType(),
  //                       readWriteVtkPolyDataMeshIO->GetPointPixelType());

  // FIXME
  // For some reason, the cell pixel type is different for the rh for fibers.vtk; maybe it does not get written properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetCellPixelType(), readWriteVtkPolyDataMeshIO->GetCellPixelType());

  // FIXME
  // For some reason, the point pixel component type is different for the rh for fibers.vtk; maybe it does not get
  // written properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetPointPixelComponentType(),
  //                       readWriteVtkPolyDataMeshIO->GetPointPixelComponentType());

  // FIXME
  // For some reason, the cell pixel component type is different for the rh for fibers.vtk; maybe it does not get
  // written properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetCellPixelComponentType(),
  //                       readWriteVtkPolyDataMeshIO->GetCellPixelComponentType());

  // FIXME
  // For some reason, the number of points is different for the rh for sphere.vtk; maybe it does not get written
  // properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetNumberOfPoints(),
  //                       readWriteVtkPolyDataMeshIO->GetNumberOfPoints());

  // FIXME
  // For some reason, the number of cells is different for the rh for sphere.vtk; maybe it does not get written properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetNumberOfCells(), readWriteVtkPolyDataMeshIO->GetNumberOfCells());

  // FIXME
  // For some reason, the number of point pixels is different for the rh for fibers.vtk; maybe it does not get written
  // properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetNumberOfPointPixels(),
  //                       readWriteVtkPolyDataMeshIO->GetNumberOfPointPixels());

  // FIXME
  // For some reason, the number of cell pixels is different for the rh for fibers.vtk; maybe it does not get written
  // properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetNumberOfCellPixels(),
  //                       readWriteVtkPolyDataMeshIO->GetNumberOfCellPixels());

  // FIXME
  // For some reason, the number of point pixel components is different for the rh for fibers.vtk; maybe it does not get
  // written properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetNumberOfPointPixelComponents(),
  //                       readWriteVtkPolyDataMeshIO->GetNumberOfPointPixelComponents());

  // FIXME
  // For some reason, the number of cell pixel components is different for the rh for fibers.vtk; maybe it does not get
  // written properly
  // ITK_TEST_EXPECT_EQUAL(vtkPolyDataMeshIO->GetNumberOfCellPixelComponents(),
  //                      readWriteVtkPolyDataMeshIO->GetNumberOfCellPixelComponents());

  std::cout << "Test finished." << std::endl;
  return testStatus;
}