mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Test case: reading zip and DLD parsing
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3fb017a1c3
commit
0160e58e7d
4 changed files with 15 additions and 1 deletions
2
file.c
2
file.c
|
@ -85,7 +85,7 @@ static void zip_read(struct zip_file *file, const char *filename)
|
|||
free(mem);
|
||||
}
|
||||
|
||||
static int try_to_open_zip(const char *filename, struct memblock *mem)
|
||||
int try_to_open_zip(const char *filename, struct memblock *mem)
|
||||
{
|
||||
int success = 0;
|
||||
/* Grr. libzip needs to re-open the file, it can't take a buffer */
|
||||
|
|
1
file.h
1
file.h
|
@ -16,6 +16,7 @@ extern "C" {
|
|||
#endif
|
||||
extern int readfile(const char *filename, struct memblock *mem);
|
||||
extern timestamp_t parse_date(const char *date);
|
||||
extern int try_to_open_zip(const char *filename, struct memblock *mem);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -357,4 +357,16 @@ void TestParse::testParseCompareNewFormatOutput()
|
|||
clear_dive_file_data();
|
||||
}
|
||||
|
||||
void TestParse::testParseDLD()
|
||||
{
|
||||
struct memblock mem;
|
||||
int ret, success = 0;
|
||||
QString filename = SUBSURFACE_SOURCE "/dives/TestDiveDivelogsDE.DLD";
|
||||
|
||||
QVERIFY(readfile(filename.toLatin1().data(), &mem) > 0);
|
||||
QVERIFY(try_to_open_zip(filename.toLatin1().data(), &mem) > 0);
|
||||
|
||||
fprintf(stderr, "number of dives from DLD: %d \n", dive_table.nr);
|
||||
}
|
||||
|
||||
QTEST_MAIN(TestParse)
|
||||
|
|
|
@ -17,6 +17,7 @@ private slots:
|
|||
void testParseCompareHUDCOutput();
|
||||
void testParseNewFormat();
|
||||
void testParseCompareNewFormatOutput();
|
||||
void testParseDLD();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue