ProteoWizard
Reader_Thermo_Test.cpp
Go to the documentation of this file.
1 //
2 // $Id: Reader_Thermo_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 "Reader_Thermo.hpp"
29 
30 #ifdef PWIZ_READER_THERMO
31 #include "Reader_Thermo_Detail.hpp"
32 #endif
33 
35 {
36  bool operator() (const string& rawpath) const
37  {
38  return bal::to_lower_copy(BFS_STRING(bfs::path(rawpath).extension())) == ".raw";
39  }
40 };
41 
42 int main(int argc, char* argv[])
43 {
44  TEST_PROLOG(argc, argv)
45 
46  #if defined(PWIZ_READER_THERMO) && !defined(PWIZ_READER_THERMO_TEST_ACCEPT_ONLY)
47  const bool testAcceptOnly = false;
48  #else
49  const bool testAcceptOnly = true;
50  #endif
51 
52  try
53  {
54  #ifdef PWIZ_READER_THERMO
55 
56  using namespace pwiz::msdata;
57  using namespace pwiz::msdata::detail;
58  using namespace pwiz::cv;
59  using namespace pwiz::util;
60 
61  // test that all instrument types are handled by translation functions (skipping the 'Unknown' type)
62  bool allInstrumentTestsPassed = true;
63  for (int i=0; i < (int) InstrumentModelType_Count; ++i)
64  {
65  InstrumentModelType model = (InstrumentModelType) i;
66 
67  try
68  {
70 
71  Component dummySource;
72  vector<InstrumentConfiguration> configurations = createInstrumentConfigurations(dummySource, model);
73 
74  switch (model)
75  {
76  case InstrumentModelType_Tempus_TOF:
77  case InstrumentModelType_Element_2:
78  case InstrumentModelType_Element_XR:
79  case InstrumentModelType_Element_GD:
80  case InstrumentModelType_Delta_Plus_Advantage:
81  case InstrumentModelType_Delta_Plus_XP:
82  case InstrumentModelType_Neptune:
83  case InstrumentModelType_Triton:
84  unit_assert(configurations.empty());
85  break;
86 
87  default:
88  unit_assert(!configurations.empty());
89  break;
90  }
91 
92  // test for ionization types for this instrument
93  vector<IonizationType> ionizationTypes = getIonSourcesForInstrumentModel(model);
94 
95  switch (model)
96  {
97  case InstrumentModelType_Element_XR:
98  case InstrumentModelType_Element_2:
99  case InstrumentModelType_Delta_Plus_Advantage:
100  case InstrumentModelType_Delta_Plus_XP:
101  case InstrumentModelType_Neptune:
102  case InstrumentModelType_Tempus_TOF:
103  case InstrumentModelType_Triton:
104  case InstrumentModelType_MAT253:
105  case InstrumentModelType_MAT900XP:
106  case InstrumentModelType_MAT900XP_Trap:
107  case InstrumentModelType_MAT95XP:
108  case InstrumentModelType_MAT95XP_Trap:
109  case InstrumentModelType_Surveyor_PDA:
110  case InstrumentModelType_Accela_PDA:
111  unit_assert(ionizationTypes.empty());
112  break;
113 
114  default:
115  unit_assert(!ionizationTypes.empty());
116  break;
117  }
118 
119  // test for mass analyzer types for this instrument
120  vector<MassAnalyzerType> massAnalyzerTypes = getMassAnalyzersForInstrumentModel(model);
121 
122  switch (model)
123  {
124  case InstrumentModelType_Element_XR:
125  case InstrumentModelType_Element_2:
126  case InstrumentModelType_Element_GD:
127  case InstrumentModelType_Delta_Plus_Advantage:
128  case InstrumentModelType_Delta_Plus_XP:
129  case InstrumentModelType_Neptune:
130  case InstrumentModelType_Triton:
131  case InstrumentModelType_Surveyor_PDA:
132  case InstrumentModelType_Accela_PDA:
133  unit_assert(massAnalyzerTypes.empty());
134  break;
135 
136  default:
137  unit_assert(!massAnalyzerTypes.empty());
138  break;
139  }
140 
141  // test for detector types for this instrument
142  vector<DetectorType> detectorTypes = getDetectorsForInstrumentModel(model);
143 
144  switch (model)
145  {
146  case InstrumentModelType_Element_GD:
147  case InstrumentModelType_Element_XR:
148  case InstrumentModelType_Element_2:
149  case InstrumentModelType_Delta_Plus_Advantage:
150  case InstrumentModelType_Delta_Plus_XP:
151  case InstrumentModelType_Neptune:
152  case InstrumentModelType_Tempus_TOF:
153  case InstrumentModelType_Triton:
154  case InstrumentModelType_MAT253:
155  case InstrumentModelType_MAT900XP:
156  case InstrumentModelType_MAT900XP_Trap:
157  case InstrumentModelType_MAT95XP:
158  case InstrumentModelType_MAT95XP_Trap:
159  unit_assert(detectorTypes.empty());
160  break;
161 
162  default:
163  unit_assert(!detectorTypes.empty());
164  break;
165  }
166 
167  // test for translation of scan filter mass analyzer type to real mass analyzer type
168  BOOST_FOREACH(MassAnalyzerType realType, massAnalyzerTypes)
169  {
170  bool hasCorrespondingScanFilterType = false;
171  for (int j=0; j < (int) ScanFilterMassAnalyzerType_Count; ++j)
172  if (convertScanFilterMassAnalyzer((ScanFilterMassAnalyzerType) j, model) == realType)
173  hasCorrespondingScanFilterType = true;
174  unit_assert(hasCorrespondingScanFilterType);
175  }
176  }
177  catch (runtime_error& e)
178  {
179  cerr << "Unit test failed for instrument model " << lexical_cast<string>(model) << ":\n" << e.what() << endl;
180  allInstrumentTestsPassed = false;
181  }
182  }
183 
184  unit_assert(allInstrumentTestsPassed);
185  #endif
186 
187  pwiz::util::testReader(pwiz::msdata::Reader_Thermo(), testArgs, testAcceptOnly, IsRawFile());
188  }
189  catch (exception& e)
190  {
191  TEST_FAILED(e.what())
192  }
193  catch (...)
194  {
195  TEST_FAILED("Caught unknown exception.")
196  }
197 
199 }