ProteoWizard
automation_vector_test.cpp
Go to the documentation of this file.
1 //
2 // $Id: automation_vector_test.cpp 4129 2012-11-20 00:05:37Z chambm $
3 //
4 //
5 // Original author: Matt Chambers <matt.chambers .@. vanderbilt.edu>
6 //
7 // Copyright 2009 Vanderbilt University - Nashville, TN 37232
8 //
9 // Licensed under the Apache License, Version 2.0 (the "License");
10 // you may not use this file except in compliance with the License.
11 // You may obtain a copy of the License at
12 //
13 // http://www.apache.org/licenses/LICENSE-2.0
14 //
15 // Unless required by applicable law or agreed to in writing, software
16 // distributed under the License is distributed on an "AS IS" BASIS,
17 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 // See the License for the specific language governing permissions and
19 // limitations under the License.
20 //
21 
22 
23 #include "Std.hpp"
24 #include "automation_vector.h"
26 
27 using namespace pwiz::util;
28 
29 
30 ostream* os_ = 0;
31 
32 
33 template<typename T> T defaultValue() {return numeric_limits<T>::max();}
34 template<> BSTR defaultValue() {return ::SysAllocString(L"abc");}
35 
36 template<typename T> bool equals(const T& lhs, const T& rhs) {return lhs == rhs;}
37 template<> bool equals(const BSTR& lhs, const BSTR& rhs) {return !strcmp((const char*)lhs, (const char*)rhs);}
38 
39 template<typename T> T& assign(T& lhs, const T& rhs) {return lhs = rhs;}
40 template<> BSTR& assign(BSTR& lhs, const BSTR& rhs) {lhs = ::SysAllocString((const OLECHAR*)rhs); return lhs;}
41 
42 
43 template<typename T>
45 {
46  typedef automation_vector<T> TestVector;
47  T testValue(defaultValue<T>());
48 
49  // test std::vector-ish constructors and accessor methods
50  {
51  TestVector v;
52  unit_assert(v.empty());
53  unit_assert(v.size() == 0);
54 
55  v.resize(10);
56  unit_assert(!v.empty());
57  unit_assert(v.size() == 10);
58 
59  v.clear();
60  unit_assert(v.empty());
61  unit_assert(v.size() == 0);
62 
63  v.resize(1000000, testValue);
64  unit_assert(!v.empty());
65  unit_assert(v.size() == 1000000);
66  }
67 
68  // test values returned by reference
69  {
70  TestVector v(10);
71  unit_assert(!v.empty());
72  unit_assert(v.size() == 10);
73 
74  for (size_t i=0; i < v.size(); ++i)
75  {
76  assign(v[i], testValue);
77  unit_assert(equals(v[i], testValue));
78  }
79 
80  // test out_of_range exception
81  unit_assert_throws(v.at(v.size()), std::out_of_range);
82  }
83 
84  // test iterators
85  {
86  TestVector v(10, testValue);
87  unit_assert(!v.empty());
88  unit_assert(v.size() == 10);
89  unit_assert(equals(v.front(), testValue));
90  unit_assert(equals(v.back(), testValue));
91  unit_assert(equals(*v.begin(), v.front()));
92  unit_assert(equals(*v.rbegin(), v.back()));
93 
94  for (size_t i=0; i < v.size(); ++i)
95  {
96  unit_assert(equals(v[i], testValue));
97  unit_assert(equals(v.at(i), testValue));
98  }
99 
100  for (TestVector::iterator itr = v.begin(); itr != v.end(); ++itr)
101  unit_assert(equals(*itr, testValue));
102 
103  for (TestVector::const_iterator itr = v.begin(); itr != v.end(); ++itr)
104  unit_assert(equals(*itr, testValue));
105 
106  for (TestVector::reverse_iterator itr = v.rbegin(); itr != v.rend(); ++itr)
107  unit_assert(equals(*itr, testValue));
108 
109  for (TestVector::const_reverse_iterator itr = v.rbegin(); itr != v.rend(); ++itr)
110  unit_assert(equals(*itr, testValue));
111  }
112 
113  // test transfer of ownership from automation_vector to and from VARIANT
114  VARIANT variant;
115  ::VariantInit(&variant);
116  {
117  TestVector v(10, testValue);
118  v.detach(variant); // swap with variant
119  unit_assert(v.empty());
120  unit_assert(variant.vt & VT_ARRAY);
121  unit_assert(variant.parray != NULL);
122  unit_assert(variant.parray->cLocks == 0); // lock count
123  unit_assert(variant.parray->rgsabound->cElements == 10); // number of elements
124 
125  TestVector v2(variant, TestVector::COPY);
126  unit_assert(v2.size() == 10);
127  unit_assert(variant.parray != NULL);
128  unit_assert(variant.parray->cLocks == 0); // lock count
129  unit_assert(variant.parray->rgsabound->cElements == 10); // number of elements
130  for (size_t i=0; i < v2.size(); ++i)
131  unit_assert(equals(v2[i], testValue));
132  }
133 
134  {
135  TestVector v(variant, TestVector::MOVE); // swap with variant
136  unit_assert(v.size() == 10);
137  for (size_t i=0; i < v.size(); ++i)
138  unit_assert(equals(v[i], testValue));
139  ::VariantClear(&variant);
140  v.detach(variant); // swap with variant
141  unit_assert(v.empty());
142 
143  TestVector v2(variant, TestVector::COPY);
144  for (size_t i=0; i < v2.size(); ++i)
145  unit_assert(equals(v2[i], testValue));
146  }
147 
148  {
149  TestVector v;
150  v.attach(variant); // swap with variant
151  ::VariantClear(&variant);
152  unit_assert(v.size() == 10);
153  for (size_t i=0; i < v.size(); ++i)
154  unit_assert(equals(v[i], testValue));
155  v.detach(variant); // swap with variant
156  unit_assert(v.empty());
157 
158  TestVector v2(variant, TestVector::COPY);
159  for (size_t i=0; i < v2.size(); ++i)
160  unit_assert(equals(v2[i], testValue));
161  }
162 }
163 
164 
165 int main(int argc, char* argv[])
166 {
167  TEST_PROLOG(argc, argv)
168 
169  try
170  {
171  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
172  if (os_) *os_ << "automation_vector_test\n";
173  testInterface<BSTR>();
174  testInterface<signed char>();
175  testInterface<signed short>();
176  testInterface<signed int>();
177  testInterface<signed long>();
178  testInterface<unsigned char>();
179  testInterface<unsigned short>();
180  testInterface<unsigned int>();
181  testInterface<unsigned long>();
182  testInterface<float>();
183  testInterface<double>();
184  }
185  catch (exception& e)
186  {
187  TEST_FAILED(e.what())
188  }
189  catch (...)
190  {
191  TEST_FAILED("Caught unknown exception.")
192  }
193 
195 }