ProteoWizard
Serializer_protXML_Test.cpp
Go to the documentation of this file.
1 // TODO this is just a copy of the pepXML work, not yet populated for protXML
2 //
3 // $Id: Serializer_protXML_Test.cpp 4129 2012-11-20 00:05:37Z chambm $
4 //
5 // Original author: Brian Pratt <brian.pratt .@. insilicos.com>
6 // after Serializer_pepXML_Test by Matt Chambers <matt.chambers .@. vanderbilt.edu>
7 //
8 // Copyright 2012 Spielberg Family Center for Applied Proteomics
9 // University of Southern California, Los Angeles, California 90033
10 //
11 //
12 // Licensed under the Apache License, Version 2.0 (the "License");
13 // you may not use this file except in compliance with the License.
14 // You may obtain a copy of the License at
15 //
16 // http://www.apache.org/licenses/LICENSE-2.0
17 //
18 // Unless required by applicable law or agreed to in writing, software
19 // distributed under the License is distributed on an "AS IS" BASIS,
20 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 // See the License for the specific language governing permissions and
22 // limitations under the License.
23 //
28 #include "Serializer_protXML.hpp"
29 #include "Diff.hpp"
30 #include "References.hpp"
31 #include "examples.hpp"
36 #include "TextWriter.hpp"
37 #include "boost/range/adaptor/transformed.hpp"
38 #include "boost/range/algorithm/max_element.hpp"
39 #include "boost/range/algorithm/min_element.hpp"
40 #include <cstring>
41 
42 
43 using namespace pwiz::identdata;
44 using namespace pwiz::identdata::examples;
45 using namespace pwiz::util;
46 namespace proteome = pwiz::proteome;
47 
48 ostream* os_ = 0;
49 
50 void testSerialize(const string &example_data_dir)
51 {
52  DefaultReaderList readers;
53  Reader::Config readerConfig;
54  DiffConfig diffconfig;
55  diffconfig.ignoreVersions = true;
56 
57  {
58  // verify that loading protXML with reachable pepXML source files gives more
59  // (well, different) data than pepXML alone
60  IdentData mzid0,mzid1;
61  readers.read(example_data_dir+"/example.pep.xml", mzid0, readerConfig);
62  readers.read(example_data_dir+"/example.prot.xml", mzid1, readerConfig);
63  Diff<IdentData, DiffConfig> diff0(diffconfig);
64  diff0(mzid0, mzid1);
65  unit_assert(diff0);
66  }
67 
68  {
69  // verify that adding protxml to pepXML is equivalent to loading protXML with reachable
70  // pepXML source files
71  IdentData mzid0,mzid1;
72  readers.read(example_data_dir+"/example.pep.xml", mzid0, readerConfig);
73  readers.read(example_data_dir+"/example.prot.xml", mzid0, readerConfig);
74  readers.read(example_data_dir+"/example.prot.xml", mzid1, readerConfig);
75  Diff<IdentData, DiffConfig> diff1(diffconfig);
76  diff1(mzid0, mzid1);
77  if (os_ && diff1) *os_ << diff1 << endl;
78  unit_assert(!diff1);
79  }
80 
81  {
82  // verify that loading protXML is the same as loading a known-good mzIdentML file
83  IdentData mzid0,mzid1;
84  readers.read(example_data_dir+"/example.prot.xml", mzid0, readerConfig);
85  readers.read(example_data_dir+"/example.prot.mzid", mzid1, readerConfig);
86  Diff<IdentData, DiffConfig> diff2(diffconfig);
87  diff2(mzid0, mzid1);
88  if (os_ && diff2) *os_ << diff2 << endl;
89  else if (diff2) cout << diff2 << endl;
90  unit_assert(!diff2);
91  }
92 }
93 
94 
95 int main(int argc, char** argv)
96 {
97  TEST_PROLOG(argc, argv)
98 
99  try
100  {
101  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
102  std::string srcparent(argv[0]);
103  size_t pos = srcparent.find("build");
104 
105  if (pos == std::string::npos) {
106  srcparent = __FILE__; // nonstandard build, maybe? try using source file name
107  // something like \ProteoWizard\pwiz\pwiz\data\identdata\Serializer_ProtXML_Test.cpp
108  pos = srcparent.rfind("pwiz");
109  }
110  srcparent.resize(pos);
111  string example_data_dir = srcparent + "example_data";
112  testSerialize(example_data_dir);
113  }
114  catch (exception& e)
115  {
116  TEST_FAILED(e.what())
117  }
118  catch (...)
119  {
120  TEST_FAILED("Caught unknown exception.")
121  }
122 
124 }