ProteoWizard
ChromatogramList_mz5_Test.cpp
Go to the documentation of this file.
1 //
2 // $Id: ChromatogramList_mz5_Test.cpp 4129 2012-11-20 00:05:37Z chambm $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2008 Spielberg Family Center for Applied Proteomics
8 // Cedars Sinai Medical Center, Los Angeles, California 90048
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 
25 #include "ChromatogramList_mz5.hpp"
26 #include "Serializer_mz5.hpp"
27 #include "examples.hpp"
31 
32 
33 using namespace pwiz::cv;
34 using namespace pwiz::msdata;
35 using namespace pwiz::util;
36 using namespace pwiz::minimxml;
37 
38 
39 ostream* os_ = 0;
40 const char* testFilename = "ChromatogramList_mz5_Test.mz5";
41 
42 
43 void test()
44 {
45  {
46  MSData tiny;
48 
49  MSDataFile::WriteConfig writeConfig;
50  Serializer_mz5 serializer(writeConfig);
51 
53  serializer.write(testFilename, tiny, &ilr);
54 
55  MSData dummy;
56  serializer.read(testFilename, dummy);
57 
58  // so we don't have any dangling references
59  //dummy.instrumentPtrs.push_back(InstrumentPtr(new Instrument("LCQ_Deca")));
61  "pwiz_processing")));
63  "CompassXtract processing")));
64 
66 
67  // check easy functions
68 
69  unit_assert(sl.get());
70  unit_assert(sl->size() == 2);
71  unit_assert(sl->find("tic") == 0);
72  unit_assert(sl->find("sic") == 1);
73 
74  // check tic
75 
76  ChromatogramPtr s = sl->chromatogram(0); // read without binary data
77  unit_assert(s.get());
78  unit_assert(s->id == "tic");
79  unit_assert(s->binaryDataArrayPtrs.empty());
80 
81  unit_assert(sl->chromatogramIdentity(0).index == 0);
82  unit_assert(sl->chromatogramIdentity(0).id == "tic");
83 
84  s = sl->chromatogram(0, true); // read with binary data
85 
86  vector < TimeIntensityPair > pairs;
87  s->getTimeIntensityPairs(pairs);
88  unit_assert(pairs.size() == 15);
89  for (int i = 0; i < 15; i++)
90  unit_assert(pairs[i].time == i && pairs[i].intensity == 15 - i);
91 
92  // check sic
93 
94  s = sl->chromatogram(1, true);
95  unit_assert(s.get());
96  unit_assert(s->id == "sic");
97 
98  unit_assert(sl->chromatogramIdentity(1).index == 1);
99  unit_assert(sl->chromatogramIdentity(1).id == "sic");
100 
101  pairs.clear();
102  s->getTimeIntensityPairs(pairs);
103  unit_assert(pairs.size() == 10);
104  for (int i = 0; i < 10; i++)
105  unit_assert(pairs[i].time == i && pairs[i].intensity == (10 - i));
106 
107  }
108  bfs::remove(testFilename);
109 }
110 
111 int main(int argc, char* argv[])
112 {
113  TEST_PROLOG(argc, argv)
114 
115  try
116  {
117  if (argc > 1 && !strcmp(argv[1], "-v")) os_ = &cout;
118  test();
119  }
120  catch (exception& e)
121  {
122  TEST_FAILED(e.what())
123  }
124  catch (...)
125  {
126  TEST_FAILED("Caught unknown exception.")
127  }
128 
130 }
131