File: ValidationTest.cpp

package info (click to toggle)
libstatgen 1.0.15-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,588 kB
  • sloc: cpp: 49,624; ansic: 1,408; makefile: 320; sh: 60
file content (221 lines) | stat: -rw-r--r-- 8,169 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
 *  Copyright (C) 2010  Regents of the University of Michigan
 *
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "SamRecord.h"
#include "SamValidation.h"
#include "ValidationTest.h"
#include <assert.h>

void testSamQNAME()
{
    // This method tests:
    //   QNAME.Length() > 0 and <= 254
    //   QNAME does not contain [ \t\n\r]

    char qname[256];
    SamFileHeader samHeader;
    SamRecord testRecord(ErrorHandler::RETURN);
    // Error list
    SamValidationErrors errorList;
   
    // Test Length == 0 by setting qname[0] to 0 (end of char*)
    qname[0] = 0;
    // It fails, because it is a required field.
    assert(testRecord.setReadName(qname) == false);
    assert(strcmp(testRecord.getReadName(), "UNKNOWN") == 0);
    // It was reset to the default which is valid.
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == true);
    assert(errorList.numErrors() == 0);
    assert(errorList.getNextError() == NULL);

    // Test too long of a read name.
    memset(qname, '.', 255);
    qname[255] = 0;
    assert(testRecord.setReadName(qname) == true);
    assert(strcmp(testRecord.getReadName(), qname) == 0);
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == false);
    // 2 errors - 1 since the qname is longer than 254 (it is 255).
    // and the qname length including the null is 256, but the 
    // read name length is only 8 bits, so that is a 1.
    assert(errorList.numErrors() == 2);
    assert(errorList.getNextError()->getType() == 
           SamValidationError::INVALID_QNAME);
    assert(errorList.getNextError()->getType() == 
           SamValidationError::INVALID_QNAME);
    assert(errorList.getNextError() == NULL);

    // Clear the error list
    errorList.clear();

    // Setup a buffer to set the record to.
    int bufferBlockSize = 32;

    bamRecordStruct* bufferRecordPtr =
        (bamRecordStruct *) malloc(bufferBlockSize + sizeof(int));

    bufferRecordPtr->myBlockSize = bufferBlockSize;
    bufferRecordPtr->myReferenceID = -1;
    bufferRecordPtr->myPosition = 1010;
    // Set the read name length to 0.
    bufferRecordPtr->myReadNameLength = 0;
    bufferRecordPtr->myMapQuality = 0;
    bufferRecordPtr->myBin = 4681;
    bufferRecordPtr->myCigarLength = 0;
    bufferRecordPtr->myFlag = 73;
    bufferRecordPtr->myReadLength = 0;
    bufferRecordPtr->myMateReferenceID = -1;
    bufferRecordPtr->myMatePosition = 1010;
    bufferRecordPtr->myInsertSize = 0;

    assert(testRecord.setBuffer((const char*)bufferRecordPtr, 
                                bufferBlockSize + sizeof(int), 
                                samHeader) == SamStatus::SUCCESS);
    // 1 error - the read name length is 0.
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == false);
    assert(errorList.numErrors() == 1);
    assert(errorList.getNextError()->getType() == 
           SamValidationError::INVALID_QNAME);
    assert(errorList.getNextError() == NULL);

    // Clear the error list
    errorList.clear();

    // Test a buffer that has a read name, but the length specified is
    // longer than the first null.
    bufferBlockSize = 40;
    bufferRecordPtr->myBlockSize = bufferBlockSize;
    // Set the read name length to 8 - longer than 3 - "HI\0".
    bufferRecordPtr->myReadNameLength = 8;
    bufferRecordPtr->myData[0] = 'H';
    bufferRecordPtr->myData[1] = 'I';
    bufferRecordPtr->myData[2] = 0;

    assert(testRecord.setBuffer((const char*)bufferRecordPtr,
                                bufferBlockSize + sizeof(int), 
                                samHeader) == SamStatus::SUCCESS);
    // 1 error - the read name length in the buffer does not match the
    // length of the read name to the first null.
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == false);
    assert(errorList.numErrors() == 1);
    assert(errorList.getNextError()->getType() ==
           SamValidationError::INVALID_QNAME);
    assert(errorList.getNextError() == NULL);

    // Clear the error list
    errorList.clear();

    // Test a buffer that has a read name, but the length specified is
    // shorter than the first null.
    bufferBlockSize = 34;
    bufferRecordPtr->myBlockSize = bufferBlockSize;
    // Set the read name length to 2 - longer than 3 - "HI\0"..
    bufferRecordPtr->myReadNameLength = 2;
    bufferRecordPtr->myData[0] = 'H';
    bufferRecordPtr->myData[1] = 'I';
    bufferRecordPtr->myData[2] = 0;

    assert(testRecord.setBuffer((const char*)bufferRecordPtr, 
                                bufferBlockSize + sizeof(int), 
                                samHeader) == SamStatus::SUCCESS);
    // 1 error - the read name length in the buffer does not match
    // the length of the read name to the first null.
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == false);
    assert(errorList.numErrors() == 1);
    assert(errorList.getNextError()->getType() ==
           SamValidationError::INVALID_QNAME);
    assert(errorList.getNextError() == NULL);

    // Clear the error list
    errorList.clear();
}


void testBamRID()
{
    // BAM
    SamRecord testRecord(ErrorHandler::RETURN);
    // Error list
    SamValidationErrors errorList;
    SamFileHeader samHeader;

    // Clear the error list
    errorList.clear();

    // Setup a buffer to set the record to.
    int bufferBlockSize = 35;

    bamRecordStruct* bufferRecordPtr =
        (bamRecordStruct *) malloc(bufferBlockSize + sizeof(int));

    bufferRecordPtr->myBlockSize = bufferBlockSize;
    bufferRecordPtr->myPosition = 1010;
    bufferRecordPtr->myReferenceID = -1;
    // Set the read name length to 0.
    bufferRecordPtr->myReadNameLength = 3;
    bufferRecordPtr->myMapQuality = 0;
    bufferRecordPtr->myBin = 4681;
    bufferRecordPtr->myCigarLength = 0;
    bufferRecordPtr->myFlag = 73;
    bufferRecordPtr->myReadLength = 0;
    bufferRecordPtr->myMateReferenceID = -1;
    bufferRecordPtr->myMatePosition = 1010;
    bufferRecordPtr->myInsertSize = 0;
    bufferRecordPtr->myData[0] = 'H';
    bufferRecordPtr->myData[1] = 'I';
    bufferRecordPtr->myData[2] = 0;

    ////////////////////////////////////////////
    // Test out of range reference sequence id.
    bufferRecordPtr->myReferenceID = 100;

    assert(testRecord.setBuffer((const char*)bufferRecordPtr, 
                                bufferBlockSize + sizeof(int),
                                samHeader) == SamStatus::SUCCESS);
    // 1 error - the read name length is 0.
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == false);
    assert(errorList.numErrors() == 1);
    assert(errorList.getNextError()->getType() == 
           SamValidationError::INVALID_REF_ID);
    assert(errorList.getNextError() == NULL);

    // Clear the error list
    errorList.clear();

    ////////////////////////////////////////////
    // Test out of range reference sequence id.
    bufferRecordPtr->myReferenceID = -100;

    assert(testRecord.setBuffer((const char*)bufferRecordPtr,
                                bufferBlockSize + sizeof(int),
                                samHeader) == SamStatus::SUCCESS);
    // 1 error - the read name length is 0.
    assert(SamValidator::isValid(samHeader, testRecord, errorList) == false);
    assert(errorList.numErrors() == 1);
    assert(errorList.getNextError()->getType() == 
           SamValidationError::INVALID_REF_ID);
    assert(errorList.getNextError() == NULL);

    // Clear the error list
    errorList.clear();
}


void testEmptyQual()
{
   
}