ProteoWizard
BinTest.cpp
Go to the documentation of this file.
1 //
2 // $Id: BinTest.cpp 2051 2010-06-15 18:39:13Z chambm $
3 //
4 //
5 // Original author: Kate Hoff <katherine.hoff@proteowizard.org>
6 //
7 // Copyright 2009 Center for Applied Molecular Medicine
8 // University of Southern California, Los Angeles, CA
9 //
10 // Licensed under the Apache License, Version 2.0 (the "License");
11 // you may not use this file except in compliance with the License.
12 // You may obtain a copy of the License at
13 //
14 // http://www.apache.org/licenses/LICENSE-2.0
15 //
16 // Unless required by applicable law or agreed to in writing, software
17 // distributed under the License is distributed on an "AS IS" BASIS,
18 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 // See the License for the specific language governing permissions and
20 // limitations under the License.
21 //
22 
23 #include <cstring>
24 #include "Bin.hpp"
27 
28 using namespace pwiz::cv;
29 using namespace pwiz::util;
30 
31 ostream* os_ = 0;
32 
33 struct IsInt
34 {
35  IsInt(int n) : _n(n){}
36  bool operator()( boost::shared_ptr<const int> m) { return *m == _n;}
37  int _n;
38 
39 };
40 
41 void test()
42 {
43  if (os_) *os_ << "\n[BinTest.cpp] test() ... \n";
44  pair<double,double> a = make_pair(1.5,2);
45  pair<double,double> b = make_pair(2.5,3);
46  pair<double,double> c = make_pair(3,2.0);
47 
48  int a1 = 1;
49  int b1 = 2;
50  int c1 = 3;
51 
52  vector<pair<pair<double,double>, int> > stuf;
53  stuf.push_back(make_pair(a,a1));
54  stuf.push_back(make_pair(b,b1));
55  stuf.push_back(make_pair(c,c1));
56 
57  Bin<int> bin(stuf, 4, 4);
58 
59  vector<boost::shared_ptr<int> > v;
60  pair<double,double> p(1.6,2);
61  bin.getBinContents(p, v);
62 
63  vector<boost::shared_ptr<int> >::iterator it = v.begin();
64 
65  if (os_)
66  {
67  *os_ << "\ntesting Bin::getBinContents ... found: \n";
68  for(; it != v.end(); ++it)
69  *os_ << **it << endl;
70 
71  }
72 
73  vector<int> truth;
74  truth.push_back(1);
75  truth.push_back(2);
76  truth.push_back(3);
77 
78  vector<boost::shared_ptr<int> >::iterator v_it = v.begin();
79  vector<int>::iterator truth_it = truth.begin();
80  for(; v_it != v.end(); ++v_it, ++truth_it) unit_assert(**v_it == *truth_it);
81 
82 
83  // test getAdjacentBinContents
84  Bin<int> smallBins(stuf,0.5,0.5);
85  vector<boost::shared_ptr<int> > v2;
86  smallBins.getAdjacentBinContents(pair<double,double>(1,2),v2);
87 
88  vector<boost::shared_ptr<int> >::iterator it2 = v2.begin();
89 
90  unit_assert(find_if(v2.begin(),v2.end(),IsInt(1)) != v2.end());
91 
92  if (os_)
93  {
94  *os_ << "\ntesting Bin::getAdjacentBinContents ... found: \n";
95  for(; it2 != v2.end(); ++it2)
96  *os_ << **it2 << endl;
97 
98  }
99 
100  // test update
101 
102  int n = 4;
103  smallBins.update(n, pair<double,double>(1.5,2));
104 
105  vector<boost::shared_ptr<int> > v3;
106  smallBins.getAdjacentBinContents(pair<double,double>(1,2), v3);
107  vector<boost::shared_ptr<int> >::iterator it3 = v3.begin();
108 
109  unit_assert(find_if(v3.begin(),v3.end(),IsInt(4)) != v3.end());
110 
111  if (os_)
112  {
113  *os_ << "\ntesting Bin::update ... found: \n";
114  for(; it3 != v3.end(); ++it3)
115  *os_ << **it3 << endl;
116 
117  }
118 
119 
120  // test erase
121  smallBins.erase(n, pair<double,double>(1.5,2));
122  vector<boost::shared_ptr<int> > v4;
123  smallBins.getAdjacentBinContents(pair<double,double>(1,2), v4);
124  vector<boost::shared_ptr<int> >::iterator it4 = v4.begin();
125 
126  unit_assert(find_if(v4.begin(), v4.end(), IsInt(4)) == v4.end());
127 
128 }
129 
130 int main(int argc, char* argv[])
131 {
132  try
133  {
134  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
135  test();
136 
137  }
138 
139  catch (std::exception& e)
140  {
141  cerr << e.what() << endl;
142  return 1;
143 
144  }
145 
146  catch (...)
147  {
148  cerr << "Caught unknown exception.\n";
149  return 1;
150 
151  }
152 
153  return 0;
154 
155 }