forked from GioBonvi/GoogleContactsEventsNotifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.gs
206 lines (184 loc) · 7.26 KB
/
tests.gs
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
205
206
/* global Logger Log Priority SimplifiedSemanticVersion log generateEmailNotification dateWithTimezone Utilities MailApp settings validateSettings */
/**
* This function throws an error when the condition provided is false.
*
* @param {?boolean} condition - The condition to be asserted.
* @param {string} [message=Assertion failed] - The error message thrown if the assertion fails.
*/
function assert (condition, message) {
if (!condition) {
throw message || 'Assertion failed';
}
}
/**
* Run all the unit tests of the project.
*/
function unitTests () { // eslint-disable-line no-unused-vars
testLog();
Logger.log('Log tests passed!');
testSemVer();
Logger.log('SimplifiedSemanticVersioning tests passed!');
testDSTCorrectness();
Logger.log('DST correctness tests passed!');
Logger.log('All tests passed!');
}
/**
* Test the `Log` class.
*/
function testLog () {
var testLog = new Log(Priority.INFO, Priority.MAX, true);
// Testing Log.add().
try {
testLog.add('', '');
testLog.add(null, null);
testLog.add(undefined, undefined);
assert(testLog.events.length === 3, 'Testing Log.add() failed.');
} catch (err) {
assert(false, 'Testing Log.add() failed.');
}
// Testing log filtering
var logs = [
{name: 'INFO', count: 6},
{name: 'WARNING', count: 3},
{name: 'ERROR', count: 2},
{name: 'FATAL_ERROR', count: 1},
{name: 'MAX', count: 0}
];
logs.forEach(function (test) {
var testLog = new Log(Priority[test.name], Priority.MAX, true);
testLog.add('', '', true);
testLog.add(null, null, true);
testLog.add(undefined, undefined, true);
testLog.add('text', Priority.WARNING, true);
testLog.add('text', Priority.ERROR, true);
testLog.add('text', Priority.FATAL_ERROR, true);
assert(testLog.events.length === test.count, 'Logging with filter "' + test.name + '" failed.');
});
// Remove the logs resulting from the tests.
Logger.clear();
}
/**
* Test the `SimplifiedSemanticVersion` class.
*/
function testSemVer () {
// These version numbers are not valid and should result in errors being thrown.
var errors = [null, undefined, '', 'randomThings', '1.1', '1.1.1.1'];
errors.forEach(function (err) {
try {
var v = new SimplifiedSemanticVersion(err); // eslint-disable-line no-unused-vars
assert(false, String(err) + ' was accepted as a valid SemVer.');
} catch (ex) {}
});
// These version numbers are valid and should generate a valid SimplifiedSemanticVersion.
var valid = ['0.0.1', '123.123.123', '1.1.1+abcd', '1.1.1-abcd', '1.1.1-abcd+efgh', '1.1.1+abcd-efgh'];
valid.forEach(function (valid) {
assert((new SimplifiedSemanticVersion(valid)).toString() === valid, valid + ' was not recognized as a valid SemVer.');
});
// These version numbers are valid and their comparison should match the expected result.
var compare = [
{v1: '0.0.1', v2: '0.0.1', result: 0},
{v1: '0.0.1+abc', v2: '0.0.1+def', result: 0},
{v1: '0.0.1+abc', v2: '0.0.1', result: 0},
{v1: '0.0.1', v2: '0.0.1-alpha', result: 1},
{v1: '0.0.2', v2: '0.0.1', result: 1},
{v1: '0.0.2', v2: '0.0.1-alpha', result: 1},
{v1: '0.1.0', v2: '0.0.1', result: 1},
{v1: '0.1.0', v2: '0.0.1-alpha', result: 1},
{v1: '1.0.0', v2: '0.0.1', result: 1},
{v1: '1.0.0', v2: '0.1.0', result: 1}
];
compare.forEach(function (comp) {
var v1 = new SimplifiedSemanticVersion(comp.v1);
var v2 = new SimplifiedSemanticVersion(comp.v2);
assert(v1.compare(v2) === comp.result, 'Comparison between ' + comp.v1 + ' and ' + comp.v2 + ' did not return the expected value of ' + comp.result);
assert(v2.compare(v1) === (-comp.result), 'Comparison between ' + comp.v2 + ' and ' + comp.v1 + ' did not return the expected value of ' + (-comp.result));
});
}
/**
* Test whether dateWithTimezone() handles daylight saving time (DST) as expected.
*/
function testDSTCorrectness () {
var timezone, date, expectedDate, dateDSTon, dateDSToff, now;
now = new Date();
timezone = 'Europe/Athens';
/*
* Month and day must be strings with two digits.
* Both months and days are 1 indexed (JAN = '01' and 1 = '01').
*/
dateDSTon = {
year: now.getFullYear(),
month: '05',
day: '01'
};
dateDSToff = {
year: now.getFullYear(),
month: '11',
day: '01'
};
// DST ON.
date = dateWithTimezone(
parseInt(dateDSTon.year),
parseInt(dateDSTon.month) - 1,
parseInt(dateDSTon.day),
0, 0, 0,
timezone
);
expectedDate = dateDSTon.year + '-' + dateDSTon.month + '-' + dateDSTon.day + 'T00:00:00+03:00';
assert(
Utilities.formatDate(date, timezone, 'yyyy-MM-dd\'T\'HH:mm:ssXXX') === expectedDate,
'DST ON check FAILED. This could be caused by a change in Google\'s date implementation which broke dateWithTimezone() or by a change in DST policy for \'Europe/Athens\'.'
);
// DST OFF.
date = dateWithTimezone(
parseInt(dateDSToff.year),
parseInt(dateDSToff.month) - 1,
parseInt(dateDSToff.day),
0, 0, 0,
timezone
);
expectedDate = dateDSToff.year + '-' + dateDSToff.month + '-' + dateDSToff.day + 'T00:00:00+02:00';
assert(
Utilities.formatDate(date, timezone, 'yyyy-MM-dd\'T\'HH:mm:ssXXX') === expectedDate,
'DST OFF check FAILED. This could be caused by a change in Google\'s date implementation which broke dateWithTimezone() or by a change in DST policy for \'Europe/Athens\'.'
);
}
/**
* Test all events from the selected period. After running you'll get combined email for all days (for testing subjects and HTML view) and second mail with logs (for testing text view).
*
* **NB:** Execution of this function very often exceeds maximum time (5min - 300s), so it's good idea to split it up into few runs (for me running it for 185 days works perfectly).
*
* @param {Date} [testDate=01/01/CURRENT_YEAR] - First date to test.
* @param {number} [numberOfDaysToTest=365] - Number of days to test.
*/
function testSelectedPeriod (testDate, numberOfDaysToTest) { // eslint-disable-line no-unused-vars
testDate = testDate || new Date(new Date().getFullYear(), 0, 1, 6, 0, 0);
numberOfDaysToTest = numberOfDaysToTest || 365;
log.add('testSelectedPeriod() running checking from ' + testDate.toDateString() + ' for ' + numberOfDaysToTest + ' days.', Priority.INFO);
var emailData = {
'subject': 'testSelectedPeriod run from ' + testDate.toDateString() + ' for ' + numberOfDaysToTest + ' days',
'body': '',
'htmlBody': ''
};
validateSettings();
for (var i = 0; i < numberOfDaysToTest; i++) {
var dayMailContent = generateEmailNotification(testDate);
if (dayMailContent !== null) {
log.add('Subject: ' + dayMailContent.subject);
log.add('Content: ' + dayMailContent.body);
emailData.body += '\n' + dayMailContent.subject + '\n';
emailData.body += dayMailContent.body;
emailData.htmlBody += '<h1>' + dayMailContent.subject + '</h1>';
emailData.htmlBody += dayMailContent.htmlBody;
}
testDate = testDate.addDays(1);
}
MailApp.sendEmail({
to: settings.user.notificationEmail,
subject: emailData.subject,
body: emailData.body,
htmlBody: emailData.htmlBody,
name: settings.user.emailSenderName
});
log.add('Test finished. Sending logs via email.', Priority.MAX);
log.sendEmail(settings.user.notificationEmail, settings.user.emailSenderName);
}