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
|
/*=========================================================================
Program: Visualization Toolkit
Module: otherStringArray.cxx
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.
=========================================================================*/
#include "vtkDebugLeaks.h"
#include "vtkCharArray.h"
#include "vtkIdTypeArray.h"
#include "vtkStringArray.h"
#include "vtkIdList.h"
#include <sstream>
#define SIZE 1000
int doStringArrayTest(ostream& strm, int size)
{
int errors = 0;
vtkStringArray *ptr = vtkStringArray::New();
vtkStdString *strings = new vtkStdString[SIZE];
for (int i = 0; i < SIZE; ++i)
{
char buf[1024];
sprintf(buf, "string entry %d", i);
strings[i] = vtkStdString(buf);
}
strm << "\tResize(0)...";
ptr->Resize(0);
strm << "OK" << endl;
strm << "\tResize(10)...";
ptr->Resize(10);
strm << "OK" << endl;
strm << "\tResize(5)...";
ptr->Resize(5);
strm << "OK" << endl;
strm << "\tResize(size)...";
ptr->Resize(size);
strm << "OK" << endl;
strm << "\tSetNumberOfValues...";
ptr->SetNumberOfValues(100);
if (ptr->GetNumberOfValues() == 100) strm << "OK" << endl;
else
{
++errors;
strm << "FAILED" << endl;
}
strm << "\tSetVoidArray...";
ptr->SetVoidArray(strings, size, 1);
strm << "OK" << endl;
strm << "\tGetValue...";
vtkStdString value = ptr->GetValue(123);
if (value == "string entry 123")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED. Expected 'string entry 123', got '"
<< value << "'" << endl;
#ifdef DUMP_VALUES
for (int i = 0; i < ptr->GetNumberOfValues(); ++i)
{
strm << "\t\tValue " << i << ": " << ptr->GetValue(i) << endl;
}
#endif
}
strm << "\tSetValue...";
ptr->SetValue(124, "jabberwocky");
if (ptr->GetValue(124) == "jabberwocky")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED" << endl;
}
strm << "\tInsertValue...";
ptr->InsertValue(500, "There and Back Again");
if (ptr->GetValue(500) == "There and Back Again")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED" << endl;
}
strm << "\tInsertNextValue...";
if (ptr->GetValue(ptr->InsertNextValue("3.141592653589")) ==
"3.141592653589")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED" << endl;
}
strm << "\tvtkAbstractArray::GetTuples(vtkIdList)...";
vtkIdList *indices = vtkIdList::New();
indices->InsertNextId(10);
indices->InsertNextId(20);
indices->InsertNextId(314);
vtkStringArray *newValues = vtkStringArray::New();
newValues->SetNumberOfValues(3);
ptr->GetTuples(indices, newValues);
if (newValues->GetValue(0) == "string entry 10" &&
newValues->GetValue(1) == "string entry 20" &&
newValues->GetValue(2) == "string entry 314")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED. Results:" << endl;
strm << "\tExpected: 'string entry 10'\tActual: '"
<< newValues->GetValue(0) << "'" << endl;
strm << "\tExpected: 'string entry 20'\tActual: '"
<< newValues->GetValue(1) << "'" << endl;
strm << "\tExpected: 'string entry 314'\tActual: '"
<< newValues->GetValue(2) << "'" << endl;
}
newValues->Reset();
strm << "\tvtkAbstractArray::GetTuples(vtkIdType, vtkIdType)...";
newValues->SetNumberOfValues(3);
ptr->GetTuples(30, 32, newValues);
if (newValues->GetValue(0) == "string entry 30" &&
newValues->GetValue(1) == "string entry 31" &&
newValues->GetValue(2) == "string entry 32")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED" << endl;
}
strm << "\tvtkAbstractArray::InsertTuple...";
ptr->InsertTuple(150, 2, newValues);
if (ptr->GetValue(150) == "string entry 32")
{
strm << "OK" << endl;
}
else
{
++errors;
strm << "FAILED" << endl;
}
newValues->Delete();
indices->Delete();
strm << "PrintSelf..." << endl;
strm << *ptr;
ptr->Delete();
delete [] strings;
return errors;
}
int otherStringArrayTest(ostream& strm)
{
int errors = 0;
{
strm << "Test StringArray" << endl;
errors += doStringArrayTest(strm, SIZE);
}
return errors;
}
int otherStringArray(int, char *[])
{
return otherStringArrayTest(cerr);
}
|