File: HDFBasReader_gtest.cpp

package info (click to toggle)
pbseqlib 0~20161219-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,924 kB
  • ctags: 5,123
  • sloc: cpp: 82,727; makefile: 305; python: 239; sh: 8
file content (56 lines) | stat: -rw-r--r-- 1,508 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 * ============================================================================
 *
 *       Filename:  HDFBasReader_gtest.cpp
 *
 *    Description:  Test hdf/HDFBasReader.hpp
 *
 *        Version:  1.0
 *        Created:  08/23/2013 10:17:14 AM
 *       Revision:  08/20/2014 
 *       Compiler:  gcc
 *
 *         Author:  Yuan Li (yli), yli@pacificbiosciences.com
 *        Company:  Pacific Biosciences
 *
 * ============================================================================
 */

#include "gtest/gtest.h"
#include "HDFBasReader.hpp"
#include "pbdata/testdata.h"

using namespace std;
using namespace H5;

class HDFBasReaderTEST : public ::testing::Test {
public:
    virtual void SetUp() {
        fileName = baxFile3;
        reader.InitializeDefaultIncludedFields();
        ASSERT_EQ(reader.Initialize(fileName), 1);
    }
    virtual void TearDown() {
        reader.Close();
    }
    string fileName;
    T_HDFBasReader<SMRTSequence> reader; 
};

TEST_F(HDFBasReaderTEST, ReadBaseFromBaseCalls) {
    ASSERT_EQ(reader.GetMovieName(), 
            "m150223_190837_42175_c100735112550000001823160806051530_s1_p0");
    SMRTSequence seq;

    for(int i=0; i < 1000; i++) {
        reader.GetNext(seq);
    }
}

TEST_F(HDFBasReaderTEST, GetChemistryTriple) {
    string bindingKit, sequencingKit, version;
    reader.GetChemistryTriple(bindingKit, sequencingKit, version);
    EXPECT_EQ(bindingKit, "100356300");
    EXPECT_EQ(sequencingKit, "100356200");
    EXPECT_EQ(version, "2.3");
}