ProteoWizard
Serializer_mzML_Test.cpp
Go to the documentation of this file.
1 //
2 // $Id: Serializer_mzML_Test.cpp 4129 2012-11-20 00:05:37Z chambm $
3 //
4 //
5 // Original author: Darren Kessner <darren@proteowizard.org>
6 //
7 // Copyright 2007 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 
24 #include "Serializer_mzML.hpp"
25 #include "Diff.hpp"
26 #include "References.hpp"
27 #include "examples.hpp"
29 #include "boost/iostreams/positioning.hpp"
31 #include <cstring>
32 
33 
34 using namespace pwiz::util;
35 using namespace pwiz::cv;
36 using namespace pwiz::msdata;
37 
38 
39 ostream* os_ = 0;
40 
41 
42 void testWriteRead(const MSData& msd, const Serializer_mzML::Config& config)
43 {
44  if (os_) *os_ << "testWriteRead() " << config << endl;
45 
46  Serializer_mzML mzmlSerializer(config);
47 
48  ostringstream oss;
49  mzmlSerializer.write(oss, msd);
50 
51  if (os_) *os_ << "oss:\n" << oss.str() << endl;
52 
53  shared_ptr<istringstream> iss(new istringstream(oss.str()));
54  MSData msd2;
55  mzmlSerializer.read(iss, msd2);
56 
57  References::resolve(msd2);
58 
59  Diff<MSData, DiffConfig> diff(msd, msd2);
60  if (os_ && diff) *os_ << diff << endl;
61  unit_assert(!diff);
62 }
63 
64 
66 {
67  MSData msd;
69 
71  unit_assert(config.binaryDataEncoderConfig.precision == BinaryDataEncoder::Precision_64);
72  testWriteRead(msd, config);
73 
74  config.binaryDataEncoderConfig.precision = BinaryDataEncoder::Precision_32;
75  testWriteRead(msd, config);
76 
77  config.indexed = false;
78  testWriteRead(msd, config);
79 
80  // TODO: test with compression
81 }
82 
83 
84 int main(int argc, char* argv[])
85 {
86  TEST_PROLOG(argc, argv)
87 
88  try
89  {
90  if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
91  testWriteRead();
92  }
93  catch (exception& e)
94  {
95  TEST_FAILED(e.what())
96  }
97  catch (...)
98  {
99  TEST_FAILED("Caught unknown exception.")
100  }
101 
103 }
104