Create test case for DivingLog SQLite import

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Miika Turkia 2015-07-24 19:53:22 +03:00 committed by Dirk Hohndel
parent 76fe262a0f
commit c19f4869af
3 changed files with 730 additions and 0 deletions

View file

@ -1,5 +1,6 @@
#include "testparse.h"
#include "dive.h"
#include "file.h"
#include <QTextStream>
void TestParse::testParseCSV()
@ -18,6 +19,20 @@ void TestParse::testParseCSV()
fprintf(stderr, "number of dives %d \n", dive_table.nr);
}
void TestParse::testParseDivingLog()
{
// Parsing of DivingLog import from SQLite database
sqlite3 *handle;
struct dive_site *ds = alloc_dive_site(0xdeadbeef);
ds->name = copy_string("Suomi - - Hälvälä");
QCOMPARE(sqlite3_open(SUBSURFACE_SOURCE "/dives/TestDivingLog4.1.1.sql", &handle), 0);
QCOMPARE(parse_divinglog_buffer(handle, 0, 0, 0, &dive_table), 0);
sqlite3_close(handle);
}
void TestParse::testParseV2NoQuestion()
{
// parsing of a V2 file should work