ProteoWizard
Functions | Variables
ProteinListCacheTest.cpp File Reference
#include "ProteinListCache.hpp"
#include "pwiz/utility/misc/unit.hpp"
#include "pwiz/utility/misc/Std.hpp"
#include "Serializer_FASTA.hpp"

Go to the source code of this file.

Functions

ostream & std::operator<< (ostream &os, const ProteinListCache::CacheType &cache)
void testModeOff ()
void testModeMetaDataOnly ()
void testModeMetaDataAndSequence ()
void test ()
int main (int argc, char *argv[])

Variables

ostream * os_ = 0

Function Documentation

void testModeOff ( )

Definition at line 49 of file ProteinListCacheTest.cpp.

References pwiz::proteome::ProteinListCache::cache(), pwiz::util::mru_list< Item, KeyExtractor >::empty(), os_, pwiz::proteome::ProteinListCache::protein(), ProteinListCacheMode_Off, pwiz::proteome::ProteomeData::proteinListPtr, pwiz::proteome::Serializer_FASTA::read(), unit_assert, unit_assert_operator_equal, and pwiz::proteome::Serializer_FASTA::write().

{
// initialize list
shared_ptr<ProteinListSimple> sl(new ProteinListSimple);
sl->proteins.push_back(ProteinPtr(new Protein("P1", 0, "0", "ABC")));
sl->proteins.push_back(ProteinPtr(new Protein("P2", 1, "1", "DEF")));
sl->proteins.push_back(ProteinPtr(new Protein("P3", 2, "2", "GHI")));
sl->proteins.push_back(ProteinPtr(new Protein("P4", 3, "3", "JKL")));
pd.proteinListPtr = sl;
// ProteinListSimple returns the same shared_ptrs regardless of caching;
// serializing to FASTA and back will produce different shared_ptrs
boost::shared_ptr<stringstream> ss(new stringstream);
Serializer_FASTA serializer;
serializer.write(*ss, pd, 0);
serializer.read(ss, pd);
// access a series of proteins and make sure the cache behaves appropriately:
// in off mode, the cache should always be empty
const ProteinListCache::CacheType& cache = slc.cache();
unit_assert(cache.empty());
s = slc.protein(0, false);
s = slc.protein(1, true);
unit_assert_operator_equal("1", s->description);
unit_assert_operator_equal("DEF", s->sequence());
s = slc.protein(2, false);
s = slc.protein(3, true);
if (os_) *os_ << cache << endl;
unit_assert(cache.empty());
}
void testModeMetaDataOnly ( )

Definition at line 89 of file ProteinListCacheTest.cpp.

References pwiz::proteome::ProteinListCache::cache(), pwiz::util::mru_list< Item, KeyExtractor >::empty(), pwiz::util::mru_list< Item, KeyExtractor >::lru(), pwiz::util::mru_list< Item, KeyExtractor >::max_size(), pwiz::util::mru_list< Item, KeyExtractor >::mru(), os_, pwiz::proteome::ProteinListCache::protein(), ProteinListCacheMode_MetaDataOnly, pwiz::proteome::ProteomeData::proteinListPtr, pwiz::proteome::Serializer_FASTA::read(), pwiz::util::mru_list< Item, KeyExtractor >::size(), unit_assert, unit_assert_operator_equal, and pwiz::proteome::Serializer_FASTA::write().

{
// initialize list
shared_ptr<ProteinListSimple> sl(new ProteinListSimple);
sl->proteins.push_back(ProteinPtr(new Protein("P1", 0, "0", "ABC")));
sl->proteins.push_back(ProteinPtr(new Protein("P2", 1, "1", "DEF")));
sl->proteins.push_back(ProteinPtr(new Protein("P3", 2, "2", "GHI")));
sl->proteins.push_back(ProteinPtr(new Protein("P4", 3, "3", "JKL")));
pd.proteinListPtr = sl;
// ProteinListSimple returns the same shared_ptrs regardless of caching;
// serializing to FASTA and back will produce different shared_ptrs
boost::shared_ptr<stringstream> ss(new stringstream);
Serializer_FASTA serializer;
serializer.write(*ss, pd, 0);
serializer.read(ss, pd);
// access a series of proteins and make sure the cache behaves appropriately:
// in metadata-only mode, entries in the cache should:
// - always have metadata
// - never have sequences
const ProteinListCache::CacheType& cache = slc.cache();
unit_assert(cache.empty());
s = slc.protein(0, false);
// pointers should be equal
unit_assert_operator_equal(slc.protein(0, false), s);
if (os_) *os_ << cache << endl;
unit_assert(!cache.empty());
unit_assert_operator_equal(0, cache.mru().second->index);
unit_assert_operator_equal("0", cache.mru().second->description);
unit_assert_operator_equal("", cache.mru().second->sequence());
// with-sequence access should return the sequence, but only cache the metadata
s = slc.protein(1, true);
unit_assert_operator_equal("DEF", s->sequence());
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(1, cache.mru().second->index);
unit_assert_operator_equal("", cache.mru().second->sequence());
unit_assert_operator_equal(0, cache.lru().second->index);
s = slc.protein(2, false);
// pointers should be equal
unit_assert_operator_equal(slc.protein(2, false), s);
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(2, cache.mru().second->index);
unit_assert_operator_equal("", cache.mru().second->sequence());
unit_assert_operator_equal(1, cache.lru().second->index);
s = slc.protein(3, true);
unit_assert_operator_equal("JKL", s->sequence());
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(3, cache.mru().second->index);
unit_assert_operator_equal("", cache.mru().second->sequence());
unit_assert_operator_equal(2, cache.lru().second->index);
s = slc.protein(2, true);
unit_assert_operator_equal("GHI", s->sequence());
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(2, cache.mru().second->index);
unit_assert_operator_equal("", cache.mru().second->sequence());
unit_assert_operator_equal(3, cache.lru().second->index);
}
void testModeMetaDataAndSequence ( )

Definition at line 173 of file ProteinListCacheTest.cpp.

References pwiz::proteome::ProteinListCache::cache(), pwiz::util::mru_list< Item, KeyExtractor >::empty(), pwiz::util::mru_list< Item, KeyExtractor >::lru(), pwiz::util::mru_list< Item, KeyExtractor >::max_size(), pwiz::util::mru_list< Item, KeyExtractor >::mru(), os_, pwiz::proteome::ProteinListCache::protein(), pwiz::proteome::ProteomeData::proteinListPtr, pwiz::proteome::Serializer_FASTA::read(), pwiz::util::mru_list< Item, KeyExtractor >::size(), unit_assert, unit_assert_operator_equal, and pwiz::proteome::Serializer_FASTA::write().

Referenced by test().

{
// initialize list
shared_ptr<ProteinListSimple> sl(new ProteinListSimple);
sl->proteins.push_back(ProteinPtr(new Protein("P1", 0, "0", "ABC")));
sl->proteins.push_back(ProteinPtr(new Protein("P2", 1, "1", "DEF")));
sl->proteins.push_back(ProteinPtr(new Protein("P3", 2, "2", "GHI")));
sl->proteins.push_back(ProteinPtr(new Protein("P4", 3, "3", "JKL")));
pd.proteinListPtr = sl;
// ProteinListSimple returns the same shared_ptrs regardless of caching;
// serializing to FASTA and back will produce different shared_ptrs
boost::shared_ptr<stringstream> ss(new stringstream);
Serializer_FASTA serializer;
serializer.write(*ss, pd, 0);
serializer.read(ss, pd);
// access a series of proteins and make sure the cache behaves appropriately:
// in metadata-and-sequence mode, entries in the cache should:
// - always have metadata
// - always have sequences
ProteinListCache slc(pd.proteinListPtr, ProteinListCacheMode_MetaDataAndSequence, 2);
const ProteinListCache::CacheType& cache = slc.cache();
unit_assert(cache.empty());
// metadata-only access should not affect the cache
s = slc.protein(0, false);
if (os_) *os_ << cache << endl;
unit_assert(cache.empty());
s = slc.protein(1, true);
// pointers should be equal
unit_assert_operator_equal(slc.protein(1, true), s);
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(1, cache.mru().second->index);
unit_assert_operator_equal("1", cache.mru().second->description);
unit_assert_operator_equal("DEF", cache.mru().second->sequence());
// metadata-only access should not affect the cache
s = slc.protein(2, false);
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(1, cache.mru().second->index);
unit_assert_operator_equal("DEF", cache.mru().second->sequence());
s = slc.protein(3, true);
// pointers should be equal
unit_assert_operator_equal(slc.protein(3, true), s);
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(3, cache.mru().second->index);
unit_assert_operator_equal("JKL", cache.mru().second->sequence());
unit_assert_operator_equal(1, cache.lru().second->index);
s = slc.protein(2, true);
if (os_) *os_ << cache << endl;
unit_assert_operator_equal(2, cache.mru().second->index);
unit_assert_operator_equal("GHI", cache.mru().second->sequence());
unit_assert_operator_equal(3, cache.lru().second->index);
}
void test ( )
int main ( int  argc,
char *  argv[] 
)

Definition at line 259 of file ProteinListCacheTest.cpp.

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

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

Variable Documentation

ostream* os_ = 0

Definition at line 33 of file ProteinListCacheTest.cpp.