ProteoWizard
Functions | Variables
cvtest.cpp File Reference
#include "pwiz/utility/misc/unit.hpp"
#include "cv.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include "boost/thread/thread.hpp"
#include "boost/thread/barrier.hpp"
#include <cstring>

Go to the source code of this file.

Functions

void test ()
void testIsA ()
void testOtherRelations ()
void testSynonyms ()
void testIDTranslation ()
void testPropertyValues ()
void testThreadSafetyWorker (boost::barrier *testBarrier)
void testThreadSafety (const int &testThreadCount)
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

void test ( )
void testIsA ( )
void testOtherRelations ( )

Definition at line 82 of file cvtest.cpp.

References pwiz::cv::cvTermInfo(), MS______KR_____P_, MS_accuracy, MS_m_z, MS_Trypsin, pwiz::cv::CVTermInfo::otherRelations, unit_assert, and UO_parts_per_million.

Referenced by testThreadSafetyWorker().

{
unit_assert(info.otherRelations.size() == 2);
unit_assert(info.otherRelations.begin()->first == "has_units");
unit_assert(info.otherRelations.begin()->second == MS_m_z);
unit_assert(info.otherRelations.rbegin()->first == "has_units");
unit_assert(info.otherRelations.rbegin()->second == UO_parts_per_million);
const CVTermInfo& info2 = cvTermInfo(MS_Trypsin);
unit_assert(info2.otherRelations.size() == 1);
unit_assert(info2.otherRelations.begin()->first == "has_regexp");
unit_assert(info2.otherRelations.begin()->second == MS______KR_____P_);
}
void testSynonyms ( )
void testIDTranslation ( )

Definition at line 113 of file cvtest.cpp.

References CVID_Unknown, pwiz::cv::cvTermInfo(), MS_B, MS_peak_intensity, unit_assert, and UO_information_unit.

Referenced by testThreadSafetyWorker().

{
unit_assert(cvTermInfo("MS:1000025").cvid == MS_B);
unit_assert(cvTermInfo("MS:1000042").cvid == MS_peak_intensity);
unit_assert(cvTermInfo("UO:0000231").cvid == UO_information_unit);
unit_assert(cvTermInfo("XX:0000231").cvid == CVID_Unknown);
}
void testPropertyValues ( )

Definition at line 125 of file cvtest.cpp.

References pwiz::cv::cvTermInfo(), pwiz::cv::CVTermInfo::propertyValues, UNIMOD_Phospho, and unit_assert_operator_equal.

Referenced by testThreadSafetyWorker().

{
unit_assert_operator_equal(1, phospho.propertyValues.count("delta_composition"));
unit_assert_operator_equal("H O(3) P", phospho.propertyValues.find("delta_composition")->second);
unit_assert_operator_equal(2, phospho.propertyValues.count("spec_1_site"));
unit_assert_operator_equal("T", phospho.propertyValues.equal_range("spec_1_site").first->second);
unit_assert_operator_equal("S", (--phospho.propertyValues.equal_range("spec_1_site").second)->second);
unit_assert_operator_equal(1, phospho.propertyValues.count("spec_2_site"));
unit_assert_operator_equal("Y", phospho.propertyValues.find("spec_2_site")->second);
}
void testThreadSafetyWorker ( boost::barrier *  testBarrier)

Definition at line 141 of file cvtest.cpp.

References e(), test(), testIDTranslation(), testIsA(), testOtherRelations(), testPropertyValues(), and testSynonyms().

{
testBarrier->wait(); // wait until all threads have started
try
{
test();
}
catch (exception& e)
{
cerr << "Exception in worker thread: " << e.what() << endl;
}
catch (...)
{
cerr << "Unhandled exception in worker thread." << endl;
}
}
void testThreadSafety ( const int &  testThreadCount)

Definition at line 164 of file cvtest.cpp.

References testThreadSafetyWorker().

{
boost::barrier testBarrier(testThreadCount);
boost::thread_group testThreadGroup;
for (int i=0; i < testThreadCount; ++i)
testThreadGroup.add_thread(new boost::thread(&testThreadSafetyWorker, &testBarrier));
testThreadGroup.join_all();
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 174 of file cvtest.cpp.

References e(), os_, TEST_EPILOG, TEST_FAILED, TEST_PROLOG, and testThreadSafety().

{
TEST_PROLOG(argc, argv)
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
try
{
//testThreadSafety(1); // does not test thread-safety of singleton initialization
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 36 of file cvtest.cpp.