-
Notifications
You must be signed in to change notification settings - Fork 30
/
gast-tests.js
99 lines (74 loc) · 2.63 KB
/
gast-tests.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
/**
*
* Put tests in me, then run me!
*
*/
function gastTestRunner() {
'use strict'
/**
*
* GasT - Google Apps Script Testing-framework
*
* GasT is a TAP-compliant testing framework for Google Apps Script.
* It provides a simple way to verify that the GAS programs you write
* behave as expected.
*
* Github - https://github.com/huan/gast
*
*/
//////////////////////////////////////////////////////////////////////////////////////////
///// GasT include header start
if ((typeof GasTap)==='undefined') { // GasT Initialization. (only if not initialized yet.)
eval(UrlFetchApp.fetch('https://raw.githubusercontent.com/huan/gast/master/src/gas-tap-lib.js').getContentText())
} // Class GasTap is ready for use now!
///// GasT include header end
//////////////////////////////////////////////////////////////////////////////////////////
var test = new GasTap()
test('TAP ok', function (t) {
t.ok(true, 'true is ok')
t.notOk(false, 'false is not ok')
})
test('TAP equal', function (t) {
t.equal(true, true, 'true equal true')
t.notEqual(true, false, 'true not equal false')
t.equal(99, String(99), 'number 99 equal string "99"')
var a = { x: 3, y: { a: 4, b: 5}, z: [5, 6] }
var a2 = { x: 3, y: { a: 4, b: 5}, z: [5, 6] }
var b = { a: [3, 4], b: 3, c: {a: 3} }
t.deepEqual(a, a2, 'a deepEqual a2')
t.notDeepEqual(a, b, 'a notDeepEqual b')
t.deepEqual([0], [0], '[0] deepEqual [0]')
t.notDeepEqual([0], [0], 'this should fail: [0] notDeepEqual [0]')
t.nan(NaN, 'NaN is NaN')
t.notNan({}, '{} not is NaN')
})
test('TAP exception', function (t) {
t.throws(function () { throw Error('exception') }, 'exception throwed')
t.notThrow(function () { return }, 'no exception found')
})
test('TAP setPrintDriver', function (t) {
t.throws(function () { test.setPrintDriver('unknown') }, 'unknown driver throws exception')
})
test('TAP skip', function (t) {
t.skip('skipped')
t.fail('skip failed')
})
test('TAP pass', function (t) {
t.pass('passed')
})
test('TAP fail', function (t) {
t.fail('this should fail')
})
test('final Stats test', function (t) {
//GIVEN - this test suite
var totalFailed = 2
var totalSucceed = 14
var totalSkipped = 1
//WHEN - assuming test order maintenence
//THEN
t.equal(test.totalFailed(), totalFailed, "total failed value correct")
t.equal(test.totalSucceed(), totalSucceed, "total succeed value correct")
t.equal(test.totalSkipped(), totalSkipped, "total skiped value correct")
})
test.finish()
}