aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/timezone_conversion/ut/convert_ut.cpp
blob: bbf9e9b8263f8e1c33ac83a59ed1f759848425e4 (plain) (blame)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#include <library/cpp/timezone_conversion/convert.h>
#include <library/cpp/testing/unittest/gtest.h>

using namespace NDatetime;

template <>
void Out<TSimpleTM>(IOutputStream& os, TTypeTraits<TSimpleTM>::TFuncParam value) {
    os << value.ToString() << ", dst: " << int(value.IsDst);
}

TSimpleTM ZonedTm(i32 utcHours, bool isDst, ui32 year, ui32 mon, ui32 day, ui32 h, ui32 m, ui32 s) {
    TSimpleTM res(year, mon, day, h, m, s);
    res.GMTOff = utcHours * 60 * 60;
    res.IsDst = isDst;
    return res;
}

void CompareCivilTimes(const TSimpleTM& expected, const TSimpleTM& actual) {
    EXPECT_EQ(expected.GMTOff, actual.GMTOff);
    EXPECT_EQ(expected.Year, actual.Year);
    EXPECT_EQ(expected.Mon, actual.Mon);
    EXPECT_EQ(expected.MDay, actual.MDay);
    EXPECT_EQ(expected.WDay, actual.WDay);
    EXPECT_EQ(expected.Hour, actual.Hour);
    EXPECT_EQ(expected.Min, actual.Min);
    EXPECT_EQ(expected.Sec, actual.Sec);
    EXPECT_EQ(expected.IsDst, actual.IsDst);
    EXPECT_EQ(expected.IsLeap, actual.IsLeap);
}

#define CHECK_ROUND_TRIP(tz, unixTime, civil) \
    EXPECT_EQ(                                \
        TInstant::Seconds(unixTime),          \
        ToAbsoluteTime(civil, tz));           \
    CompareCivilTimes(                        \
        civil,                                \
        ToCivilTime(TInstant::Seconds(unixTime), tz));

// Tests only unambiguous civil times (i.e., those that occurred exactly once).
TEST(TimeZoneConversion, Simple) {
    TTimeZone msk = GetTimeZone("Europe/Moscow");
    // Before and after the temporary switch to UTC+3 in 2010.
    CHECK_ROUND_TRIP(
        msk,
        1288475999,
        ZonedTm(+4, true, 2010, 10, 31, 1, 59, 59));
    CHECK_ROUND_TRIP(
        msk,
        1288475999 + 3 * 60 * 60,
        ZonedTm(+3, false, 2010, 10, 31, 3, 59, 59));

    // Before and after the permanent switch to UTC+4 in 2011.
    CHECK_ROUND_TRIP(
        msk,
        1301180399,
        ZonedTm(+3, false, 2011, 3, 27, 1, 59, 59));
    CHECK_ROUND_TRIP(
        msk,
        1301180399 + 60 * 60,
        ZonedTm(+4, false, 2011, 3, 27, 3, 59, 59));

    // Some random moment between 2011 and 2014 when UTC+4 (no DST) was in place.
    CHECK_ROUND_TRIP(
        msk,
        1378901234,
        ZonedTm(+4, false, 2013, 9, 11, 16, 7, 14));

    // As of right now (i.e., as I'm writing this) Moscow is in UTC+3 (no DST).
    CHECK_ROUND_TRIP(
        msk,
        1458513396,
        ZonedTm(+3, false, 2016, 3, 21, 1, 36, 36));

    // Please add a new test if the current president moves Moscow back to UTC+4
    // or introduces DST again.
}

TEST(TimeZoneConversion, TestRepeatedDate) {
    TTimeZone ekb = GetTimeZone("Asia/Yekaterinburg");

    CompareCivilTimes(
        ZonedTm(+6, true, 2010, 10, 31, 2, 30, 0),
        ToCivilTime(TInstant::Seconds(1288470600), ekb));

    CompareCivilTimes(
        ZonedTm(+5, false, 2010, 10, 31, 2, 30, 0),
        ToCivilTime(TInstant::Seconds(1288474200), ekb));

    CompareCivilTimes(
        ZonedTm(+5, false, 2016, 5, 10, 9, 8, 7),
        CreateCivilTime(ekb, 2016, 5, 10, 9, 8, 7));

    CompareCivilTimes(
        ZonedTm(+6, true, 2010, 10, 31, 2, 30, 0),
        CreateCivilTime(ekb, 2010, 10, 31, 2, 30, 0));

    // The earlier timestamp should be chosen.
    EXPECT_EQ(
        TInstant::Seconds(1288470600),
        ToAbsoluteTime(TSimpleTM(2010, 10, 31, 2, 30, 0), ekb));
}

TEST(TimeZoneConversion, TestSkippedDate) {
    TTimeZone nsk = GetTimeZone("Asia/Novosibirsk");

    CompareCivilTimes(
        ZonedTm(+6, false, 2011, 3, 27, 1, 30, 0),
        ToCivilTime(TInstant::Seconds(1301167800), nsk));

    CompareCivilTimes(
        ZonedTm(+7, false, 2011, 3, 27, 3, 30, 0),
        ToCivilTime(TInstant::Seconds(1301171400), nsk));

    EXPECT_EQ(
        TInstant::Seconds(1301171400),
        ToAbsoluteTime(TSimpleTM(2011, 3, 27, 2, 30, 0), nsk));

    EXPECT_EQ(
        TInstant::Seconds(1301171400),
        ToAbsoluteTime(TSimpleTM(2011, 3, 27, 3, 30, 0), nsk));
}

TEST(TimeZoneConversion, Utc) {
    CHECK_ROUND_TRIP(
        GetUtcTimeZone(),
        1451703845,
        ZonedTm(0, false, 2016, 1, 2, 3, 4, 5));
}

TEST(TimeZoneConversion, Local) {
    TTimeZone local = GetLocalTimeZone();
    auto nowAbsolute = TInstant::Now();
    auto nowCivilLocal = ToCivilTime(nowAbsolute, local);
    EXPECT_EQ(nowAbsolute.Seconds(), ToAbsoluteTime(nowCivilLocal, local).Seconds());
}

TEST(TimeZoneConversion, BeforeEpoch) {
    {
        //NOTE: This test will not work because NDatetime::Convert() with TInstant does not work properly for dates before 1/1/1970
        NDatetime::TCivilSecond civilTime = NDatetime::TCivilSecond{1969, 12, 1, 0, 0, 0};
        TInstant absTime = NDatetime::Convert(civilTime, NDatetime::GetUtcTimeZone());
        NDatetime::TCivilSecond civilTime2 = NDatetime::Convert(absTime, NDatetime::GetUtcTimeZone());
        EXPECT_NE(civilTime2, civilTime); // ERROR. Must be EXPECT_EQ, but Convert() functions with TInstant doesnot wotk properly for dates before EPOCH
    }

    // Right test
    NDatetime::TCivilSecond civilTime = NDatetime::TCivilSecond{1969, 12, 1, 0, 0, 0};
    NDatetime::TCivilSecond civilTime2 = Convert<NDatetime::TCivilSecond>(civilTime, NDatetime::GetUtcTimeZone(), NDatetime::GetUtcTimeZone());
    EXPECT_EQ(civilTime2, civilTime);

}

TEST(TimeZoneConversion, InvalidTimeZone) {
    EXPECT_THROW(GetTimeZone("Europe/Mscow"), yexception);
    EXPECT_THROW(GetTimeZone(""), yexception);
}

TEST(TimeZoneConversion, TestSaratov) {
    TTimeZone saratov = GetTimeZone("Europe/Saratov");

    CompareCivilTimes(
        ZonedTm(+4, false, 2016, 12, 5, 1, 55, 35),
        ToCivilTime(TInstant::Seconds(1480888535), saratov));

    CompareCivilTimes(
        ZonedTm(+3, false, 2016, 12, 1, 0, 55, 35),
        ToCivilTime(TInstant::Seconds(1480542935), saratov));
}

TEST(TimeZoneConversion, TestFutureDstChanges) {
    TTimeZone london = GetTimeZone("Europe/London");

    // This test assumes the British won't cancel DST before 2025.
    // I don't think they will, but then again, nobody really expected Brexit.

    // DST is still in effect in early October 2025, meaning we are in UTC+1.
    CHECK_ROUND_TRIP(
        london,
        1760124660,
        ZonedTm(+1, true, 2025, 10, 10, 20, 31, 0));

    // 31 days later we're back to UTC+0 again.
    CHECK_ROUND_TRIP(
        london,
        1760124660 + 31 * 24 * 60 * 60,
        ZonedTm(+0, false, 2025, 11, 10, 19, 31, 0));
}

TEST(TimeZoneConversion, TWDay) {
    TTimeZone nsk = GetTimeZone("Asia/Novosibirsk");

    for (time_t e = 1301167800, to = 1301167800 + 86400 * 7, dow = 0; e < to; e += 86400, ++dow) {
        EXPECT_EQ(dow, ToCivilTime(TInstant::Seconds(e), nsk).WDay);
    }
}

TEST(TimeZoneConversion, TestBaikonur) {
    // Yes, the Baikonur spaceport is located in Kyzylorda Region.
    const auto baikonur = GetTimeZone("Asia/Qyzylorda");

    CompareCivilTimes(
        ZonedTm(+5, false, 2019, 1, 11, 23, 55, 23),
        ToCivilTime(TInstant::Seconds(1547232923), baikonur));
}