File: TestTimeStamp.cpp

package info (click to toggle)
marble 4%3A25.08.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 159,996 kB
  • sloc: cpp: 191,890; xml: 39,908; ansic: 7,204; python: 2,190; sh: 1,187; makefile: 235; perl: 218; ruby: 97; java: 66
file content (71 lines) | stat: -rw-r--r-- 2,855 bytes parent folder | download | duplicates (2)
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
66
67
68
69
70
71
// SPDX-License-Identifier: LGPL-2.1-or-later
//
// SPDX-FileCopyrightText: 2013 Dennis Nienhüser <nienhueser@kde.org>
//

#include <QObject>

#include "TestUtils.h"
#include <GeoDataCamera.h>
#include <GeoDataDocument.h>
#include <GeoDataPlacemark.h>
#include <GeoDataTimeStamp.h>
#include <MarbleDebug.h>

using namespace Marble;

class TestTimeStamp : public QObject
{
    Q_OBJECT
private Q_SLOTS:
    void initTestCase();
    void simpleParseTest();
};

void TestTimeStamp::initTestCase()
{
    MarbleDebug::setEnabled(true);
}

void TestTimeStamp::simpleParseTest()
{
    QString const centerContent(
        "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
        "<kml xmlns=\"http://www.opengis.net/kml/2.2\""
        " xmlns:gx=\"http://www.google.com/kml/ext/2.2\">"
        "<Document>"
        "<Placemark><TimeStamp><when>1988</when></TimeStamp></Placemark>"
        "<Placemark><TimeStamp><when>1989-04</when></TimeStamp></Placemark>"
        "<Placemark><TimeStamp><when>1990-02-03</when></TimeStamp></Placemark>"
        "<Placemark><TimeStamp><when>1997-07-16T07:30:15Z</when></TimeStamp></Placemark>"
        "<Placemark><TimeStamp><when>1997-07-16T10:30:15+03:00</when></TimeStamp></Placemark>"
        "</Document>"
        "</kml>");

    GeoDataDocument *dataDocument = parseKml(centerContent);
    QCOMPARE(dataDocument->placemarkList().size(), 5);
    GeoDataPlacemark *placemark1 = dataDocument->placemarkList().at(0);
    QCOMPARE(placemark1->timeStamp().when().date().year(), 1988);
    QCOMPARE(placemark1->timeStamp().resolution(), GeoDataTimeStamp::YearResolution);
    GeoDataPlacemark *placemark2 = dataDocument->placemarkList().at(1);
    QCOMPARE(placemark2->timeStamp().when().date().year(), 1989);
    QCOMPARE(placemark2->timeStamp().when().date().month(), 4);
    QCOMPARE(placemark2->timeStamp().resolution(), GeoDataTimeStamp::MonthResolution);
    GeoDataPlacemark *placemark3 = dataDocument->placemarkList().at(2);
    QCOMPARE(placemark3->timeStamp().when().date().year(), 1990);
    QCOMPARE(placemark3->timeStamp().when().date().month(), 2);
    QCOMPARE(placemark3->timeStamp().when().date().day(), 3);
    QCOMPARE(placemark3->timeStamp().resolution(), GeoDataTimeStamp::DayResolution);
    GeoDataPlacemark *placemark4 = dataDocument->placemarkList().at(3);
    QCOMPARE(placemark4->timeStamp().when(), QDateTime::fromString("1997-07-16T07:30:15Z", Qt::ISODate));
    QCOMPARE(placemark4->timeStamp().resolution(), GeoDataTimeStamp::SecondResolution);
    GeoDataPlacemark *placemark5 = dataDocument->placemarkList().at(4);
    QCOMPARE(placemark5->timeStamp().when(), QDateTime::fromString("1997-07-16T10:30:15+03:00", Qt::ISODate));
    QCOMPARE(placemark5->timeStamp().resolution(), GeoDataTimeStamp::SecondResolution);

    delete dataDocument;
}

QTEST_MAIN(TestTimeStamp)

#include "TestTimeStamp.moc"