2017-04-27 18:21:27 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-02-21 09:27:31 +00:00
|
|
|
#include "testpicture.h"
|
2020-10-17 10:32:22 +00:00
|
|
|
#include "core/device.h"
|
2020-05-01 11:43:52 +00:00
|
|
|
#include "core/dive.h"
|
core: introduce divelog structure
The parser API was very annoying, as a number of tables
to-be-filled were passed in as pointers. The goal of this
commit is to collect all these tables in a single struct.
This should make it (more or less) clear what is actually
written into the divelog files.
Moreover, it should now be rather easy to search for
instances, where the global logfile is accessed (and it
turns out that there are many!).
The divelog struct does not contain the tables as substructs,
but only collects pointers. The idea is that the "divelog.h"
file can be included without all the other files describing
the numerous tables.
To make it easier to use from C++ parts of the code, the
struct implements a constructor and a destructor. Sadly,
we can't use smart pointers, since the pointers are accessed
from C code. Therfore the constructor and destructor are
quite complex.
The whole commit is large, but was mostly an automatic
conversion.
One oddity of note: the divelog structure also contains
the "autogroup" flag, since that is saved in the divelog.
This actually fixes a bug: Before, when importing dives
from a different log, the autogroup flag was overwritten.
This was probably not intended and does not happen anymore.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2022-11-08 20:31:08 +00:00
|
|
|
#include "core/divelog.h"
|
2019-08-05 17:41:15 +00:00
|
|
|
#include "core/errorhelper.h"
|
2020-04-10 07:42:14 +00:00
|
|
|
#include "core/picture.h"
|
2018-07-25 19:39:04 +00:00
|
|
|
#include "core/file.h"
|
2021-04-16 13:47:51 +00:00
|
|
|
#include "core/pref.h"
|
2017-02-21 09:27:31 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <core/qthelper.h>
|
|
|
|
|
|
|
|
void TestPicture::initTestCase()
|
|
|
|
{
|
|
|
|
/* we need to manually tell that the resource exists, because we are using it as library. */
|
|
|
|
Q_INIT_RESOURCE(subsurface);
|
2021-04-16 13:47:51 +00:00
|
|
|
prefs.cloud_base_url = strdup(default_prefs.cloud_base_url);
|
2017-02-21 09:27:31 +00:00
|
|
|
}
|
|
|
|
|
2018-02-18 13:57:42 +00:00
|
|
|
#define PIC1_NAME "/dives/images/wreck.jpg"
|
|
|
|
#define PIC2_NAME "/dives/images/data_after_EOI.jpg"
|
|
|
|
#define PIC1_HASH "929ad9499b7ae7a9e39ef63eb6c239604ac2adfa"
|
|
|
|
#define PIC2_HASH "fa8bd48f8f24017a81e1204f52300bd98b43d4a7"
|
|
|
|
|
2017-02-21 09:27:31 +00:00
|
|
|
void TestPicture::addPicture()
|
|
|
|
{
|
2020-04-19 14:48:53 +00:00
|
|
|
struct dive *dive, *dive1, *dive2;
|
2017-05-06 13:36:29 +00:00
|
|
|
struct picture *pic1, *pic2;
|
2017-02-21 09:27:31 +00:00
|
|
|
verbose = 1;
|
|
|
|
|
core: introduce divelog structure
The parser API was very annoying, as a number of tables
to-be-filled were passed in as pointers. The goal of this
commit is to collect all these tables in a single struct.
This should make it (more or less) clear what is actually
written into the divelog files.
Moreover, it should now be rather easy to search for
instances, where the global logfile is accessed (and it
turns out that there are many!).
The divelog struct does not contain the tables as substructs,
but only collects pointers. The idea is that the "divelog.h"
file can be included without all the other files describing
the numerous tables.
To make it easier to use from C++ parts of the code, the
struct implements a constructor and a destructor. Sadly,
we can't use smart pointers, since the pointers are accessed
from C code. Therfore the constructor and destructor are
quite complex.
The whole commit is large, but was mostly an automatic
conversion.
One oddity of note: the divelog structure also contains
the "autogroup" flag, since that is saved in the divelog.
This actually fixes a bug: Before, when importing dives
from a different log, the autogroup flag was overwritten.
This was probably not intended and does not happen anymore.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2022-11-08 20:31:08 +00:00
|
|
|
QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test44.xml", &divelog), 0);
|
2017-02-21 09:27:31 +00:00
|
|
|
dive = get_dive(0);
|
2018-12-11 21:30:57 +00:00
|
|
|
// Pictures will be added to selected dives
|
|
|
|
dive->selected = true;
|
2017-02-21 09:27:31 +00:00
|
|
|
QVERIFY(dive != NULL);
|
|
|
|
// So far no picture in dive
|
2020-04-11 15:41:56 +00:00
|
|
|
QVERIFY(dive->pictures.nr == 0);
|
2017-05-06 13:36:29 +00:00
|
|
|
|
2020-04-19 14:48:53 +00:00
|
|
|
pic1 = create_picture(SUBSURFACE_TEST_DATA "/dives/images/wreck.jpg", 0, false, &dive1);
|
|
|
|
pic2 = create_picture(SUBSURFACE_TEST_DATA "/dives/images/data_after_EOI.jpg", 0, false, &dive2);
|
|
|
|
QVERIFY(pic1 != NULL);
|
|
|
|
QVERIFY(pic2 != NULL);
|
|
|
|
QVERIFY(dive1 == dive);
|
|
|
|
QVERIFY(dive2 == dive);
|
|
|
|
|
|
|
|
add_picture(&dive->pictures, *pic1);
|
|
|
|
add_picture(&dive->pictures, *pic2);
|
|
|
|
free(pic1);
|
|
|
|
free(pic2);
|
|
|
|
|
|
|
|
// Now there are two pictures
|
2020-04-11 15:41:56 +00:00
|
|
|
QVERIFY(dive->pictures.nr == 2);
|
|
|
|
pic1 = &dive->pictures.pictures[0];
|
|
|
|
pic2 = &dive->pictures.pictures[1];
|
2017-05-06 13:36:29 +00:00
|
|
|
// 1st appearing at time 21:01
|
|
|
|
// 2nd appearing at time 22:01
|
|
|
|
QVERIFY(pic1->offset.seconds == 1261);
|
2018-10-20 18:12:15 +00:00
|
|
|
QVERIFY(pic1->location.lat.udeg == 47934500);
|
|
|
|
QVERIFY(pic1->location.lon.udeg == 11334500);
|
2017-05-06 13:36:29 +00:00
|
|
|
QVERIFY(pic2->offset.seconds == 1321);
|
|
|
|
|
2018-06-02 16:03:03 +00:00
|
|
|
learnPictureFilename(pic1->filename, PIC1_NAME);
|
|
|
|
learnPictureFilename(pic2->filename, PIC2_NAME);
|
2018-02-18 15:22:34 +00:00
|
|
|
QCOMPARE(localFilePath(pic1->filename), QString(PIC1_NAME));
|
|
|
|
QCOMPARE(localFilePath(pic2->filename), QString(PIC2_NAME));
|
2017-02-21 09:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QTEST_GUILESS_MAIN(TestPicture)
|