-
Notifications
You must be signed in to change notification settings - Fork 749
/
Copy pathzones.test.js
117 lines (93 loc) · 3.57 KB
/
zones.test.js
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
/* global test expect */
import {
Info,
FixedOffsetZone,
IANAZone,
InvalidZone,
SystemZone,
Settings,
} from "../../src/luxon";
const Helpers = require("../helpers");
//------
// .hasDST()
//------
test("Info.hasDST returns true for America/New_York", () => {
expect(Info.hasDST("America/New_York")).toBe(true);
});
test("Info.hasDST returns false for America/Aruba", () => {
expect(Info.hasDST("America/Aruba")).toBe(false);
});
test("Info.hasDST returns false for America/Cancun", () => {
expect(Info.hasDST("America/Cancun")).toBe(false);
});
test("Info.hasDST returns true for Europe/Andora", () => {
expect(Info.hasDST("Europe/Andora")).toBe(true);
});
test("Info.hasDST defaults to the global zone", () => {
Helpers.withDefaultZone("America/Cancun", () => {
expect(Info.hasDST()).toBe(false);
});
});
//------
// .isValidIANAZone()
//------
test("Info.isValidIANAZone returns true for valid zones", () => {
expect(Info.isValidIANAZone("America/Cancun")).toBe(true);
});
test("Info.isValidIANAZone returns true for single-section zones", () => {
expect(Info.isValidIANAZone("UTC")).toBe(true);
});
test("Info.isValidIANAZone returns false for junk", () => {
expect(Info.isValidIANAZone("blorp")).toBe(false);
});
test("Info.isValidIANAZone returns false for well-specified but invalid zones", () => {
expect(Info.isValidIANAZone("America/Blork")).toBe(false);
});
test("Info.isValidIANAZone returns true for valid zones like America/Indiana/Indianapolis", () => {
expect(Info.isValidIANAZone("America/Indiana/Indianapolis")).toBe(true);
});
test("Info.isValidIANAZone returns false for well-specified but invalid zones like America/Indiana/Blork", () => {
expect(Info.isValidIANAZone("America/Indiana/Blork")).toBe(false);
});
//------
// .normalizeZone()
//------
test("Info.normalizeZone returns Zone objects unchanged", () => {
const fixedOffsetZone = FixedOffsetZone.instance(5);
expect(Info.normalizeZone(fixedOffsetZone)).toBe(fixedOffsetZone);
const ianaZone = new IANAZone("Europe/Paris");
expect(Info.normalizeZone(ianaZone)).toBe(ianaZone);
const invalidZone = new InvalidZone("bumblebee");
expect(Info.normalizeZone(invalidZone)).toBe(invalidZone);
const systemZone = SystemZone.instance;
expect(Info.normalizeZone(systemZone)).toBe(systemZone);
});
test.each([
["Local", SystemZone.instance],
["System", SystemZone.instance],
["UTC", FixedOffsetZone.utcInstance],
["GMT", FixedOffsetZone.utcInstance],
["Etc/GMT+5", new IANAZone("Etc/GMT+5")],
["Etc/GMT-10", new IANAZone("Etc/GMT-10")],
["Europe/Paris", new IANAZone("Europe/Paris")],
[0, FixedOffsetZone.utcInstance],
[3, FixedOffsetZone.instance(3)],
[-11, FixedOffsetZone.instance(-11)],
])("Info.normalizeZone converts valid input %p into valid Zone instance", (input, expected) => {
expect(Info.normalizeZone(input)).toEqual(expected);
});
test("Info.normalizeZone converts unknown name to invalid Zone", () => {
expect(Info.normalizeZone("bumblebee").isValid).toBe(false);
});
test("Info.normalizeZone converts null and undefined to default Zone", () => {
expect(Info.normalizeZone(null)).toBe(Settings.defaultZone);
expect(Info.normalizeZone(undefined)).toBe(Settings.defaultZone);
});
// Local zone no longer refers to default one but behaves as system
// As per Docker Container, zone is America/New_York
test("Info.normalizeZone converts local to system Zone", () => {
expect(Info.normalizeZone("local")).toBe(Settings.defaultZone);
Helpers.withDefaultZone("America/New_York", () => {
expect(Info.normalizeZone("local").name).toBe("America/New_York");
});
});