blob: aa1a3a7430898f08abcee83c4e6e31e851883ab9 (
plain)
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
|
#ifndef __TESTFILEFORMAT_H
#define __TESTFILEFORMAT_H
#include <cxxtest/TestSuite.h>
#include <ledger.h>
using namespace std;
using namespace ledger;
class TestFileFormat : public CxxTest::TestSuite
{
public:
void testEmptyFileIsTextualFile()
{
stringstream emptyStream(stringstream::in);
textual_parser_t textualParser;
TS_ASSERT(textualParser.test(emptyStream));
TS_ASSERT(emptyStream.good());
TS_ASSERT_EQUALS(0, emptyStream.tellg());
}
void testEmptyFileIsNotXMLFile()
{
#if defined(HAVE_EXPAT) || defined(HAVE_XMLPARSE)
stringstream emptyStream(stringstream::in);
xml_parser_t xmlParser;
TS_ASSERT(!xmlParser.test(emptyStream));
TS_ASSERT(emptyStream.good());
TS_ASSERT_EQUALS(0, emptyStream.tellg());
#endif
}
void testEmptyFileIsNotGnuCashFile()
{
#if defined(HAVE_EXPAT) || defined(HAVE_XMLPARSE)
stringstream emptyStream(stringstream::in);
gnucash_parser_t gnucashParser;
TS_ASSERT(!gnucashParser.test(emptyStream));
TS_ASSERT(emptyStream.good());
TS_ASSERT_EQUALS(0, emptyStream.tellg());
#endif
}
void testEmptyFileIsNotBinaryFile()
{
stringstream emptyStream(stringstream::in);
binary_parser_t binaryParser;
TS_ASSERT(!binaryParser.test(emptyStream));
TS_ASSERT(emptyStream.good());
TS_ASSERT_EQUALS(0, emptyStream.tellg());
}
void testEmptyFileIsNotQIFFile()
{
stringstream emptyStream(stringstream::in);
qif_parser_t qifParser;
TS_ASSERT(!qifParser.test(emptyStream));
TS_ASSERT(emptyStream.good());
TS_ASSERT_EQUALS(0, emptyStream.tellg());
}
};
#endif // __TESTFILEFORMAT_H
|