mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Rework TestParse to make tests independent from each other
In the original version, parsing and comparing output was done in separate test methods. This was forbidding use of QTest cleanup to call clear_dive_file_data(). As a side effect a failure in one test would make other tests failing too (since call to clear_dive_file_data was skipped by QCOMPARE failure). Added a FILE_COMPARE macro to avoid code duplication. Signed-off-by: Jeremie Guichard <djebrest@gmail.com>
This commit is contained in:
parent
5caa9b23fe
commit
b9a3dfb86b
2 changed files with 87 additions and 120 deletions
|
@ -4,12 +4,43 @@
|
||||||
#include "core/divelist.h"
|
#include "core/divelist.h"
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
|
|
||||||
|
/* We have to use a macro since QCOMPARE
|
||||||
|
* can only be called from a test method
|
||||||
|
* invoked by the QTest framework
|
||||||
|
*/
|
||||||
|
#define FILE_COMPARE(actual, expected) \
|
||||||
|
QFile org(expected); \
|
||||||
|
org.open(QFile::ReadOnly); \
|
||||||
|
QFile out(actual); \
|
||||||
|
out.open(QFile::ReadOnly); \
|
||||||
|
QTextStream orgS(&org); \
|
||||||
|
QTextStream outS(&out); \
|
||||||
|
QStringList readin = orgS.readAll().split("\n"); \
|
||||||
|
QStringList written = outS.readAll().split("\n"); \
|
||||||
|
while(readin.size() && written.size()){ \
|
||||||
|
QCOMPARE(written.takeFirst().trimmed(), \
|
||||||
|
readin.takeFirst().trimmed()); \
|
||||||
|
} \
|
||||||
|
|
||||||
void TestParse::initTestCase()
|
void TestParse::initTestCase()
|
||||||
{
|
{
|
||||||
/* we need to manually tell that the resource exists, because we are using it as library. */
|
/* we need to manually tell that the resource exists, because we are using it as library. */
|
||||||
Q_INIT_RESOURCE(subsurface);
|
Q_INIT_RESOURCE(subsurface);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TestParse::init()
|
||||||
|
{
|
||||||
|
_sqlite3_handle = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
void TestParse::cleanup()
|
||||||
|
{
|
||||||
|
clear_dive_file_data();
|
||||||
|
|
||||||
|
// Some test use sqlite3, ensure db is closed
|
||||||
|
sqlite3_close(_sqlite3_handle);
|
||||||
|
}
|
||||||
|
|
||||||
char *intdup(int index)
|
char *intdup(int index)
|
||||||
{
|
{
|
||||||
char tmpbuf[21];
|
char tmpbuf[21];
|
||||||
|
@ -19,7 +50,7 @@ char *intdup(int index)
|
||||||
return strdup(tmpbuf);
|
return strdup(tmpbuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseCSV()
|
int TestParse::parseCSV()
|
||||||
{
|
{
|
||||||
// some basic file parsing tests
|
// some basic file parsing tests
|
||||||
//
|
//
|
||||||
|
@ -80,78 +111,63 @@ void TestParse::testParseCSV()
|
||||||
params[pnr++] = intdup(-1);
|
params[pnr++] = intdup(-1);
|
||||||
params[pnr++] = NULL;
|
params[pnr++] = NULL;
|
||||||
|
|
||||||
QCOMPARE(parse_manual_file(SUBSURFACE_TEST_DATA "/dives/test41.csv", params, pnr - 1), 0);
|
return parse_manual_file(SUBSURFACE_TEST_DATA "/dives/test41.csv", params, pnr - 1);
|
||||||
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseDivingLog()
|
int TestParse::parseDivingLog()
|
||||||
{
|
{
|
||||||
// Parsing of DivingLog import from SQLite database
|
// Parsing of DivingLog import from SQLite database
|
||||||
sqlite3 *handle;
|
|
||||||
|
|
||||||
struct dive_site *ds = alloc_or_get_dive_site(0xdeadbeef);
|
struct dive_site *ds = alloc_or_get_dive_site(0xdeadbeef);
|
||||||
ds->name = copy_string("Suomi - - Hälvälä");
|
ds->name = copy_string("Suomi - - Hälvälä");
|
||||||
|
|
||||||
QCOMPARE(sqlite3_open(SUBSURFACE_TEST_DATA "/dives/TestDivingLog4.1.1.sql", &handle), 0);
|
int ret = sqlite3_open(SUBSURFACE_TEST_DATA "/dives/TestDivingLog4.1.1.sql", &_sqlite3_handle);
|
||||||
QCOMPARE(parse_divinglog_buffer(handle, 0, 0, 0, &dive_table), 0);
|
if ( ret == 0 )
|
||||||
|
ret = parse_divinglog_buffer(_sqlite3_handle, 0, 0, 0, &dive_table);
|
||||||
|
else
|
||||||
|
fprintf(stderr, "Can't open sqlite3 db: " SUBSURFACE_TEST_DATA "/dives/TestDivingLog4.1.1.sql");
|
||||||
|
|
||||||
sqlite3_close(handle);
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseV2NoQuestion()
|
int TestParse::parseV2NoQuestion()
|
||||||
{
|
{
|
||||||
// parsing of a V2 file should work
|
// parsing of a V2 file should work
|
||||||
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test40.xml"), 0);
|
return parse_file(SUBSURFACE_TEST_DATA "/dives/test40.xml");
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseV3()
|
int TestParse::parseV3()
|
||||||
{
|
{
|
||||||
// parsing of a V3 files should succeed
|
// parsing of a V3 files should succeed
|
||||||
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test42.xml"), 0);
|
return parse_file(SUBSURFACE_TEST_DATA "/dives/test42.xml");
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseCompareOutput()
|
void TestParse::testParse()
|
||||||
{
|
{
|
||||||
|
QCOMPARE(parseCSV(), 0);
|
||||||
|
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
||||||
|
|
||||||
|
QCOMPARE(parseDivingLog(), 0);
|
||||||
|
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
||||||
|
|
||||||
|
QCOMPARE(parseV2NoQuestion(), 0);
|
||||||
|
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
||||||
|
|
||||||
|
QCOMPARE(parseV3(), 0);
|
||||||
|
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
||||||
|
|
||||||
QCOMPARE(save_dives("./testout.ssrf"), 0);
|
QCOMPARE(save_dives("./testout.ssrf"), 0);
|
||||||
QFile org(SUBSURFACE_TEST_DATA "/dives/test40-42.xml");
|
FILE_COMPARE("./testout.ssrf",
|
||||||
org.open(QFile::ReadOnly);
|
SUBSURFACE_TEST_DATA "/dives/test40-42.xml");
|
||||||
QFile out("./testout.ssrf");
|
|
||||||
out.open(QFile::ReadOnly);
|
|
||||||
QTextStream orgS(&org);
|
|
||||||
QTextStream outS(&out);
|
|
||||||
QStringList readin = orgS.readAll().split("\n");
|
|
||||||
QStringList written = outS.readAll().split("\n");
|
|
||||||
while(readin.size() && written.size()){
|
|
||||||
QCOMPARE(written.takeFirst().trimmed(), readin.takeFirst().trimmed());
|
|
||||||
}
|
|
||||||
clear_dive_file_data();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseDM4()
|
void TestParse::testParseDM4()
|
||||||
{
|
{
|
||||||
sqlite3 *handle;
|
QCOMPARE(sqlite3_open(SUBSURFACE_TEST_DATA "/dives/TestDiveDM4.db", &_sqlite3_handle), 0);
|
||||||
|
QCOMPARE(parse_dm4_buffer(_sqlite3_handle, 0, 0, 0, &dive_table), 0);
|
||||||
QCOMPARE(sqlite3_open(SUBSURFACE_TEST_DATA "/dives/TestDiveDM4.db", &handle), 0);
|
|
||||||
QCOMPARE(parse_dm4_buffer(handle, 0, 0, 0, &dive_table), 0);
|
|
||||||
|
|
||||||
sqlite3_close(handle);
|
|
||||||
}
|
|
||||||
|
|
||||||
void TestParse::testParseCompareDM4Output()
|
|
||||||
{
|
|
||||||
QCOMPARE(save_dives("./testdm4out.ssrf"), 0);
|
QCOMPARE(save_dives("./testdm4out.ssrf"), 0);
|
||||||
QFile org(SUBSURFACE_TEST_DATA "/dives/TestDiveDM4.xml");
|
FILE_COMPARE("./testdm4out.ssrf",
|
||||||
org.open(QFile::ReadOnly);
|
SUBSURFACE_TEST_DATA "/dives/TestDiveDM4.xml");
|
||||||
QFile out("./testdm4out.ssrf");
|
|
||||||
out.open(QFile::ReadOnly);
|
|
||||||
QTextStream orgS(&org);
|
|
||||||
QTextStream outS(&out);
|
|
||||||
QStringList readin = orgS.readAll().split("\n");
|
|
||||||
QStringList written = outS.readAll().split("\n");
|
|
||||||
while(readin.size() && written.size()){
|
|
||||||
QCOMPARE(written.takeFirst().trimmed(), readin.takeFirst().trimmed());
|
|
||||||
}
|
|
||||||
clear_dive_file_data();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseHUDC()
|
void TestParse::testParseHUDC()
|
||||||
|
@ -207,25 +223,10 @@ void TestParse::testParseHUDC()
|
||||||
dive->when = 1255152761;
|
dive->when = 1255152761;
|
||||||
dive->dc.when = 1255152761;
|
dive->dc.when = 1255152761;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void TestParse::testParseCompareHUDCOutput()
|
|
||||||
{
|
|
||||||
QCOMPARE(save_dives("./testhudcout.ssrf"), 0);
|
QCOMPARE(save_dives("./testhudcout.ssrf"), 0);
|
||||||
QFile org(SUBSURFACE_TEST_DATA "/dives/TestDiveSeabearHUDC.xml");
|
FILE_COMPARE("./testhudcout.ssrf",
|
||||||
org.open(QFile::ReadOnly);
|
SUBSURFACE_TEST_DATA "/dives/TestDiveSeabearHUDC.xml");
|
||||||
QFile out("./testhudcout.ssrf");
|
|
||||||
out.open(QFile::ReadOnly);
|
|
||||||
QTextStream orgS(&org);
|
|
||||||
QTextStream outS(&out);
|
|
||||||
QStringList readin = orgS.readAll().split("\n");
|
|
||||||
QStringList written = outS.readAll().split("\n");
|
|
||||||
|
|
||||||
while(readin.size() && written.size()){
|
|
||||||
QCOMPARE(written.takeFirst().trimmed(), readin.takeFirst().trimmed());
|
|
||||||
}
|
|
||||||
|
|
||||||
clear_dive_file_data();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseNewFormat()
|
void TestParse::testParseNewFormat()
|
||||||
|
@ -363,26 +364,11 @@ void TestParse::testParseNewFormat()
|
||||||
}
|
}
|
||||||
|
|
||||||
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
fprintf(stderr, "number of dives %d \n", dive_table.nr);
|
||||||
}
|
|
||||||
|
|
||||||
void TestParse::testParseCompareNewFormatOutput()
|
|
||||||
{
|
|
||||||
QCOMPARE(save_dives("./testsbnewout.ssrf"), 0);
|
QCOMPARE(save_dives("./testsbnewout.ssrf"), 0);
|
||||||
QFile org(SUBSURFACE_TEST_DATA "/dives/TestDiveSeabearNewFormat.xml");
|
|
||||||
org.open(QFile::ReadOnly);
|
|
||||||
QFile out("./testsbnewout.ssrf");
|
|
||||||
out.open(QFile::ReadOnly);
|
|
||||||
QTextStream orgS(&org);
|
|
||||||
QTextStream outS(&out);
|
|
||||||
QStringList readin = orgS.readAll().split("\n");
|
|
||||||
QStringList written = outS.readAll().split("\n");
|
|
||||||
|
|
||||||
// currently the CSV parse fails
|
// Currently the CSV parse fails
|
||||||
// while(readin.size() && written.size()){
|
FILE_COMPARE("./testsbnewout.ssrf",
|
||||||
// QCOMPARE(written.takeFirst().trimmed(), readin.takeFirst().trimmed());
|
SUBSURFACE_TEST_DATA "/dives/TestDiveSeabearNewFormat.xml");
|
||||||
// }
|
|
||||||
|
|
||||||
clear_dive_file_data();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseDLD()
|
void TestParse::testParseDLD()
|
||||||
|
@ -394,29 +380,16 @@ void TestParse::testParseDLD()
|
||||||
QVERIFY(try_to_open_zip(filename.toLatin1().data()) > 0);
|
QVERIFY(try_to_open_zip(filename.toLatin1().data()) > 0);
|
||||||
|
|
||||||
fprintf(stderr, "number of dives from DLD: %d \n", dive_table.nr);
|
fprintf(stderr, "number of dives from DLD: %d \n", dive_table.nr);
|
||||||
}
|
|
||||||
|
|
||||||
void TestParse::testParseCompareDLDOutput()
|
// Compare output
|
||||||
{
|
|
||||||
/*
|
/*
|
||||||
* DC is not cleared from previous tests with the
|
* DC is not cleared from previous tests with the
|
||||||
* clear_dive_file_data(), so we do have an additional DC nick
|
* clear_dive_file_data(), so we do have an additional DC nick
|
||||||
* name field on the log.
|
* name field on the log.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
QCOMPARE(save_dives("./testdldout.ssrf"), 0);
|
QCOMPARE(save_dives("./testdldout.ssrf"), 0);
|
||||||
QFile org(SUBSURFACE_TEST_DATA "/dives/TestDiveDivelogsDE.xml");
|
FILE_COMPARE("./testdldout.ssrf",
|
||||||
org.open(QFile::ReadOnly);
|
SUBSURFACE_TEST_DATA "/dives/TestDiveDivelogsDE.xml")
|
||||||
QFile out("./testdldout.ssrf");
|
|
||||||
out.open(QFile::ReadOnly);
|
|
||||||
QTextStream orgS(&org);
|
|
||||||
QTextStream outS(&out);
|
|
||||||
QStringList readin = orgS.readAll().split("\n");
|
|
||||||
QStringList written = outS.readAll().split("\n");
|
|
||||||
while(readin.size() && written.size()){
|
|
||||||
QCOMPARE(written.takeFirst().trimmed(), readin.takeFirst().trimmed());
|
|
||||||
}
|
|
||||||
clear_dive_file_data();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestParse::testParseMerge()
|
void TestParse::testParseMerge()
|
||||||
|
@ -427,18 +400,8 @@ void TestParse::testParseMerge()
|
||||||
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/ostc.xml"), 0);
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/ostc.xml"), 0);
|
||||||
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/vyper.xml"), 0);
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/vyper.xml"), 0);
|
||||||
QCOMPARE(save_dives("./testmerge.ssrf"), 0);
|
QCOMPARE(save_dives("./testmerge.ssrf"), 0);
|
||||||
QFile org(SUBSURFACE_TEST_DATA "/dives/mergedVyperOstc.xml");
|
FILE_COMPARE("./testmerge.ssrf",
|
||||||
org.open(QFile::ReadOnly);
|
SUBSURFACE_TEST_DATA "/dives/mergedVyperOstc.xml");
|
||||||
QFile out("./testmerge.ssrf");
|
|
||||||
out.open(QFile::ReadOnly);
|
|
||||||
QTextStream orgS(&org);
|
|
||||||
QTextStream outS(&out);
|
|
||||||
QStringList readin = orgS.readAll().split("\n");
|
|
||||||
QStringList written = outS.readAll().split("\n");
|
|
||||||
while(readin.size() && written.size()){
|
|
||||||
QCOMPARE(written.takeFirst().trimmed(), readin.takeFirst().trimmed());
|
|
||||||
}
|
|
||||||
clear_dive_file_data();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QTEST_GUILESS_MAIN(TestParse)
|
QTEST_GUILESS_MAIN(TestParse)
|
||||||
|
|
|
@ -2,25 +2,29 @@
|
||||||
#define TESTPARSE_H
|
#define TESTPARSE_H
|
||||||
|
|
||||||
#include <QtTest>
|
#include <QtTest>
|
||||||
|
#include <sqlite3.h>
|
||||||
|
|
||||||
class TestParse : public QObject{
|
class TestParse : public QObject{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
private slots:
|
private slots:
|
||||||
void initTestCase();
|
void initTestCase();
|
||||||
void testParseCSV();
|
void init();
|
||||||
void testParseDivingLog();
|
void cleanup();
|
||||||
void testParseV2NoQuestion();
|
|
||||||
void testParseV3();
|
int parseCSV();
|
||||||
void testParseCompareOutput();
|
int parseDivingLog();
|
||||||
|
int parseV2NoQuestion();
|
||||||
|
int parseV3();
|
||||||
|
void testParse();
|
||||||
|
|
||||||
void testParseDM4();
|
void testParseDM4();
|
||||||
void testParseCompareDM4Output();
|
|
||||||
void testParseHUDC();
|
void testParseHUDC();
|
||||||
void testParseCompareHUDCOutput();
|
|
||||||
void testParseNewFormat();
|
void testParseNewFormat();
|
||||||
void testParseCompareNewFormatOutput();
|
|
||||||
void testParseDLD();
|
void testParseDLD();
|
||||||
void testParseCompareDLDOutput();
|
|
||||||
void testParseMerge();
|
void testParseMerge();
|
||||||
|
|
||||||
|
private:
|
||||||
|
sqlite3 *_sqlite3_handle = NULL;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue