-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtime.ts
144 lines (124 loc) · 3.39 KB
/
time.ts
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
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import t from 'tap';
import {
getRefreshInterval,
getNearestExpiration,
isExpirationTimeValid,
} from '../src/time';
const datenow = Date.now;
Date.now = () => 1672567200000; // 2023-01-01T10:00:00.000Z
// expired cert
t.same(
getRefreshInterval('2023-01-01T09:00:00.000Z'),
0,
'should return zero interval on expired cert'
);
// cert matches current time
t.same(
getRefreshInterval('2023-01-01T00:00:00.000Z'),
0,
'should return zero interval on exact same time cert'
);
// extremely long-lived cert (10years)
t.same(
getRefreshInterval('2033-01-01T10:00:00.000Z'),
2147483647,
'should return max 32-bit timeout interval to avoid overflow'
);
// short-lived cert (less than 4min)
t.same(
getRefreshInterval('2023-01-01T10:03:59.000Z'),
0,
'should return zero interval on less than 4min cert'
);
// short-lived cert (less than 1min)
t.same(
getRefreshInterval('2023-01-01T10:00:59.000Z'),
0,
'should return zero interval on less than 1min cert'
);
// less than 1h cert expiration
t.same(
getRefreshInterval('2023-01-01T10:59:59.000Z'),
3359000,
'should return duration minus 4min on less than 1h cert'
);
// exactly 1h cert expiration
t.same(
getRefreshInterval('2023-01-01T11:00:00.000Z'),
1800000,
'should return 30min interval on 1h cert'
);
// just over 1h cert expiration
t.same(
getRefreshInterval('2023-01-01T11:01:00.000Z'),
1830000,
'should return 30.5min interval on 1h01 cert'
);
// 2h cert expiration
t.same(
getRefreshInterval('2023-01-01T12:00:00.000Z'),
3600000,
'should return 1h interval on 2h cert'
);
// 4h cert expiration
t.same(
getRefreshInterval('2023-01-01T14:00:00.000Z'),
7200000,
'should return 2h interval on 4h cert'
);
// 8h cert expiration
t.same(
getRefreshInterval('2023-01-01T18:00:00.000Z'),
14400000,
'should return 4h interval on 8h cert'
);
// cert exp before token exp
t.same(
getNearestExpiration(
Date.parse('2023-01-01T00:00:00.000Z'),
Date.parse('2023-01-01T00:00:00.000Z') + 3600
),
'2023-01-01T00:00:00.000Z',
'should return cert exp'
);
// token exp before cert exp
t.same(
getNearestExpiration(
Date.parse('2023-01-01T00:00:00.000Z'),
Date.parse('2023-01-01T00:00:00.000Z') - 3600
),
new Date(Date.parse('2023-01-01T00:00:00.000Z') - 3600).toISOString(),
'should return token exp'
);
// no token exp
t.same(
getNearestExpiration(Date.parse('2023-01-01T00:00:00.000Z'), undefined),
new Date(Date.parse('2023-01-01T00:00:00.000Z')).toISOString(),
'should return cert exp'
);
t.ok(
!isExpirationTimeValid('2023-01-01T09:00:00.000Z'),
'should return false on expired time'
);
t.ok(
!isExpirationTimeValid('2023-01-01T10:00:00.000Z'),
'should return false on same (expired) time'
);
t.ok(
isExpirationTimeValid('2023-01-01T11:00:00.000Z'),
'should return true on valid time'
);
Date.now = datenow;