-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.js
190 lines (160 loc) · 5.23 KB
/
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
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
/* eslint-disable camelcase */
import test from 'ava';
import {CivilTime, TimeZone, tz, convert, parse, format, now} from './';
process.env.TZ = 'UTC';
test('example1.cc', t => {
const lax = tz('America/Los_Angeles');
const tp = convert(new CivilTime(2015, 9, 22, 9), lax);
const nyc = tz('America/New_York');
const str = format('Talk starts at %T %z (%Z)', tp, nyc);
t.is(str, 'Talk starts at 12:00:00 -0400 (EDT)');
});
test('example2.cc', t => {
const lax = tz('America/Los_Angeles');
const tp = parse('%Y-%m-%d %H:%M:%S', '2015-09-22 09:35:00', lax);
t.true(now() > tp);
});
test('example3.cc', t => {
const lax = tz('America/Los_Angeles');
const now = convert(1442914512, lax);
const then = now.clone();
then.month += 6;
t.is(format('%F %T %z', now, lax), '2015-09-22 02:35:12 -0700');
t.is(format('%F %T %z', then, lax), '2016-03-22 02:35:12 -0700');
});
test('example4.cc', t => {
const lax = tz('America/Los_Angeles');
const now = convert(1442914512, lax);
const day = now.startOfDay();
t.is(format('%F %T %z', now, lax), '2015-09-22 02:35:12 -0700');
t.is(format('%F %T %z', day, lax), '2015-09-22 00:00:00 -0700');
});
test('startOfYear', t => {
const time = new CivilTime(2015, 2, 2, 2, 2, 2);
const year = time.startOfYear();
t.is(year.year, 2015);
t.is(year.month, 1);
t.is(year.day, 1);
t.is(year.hour, 0);
t.is(year.minute, 0);
t.is(year.second, 0);
});
test('startOfMonth', t => {
const time = new CivilTime(2015, 2, 2, 2, 2, 2);
const month = time.startOfMonth();
t.is(month.year, 2015);
t.is(month.month, 2);
t.is(month.day, 1);
t.is(month.hour, 0);
t.is(month.minute, 0);
t.is(month.second, 0);
});
test('startOfDay', t => {
const time = new CivilTime(2015, 2, 2, 2, 2, 2);
const day = time.startOfDay();
t.is(day.year, 2015);
t.is(day.month, 2);
t.is(day.day, 2);
t.is(day.hour, 0);
t.is(day.minute, 0);
t.is(day.second, 0);
});
test('startOfHour', t => {
const time = new CivilTime(2015, 2, 2, 2, 2, 2);
const hour = time.startOfHour();
t.is(hour.year, 2015);
t.is(hour.month, 2);
t.is(hour.day, 2);
t.is(hour.hour, 2);
t.is(hour.minute, 0);
t.is(hour.second, 0);
});
test('undefined in arguments', t => {
t.throws(() => tz(undefined));
t.throws(() => parse(undefined));
t.throws(() => parse('', undefined));
t.throws(() => format(undefined));
t.throws(() => format('', undefined));
t.throws(() => convert(undefined));
t.throws(() => convert('', undefined));
t.throws(() => convert(new CivilTime(), undefined));
t.throws(() => new TimeZone(undefined));
t.throws(() => (new TimeZone('UTC')).lookup(undefined));
});
test('parse', t => {
const nyc = tz('America/New_York');
t.is(parse('%Y-%m-%d %H:%M:%S', '2015-09-22 09:35:12'), 1442914512);
t.is(parse('%Y-%m-%d %H:%M:%S', '2015-09-22 09:35:12', nyc), 1442928912);
t.is(parse('%Y-%m-%d %H:%M:%S', '2015-09-22 09:35:12', 'America/New_York'), 1442928912);
t.is(parse('%Y-%m-%d %H:%M:%S %Ez', '2015-09-22 09:35:12-0400'), 1442928912);
});
test('format', t => {
const nyc = tz('America/New_York');
t.is(format('%Y-%m-%d %H:%M:%S', 1442928912, nyc), '2015-09-22 09:35:12');
t.is(format('%Y-%m-%d %H:%M:%S', 1442928912, 'America/New_York'), '2015-09-22 09:35:12');
t.is(format('%Y-%m-%d %H:%M:%S', new CivilTime(2015, 9, 22, 9, 35, 12), nyc), '2015-09-22 09:35:12');
t.is(format('%Y-%m-%d %H:%M:%S', new CivilTime(2015, 9, 22, 9, 35, 12), 'America/New_York'), '2015-09-22 09:35:12');
});
test('convert', t => {
const ut = now();
const nyc = tz('America/New_York');
const cs = convert(ut, nyc);
const tp = convert(cs, nyc);
const tp2 = convert(cs, 'America/New_York');
// Since CivilTime does not contains milliseconds
t.is(tp, Math.floor(ut));
t.is(tp2, Math.floor(ut));
t.is(cs.year, new Date(ut * 1000).getFullYear());
});
test('CivilTime has getters', t => {
const nyc = tz('America/New_York');
const tp = parse('%Y-%m-%d %H:%M:%S', '2015-09-22 09:35:12', nyc);
const ct = nyc.lookup(tp);
t.is(ct.cs.year, 2015);
t.is(ct.cs.month, 9);
t.is(ct.cs.day, 22);
t.is(ct.cs.hour, 9);
t.is(ct.cs.minute, 35);
t.is(ct.cs.second, 12);
t.is(ct.cs.weekday, 1);
t.is(ct.cs.yearday, 265);
t.is(ct.abbr, 'EDT');
t.is(ct.is_dst, true);
t.is(ct.offset, -14400);
});
test('CivilTime has setters', t => {
const nyc = tz('America/New_York');
const tp = parse('%Y-%m-%d %H:%M:%S', '2015-09-22 09:35:12', nyc);
const ct = nyc.lookup(tp);
const get = ct.cs.year + 1;
t.is(get, 2016);
t.is(ct.cs.year, 2015);
t.is(get === ct.cs, false);
ct.cs.year += 1;
t.is(ct.cs.year, 2016);
});
test('normalization works', t => {
const now = new CivilTime(2016, 5);
const endOfMonth = new CivilTime(now.year, now.month + 1, 0);
t.is(now.year, endOfMonth.year);
t.is(now.month, endOfMonth.month);
t.is(endOfMonth.day, 31);
});
test('CivilTime clone works', t => {
const now = new CivilTime(2016, 5);
const tomorrow = now.clone();
tomorrow.day += 1;
t.is(now.day, 1);
t.is(now.day + 1, tomorrow.day);
});
test('TimeZone has name getter', t => {
t.throws(() => new TimeZone('unknown'), 'Failed to load time zone unknown');
t.is(new TimeZone('UTC').name, 'UTC');
});
test('tz shortcut workd', t => {
t.throws(() => tz('unknown'), 'Failed to load time zone unknown');
t.is(tz('UTC').name, 'UTC');
});
test('now shortcut works', t => {
t.is(now(), Math.floor(Date.now() / 1000));
});