aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllocale/data/timeZoneUpdated.qml
blob: 21eb754c8ca3236d625d233f84665775cfb310ae (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import QtQuick 2.0

Item {
    property bool success: false

    property date localDate
    property date utcDate

    Component.onCompleted: {
        // Test date: 2012-06-01T02:15:30+10:00 (AEST timezone)
        localDate = new Date(2012, 6-1, 1, 2, 15, 30)
        utcDate = new Date(Date.UTC(2012, 6-1, 1, 2, 15, 30))

        if (localDate.getTimezoneOffset() != -600) {
            console.log("Wrong initial time-zone offset: " + localDate.getTimezoneOffset());
            return;
        }

        if (localDate.toLocaleString() != getLocalizedForm('2012-06-01T02:15:30')) {
            console.log("Wrong localized string for local date-time: "
                        + localDate.toLocaleString());
            return;
        }
        if (localDate.toISOString() != "2012-05-31T16:15:30.000Z") {
            console.log("Wrong ISO date string for local date-time: "
                        + localDate.toISOString());
            return;
        }

        if (utcDate.toISOString() != "2012-06-01T02:15:30.000Z") {
            console.log("Wrong ISO string for UTC date-time: "
                        + utcDate.toISOString());
            return;
        }
        if (utcDate.toLocaleString() != getLocalizedForm('2012-06-01T12:15:30')) {
            console.log("Wrong localized string for UTC date-time: "
                        + utcDate.toLocaleString());
            return;
        }

        success = true
    }

    function check() {
        success = false

        // We have changed to IST time zone - inform JS:
        Date.timeZoneUpdated()

        if (localDate.getTimezoneOffset() != -330) {
            console.log("Wrong revised time-zone offset: " + localDate.getTimezoneOffset());
            return;
        }

        if (localDate.toLocaleString() != getLocalizedForm('2012-06-01T02:15:30')) {
            console.log("Wrong localized string for old local date-time: "
                        + localDate.toLocaleString());
            return;
        }
        if (localDate.toISOString() != "2012-05-31T20:45:30.000Z") {
            console.log("Wrong ISO date string for old local date-time: "
                        + localDate.toISOString());
            return;
        }

        if (utcDate.toISOString() != "2012-06-01T06:45:30.000Z") {
            console.log("Wrong ISO string for old UTC date-time: "
                        + utcDate.toISOString());
            return;
        }
        if (utcDate.toLocaleString() != getLocalizedForm("2012-06-01T12:15:30")) {
            console.log("Wrong localized string for old UTC date-time: "
                        + utcDate.toLocaleString());
            return;
        }

        // Create new dates in this timezone
        localDate = new Date(2012, 6-1, 1, 2, 15, 30)
        utcDate = new Date(Date.UTC(2012, 6-1, 1, 2, 15, 30))

        if (localDate.toLocaleString() != getLocalizedForm("2012-06-01T02:15:30")) {
            console.log("Wrong localized string for fresh local date-time: "
                        + localDate.toLocaleString());
            return;
        }
        if (localDate.toISOString() != "2012-05-31T20:45:30.000Z") {
            console.log("Wrong ISO date string for fresh local date-time: "
                        + localDate.toISOString());
            return;
        }

        if (utcDate.toISOString() != "2012-06-01T02:15:30.000Z") {
            console.log("Wrong ISO string for fresh UTC date-time: "
                        + utcDate.toISOString());
            return;
        }
        if (utcDate.toLocaleString() != getLocalizedForm("2012-06-01T07:45:30")) {
            console.log("Wrong localized string for fresh UTC date-time: "
                        + utcDate.toLocaleString());
            return;
        }

        success = true
    }

    function resetTimeZone() {
        Date.timeZoneUpdated()
    }
}