ProteoWizard
Classes | Functions | Variables
MSDataCacheTest.cpp File Reference
#include "MSDataCache.hpp"
#include "pwiz/data/msdata/MSDataFile.hpp"
#include "pwiz/data/msdata/examples.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include <cstring>

Go to the source code of this file.

Classes

struct  EvenRequester

Functions

void testMetadata (MSDataCache &cache)
void testDefault ()
void printCache (ostream &os, const MSDataCache &cache)
void testMRU ()
void testUpdateRequest ()
void testAutomaticUpdate ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0
const double epsilon_ = 1e-6

Function Documentation

void testMetadata ( MSDataCache cache)

Definition at line 41 of file MSDataCacheTest.cpp.

References epsilon_, MS_QIT, pwiz::chemistry::Ion::mz(), os_, unit_assert, and unit_assert_equal.

Referenced by testDefault().

{
if (os_) *os_ << "testMetadata()\n";
if (os_) *os_ << "spectrumCount: " << cache.size() << endl;
unit_assert(cache.size() == 5);
unit_assert(cache[0].index == 0);
unit_assert(cache[0].id == "scan=19");
unit_assert(cache[0].scanNumber == 19); // TODO: change to nativeID
unit_assert(cache[0].massAnalyzerType == MS_QIT);
unit_assert(cache[0].msLevel == 1);
unit_assert_equal(cache[0].retentionTime, 353.43, epsilon_);
unit_assert_equal(cache[0].mzLow, 400.39, epsilon_);
unit_assert_equal(cache[0].mzHigh, 1795.56, epsilon_);
unit_assert(cache[0].precursors.empty());
unit_assert(cache[1].index == 1);
unit_assert(cache[1].id == "scan=20");
unit_assert(cache[1].scanNumber == 20); // TODO: change to nativeID
unit_assert(cache[1].massAnalyzerType == MS_QIT);
unit_assert(cache[1].msLevel == 2);
unit_assert_equal(cache[1].retentionTime, 359.43, epsilon_);
unit_assert_equal(cache[1].mzLow, 320.39, epsilon_);
unit_assert_equal(cache[1].mzHigh, 1003.56, epsilon_);
unit_assert(cache[1].precursors.size() == 1);
unit_assert(cache[1].precursors[0].index == 0);
unit_assert_equal(cache[1].precursors[0].mz, 445.34, epsilon_);
unit_assert_equal(cache[1].precursors[0].intensity, 120053, epsilon_);
unit_assert(cache[1].precursors[0].charge == 2);
if (os_) *os_ << endl;
}
void testDefault ( )

Definition at line 76 of file MSDataCacheTest.cpp.

References pwiz::identdata::examples::initializeTiny(), pwiz::analysis::MSDataCache::open(), pwiz::msdata::MSData::run, pwiz::msdata::Run::spectrumListPtr, testMetadata(), unit_assert, and pwiz::analysis::MSDataCache::update().

Referenced by main().

{
MSData tiny;
MSDataCache cache;
cache.open(tiny);
cache.update(tiny, *tiny.run.spectrumListPtr->spectrum(0));
unit_assert(!cache[0].data.empty());
unit_assert(cache[1].data.empty());
cache.update(tiny, *tiny.run.spectrumListPtr->spectrum(1));
unit_assert(cache[0].data.empty());
unit_assert(!cache[1].data.empty());
testMetadata(cache);
}
void printCache ( ostream &  os,
const MSDataCache cache 
)

Definition at line 97 of file MSDataCacheTest.cpp.

Referenced by testMRU().

{
os << "cached binary data:\n";
for (vector<SpectrumInfo>::const_iterator it=cache.begin(); it!=cache.end(); ++it)
{
os << it->index << " "
<< it->data.size() << "/"
<< it->data.capacity() << endl;
}
os << endl;
}
void testMRU ( )

Definition at line 110 of file MSDataCacheTest.cpp.

References pwiz::analysis::MSDataCache::Config::binaryDataCacheSize, boost::lexical_cast(), MS_number_of_counts, pwiz::analysis::MSDataCache::open(), os_, printCache(), pwiz::msdata::MSData::run, pwiz::msdata::Run::spectrumListPtr, unit_assert, and pwiz::analysis::MSDataCache::update().

Referenced by main().

{
if (os_) *os_ << "testMRU()\n";
vector<MZIntensityPair> pairs(100);
for (size_t i=0; i<10; i++)
{
SpectrumPtr spectrum(new Spectrum);
spectrum->setMZIntensityPairs(pairs, MS_number_of_counts);
spectrum->index = i;
spectrum->id = "scan=" + lexical_cast<string>(i);
sl->spectra.push_back(spectrum);
}
MSData msd;
msd.run.spectrumListPtr = sl;
config.binaryDataCacheSize = 3;
MSDataCache cache(config);
cache.open(msd);
if (os_) *os_ << "update: 0 1 2\n";
cache.update(msd, *sl->spectrum(0, true));
cache.update(msd, *sl->spectrum(1, true));
cache.update(msd, *sl->spectrum(2, true));
if (os_) printCache(*os_, cache); // mru: 2 1 0
unit_assert(cache[0].data.size() == 100);
unit_assert(cache[1].data.size() == 100);
unit_assert(cache[2].data.size() == 100);
unit_assert(cache[3].data.size() == 0);
if (os_) *os_ << "update: 3\n";
cache.update(msd, *sl->spectrum(3, true));
if (os_) printCache(*os_, cache); // mru: 3 2 1
unit_assert(cache[0].data.capacity() == 0);
unit_assert(cache[1].data.size() == 100);
unit_assert(cache[2].data.size() == 100);
unit_assert(cache[3].data.size() == 100);
if (os_) *os_ << "update: 1\n";
cache.update(msd, *sl->spectrum(1, true));
if (os_) printCache(*os_, cache); // mru: 1 3 2
unit_assert(cache[0].data.capacity() == 0);
unit_assert(cache[1].data.size() == 100);
unit_assert(cache[2].data.size() == 100);
unit_assert(cache[3].data.size() == 100);
if (os_) *os_ << "update: 4\n";
cache.update(msd, *sl->spectrum(4, true));
if (os_) printCache(*os_, cache); // mru: 4 1 3
unit_assert(cache[0].data.capacity() == 0);
unit_assert(cache[1].data.size() == 100);
unit_assert(cache[2].data.capacity() == 0);
unit_assert(cache[3].data.size() == 100);
unit_assert(cache[3].data.size() == 100);
if (os_) *os_ << endl;
}
void testUpdateRequest ( )

Definition at line 188 of file MSDataCacheTest.cpp.

References pwiz::analysis::MSDataAnalyzerDriver::analyze(), pwiz::msdata::SpectrumInfo::id, pwiz::msdata::SpectrumInfo::index, boost::lexical_cast(), MS_number_of_counts, os_, pwiz::msdata::MSData::run, pwiz::msdata::Run::spectrumListPtr, and unit_assert.

Referenced by main().

{
if (os_) *os_ << "testUpdateRequest()\n";
vector<MZIntensityPair> pairs(100);
for (size_t i=0; i<10; i++)
{
SpectrumPtr spectrum(new Spectrum);
spectrum->setMZIntensityPairs(pairs, MS_number_of_counts);
spectrum->index = i;
spectrum->id = "scan=" + lexical_cast<string>(i);
sl->spectra.push_back(spectrum);
}
MSData msd;
msd.run.spectrumListPtr = sl;
shared_ptr<MSDataCache> cache(new MSDataCache);
analyzers.push_back(cache);
analyzers.push_back(MSDataAnalyzerPtr(new EvenRequester));
MSDataAnalyzerDriver driver(analyzers);
driver.analyze(msd);
for (size_t i=0, end=cache->size(); i<end; i++)
{
const SpectrumInfo& info = cache->at(i);
if (os_) *os_ << info.index << " " << info.id << endl;
// cache has only been updated with the spectra requested by EvenRequester
unit_assert(i%2==0 && info.index==i && info.id=="scan="+lexical_cast<string>(i) ||
i%2==1 && info.index==(size_t)-1&& info.id.empty());
}
if (os_) *os_ << endl;
}
void testAutomaticUpdate ( )

Definition at line 230 of file MSDataCacheTest.cpp.

References pwiz::msdata::SpectrumInfo::data, pwiz::msdata::SpectrumInfo::id, pwiz::msdata::SpectrumInfo::index, boost::lexical_cast(), MS_number_of_counts, pwiz::analysis::MSDataCache::open(), os_, pwiz::msdata::MSData::run, pwiz::analysis::MSDataCache::spectrumInfo(), pwiz::msdata::Run::spectrumListPtr, and unit_assert.

Referenced by main().

{
if (os_) *os_ << "testAutomaticUpdate()\n";
vector<MZIntensityPair> pairs(100);
for (size_t i=0; i<10; i++)
{
SpectrumPtr spectrum(new Spectrum);
spectrum->setMZIntensityPairs(pairs, MS_number_of_counts);
spectrum->index = i;
spectrum->id = "scan=" + lexical_cast<string>(i);
sl->spectra.push_back(spectrum);
}
MSData msd;
msd.run.spectrumListPtr = sl;
MSDataCache cache;
cache.open(msd);
unit_assert(cache.size() == sl->size());
for (size_t i=0; i<cache.size(); i++)
unit_assert(cache[i].index == (size_t)-1);
const SpectrumInfo& info5 = cache.spectrumInfo(5, true);
unit_assert(cache[5].data.size() == 100);
cache.spectrumInfo(7); // getBinaryData==false -> doesn't change cached binary data
unit_assert(cache[5].data.size() == 100);
unit_assert(cache[7].data.size() == 0);
const SpectrumInfo& info7 = cache.spectrumInfo(7, true);
if (os_)
{
for (size_t i=0; i<cache.size(); i++)
*os_ << i << " " << cache[i].index << " " << cache[i].id << " "
<< cache[i].data.size() << endl;
}
unit_assert(info7.data.size() == 100);
unit_assert(info5.data.size() == 0);
unit_assert(info5.index==5 && info5.id=="scan=5");
unit_assert(cache[5].index==5 && cache[5].id=="scan=5");
unit_assert(info7.index==7 && info7.id=="scan=7");
unit_assert(cache[7].index==7 && cache[7].id=="scan=7");
for (size_t i=0; i<cache.size(); i++)
if (i!=5 && i!=7)
unit_assert(cache[i].index == (size_t)-1);
}
int main ( int  argc,
char *  argv[] 
)

Definition at line 286 of file MSDataCacheTest.cpp.

References e(), os_, TEST_EPILOG, TEST_FAILED, TEST_PROLOG, testAutomaticUpdate(), testDefault(), testMRU(), and testUpdateRequest().

{
TEST_PROLOG(argc, argv)
try
{
if (argc>1 && !strcmp(argv[1],"-v")) os_ = &cout;
}
catch (exception& e)
{
TEST_FAILED(e.what())
}
catch (...)
{
TEST_FAILED("Caught unknown exception.")
}
}

Variable Documentation

ostream* os_ = 0

Definition at line 37 of file MSDataCacheTest.cpp.

const double epsilon_ = 1e-6

Definition at line 38 of file MSDataCacheTest.cpp.