forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigValidationSpec.js
193 lines (171 loc) · 4.87 KB
/
configValidationSpec.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
191
192
193
/*
* Copyright (c) 2014-2020 Bjoern Kimminich.
* SPDX-License-Identifier: MIT
*/
const chai = require('chai')
const sinonChai = require('sinon-chai')
const expect = chai.expect
chai.use(sinonChai)
const validateConfig = require('../../lib/startup/validateConfig')
const { checkUnambiguousMandatorySpecialProducts, checkUniqueSpecialOnProducts, checkYamlSchema, checkMinimumRequiredNumberOfProducts } = require('../../lib/startup/validateConfig')
describe('configValidation', () => {
describe('checkThatThereIsOnlyOneProductPerSpecial', () => {
it('should accept a valid config', () => {
const products = [
{
name: 'Apple Juice',
useForChristmasSpecialChallenge: true
},
{
name: 'Orange Juice',
urlForProductTamperingChallenge: 'foobar'
},
{
name: 'Melon Juice',
fileForRetrieveBlueprintChallenge: 'foobar'
},
{
name: 'Rippertuer Special Juice',
keywordsForPastebinDataLeakChallenge: ['bla', 'blubb']
}
]
expect(checkUnambiguousMandatorySpecialProducts(products)).to.equal(true)
})
it('should fail if a multiple products are configured for the same challenge', () => {
const products = [
{
name: 'Apple Juice',
useForChristmasSpecialChallenge: true
},
{
name: 'Melon Bike',
useForChristmasSpecialChallenge: true
},
{
name: 'Orange Juice',
urlForProductTamperingChallenge: 'foobar'
},
{
name: 'Melon Juice',
fileForRetrieveBlueprintChallenge: 'foobar'
}
]
expect(checkUnambiguousMandatorySpecialProducts(products)).to.equal(false)
})
it('should fail if a required challenge product is missing', () => {
const products = [
{
name: 'Apple Juice',
useForChristmasSpecialChallenge: true
},
{
name: 'Orange Juice',
urlForProductTamperingChallenge: 'foobar'
}
]
expect(checkUnambiguousMandatorySpecialProducts(products)).to.equal(false)
})
})
describe('checkThatThereIsOnlyOneProductPerSpecial', () => {
it('should accept a valid config', () => {
const products = [
{
name: 'Apple Juice',
useForChristmasSpecialChallenge: true
},
{
name: 'Orange Juice',
urlForProductTamperingChallenge: 'foobar'
},
{
name: 'Melon Juice',
fileForRetrieveBlueprintChallenge: 'foobar'
},
{
name: 'Rippertuer Special Juice',
keywordsForPastebinDataLeakChallenge: ['bla', 'blubb']
}
]
expect(checkUniqueSpecialOnProducts(products)).to.equal(true)
})
it('should fail if a product is configured for multiple challenges', () => {
const products = [
{
name: 'Apple Juice',
useForChristmasSpecialChallenge: true,
urlForProductTamperingChallenge: 'foobar'
}
]
expect(checkUniqueSpecialOnProducts(products)).to.equal(false)
})
})
describe('checkMinimumRequiredNumberOfProducts', () => {
it('should accept a valid config', () => {
const products = [
{
name: 'Apple Juice'
},
{
name: 'Orange Juice'
},
{
name: 'Melon Juice'
},
{
name: 'Rippertuer Special Juice'
}
]
expect(checkMinimumRequiredNumberOfProducts(products)).to.equal(true)
})
it('should fail if less than 4 products are configured', () => {
const products = [
{
name: 'Apple Juice'
},
{
name: 'Orange Juice'
},
{
name: 'Melon Juice'
}
]
expect(checkMinimumRequiredNumberOfProducts(products)).to.equal(false)
})
})
it('should accept the default config', () => {
expect(validateConfig({ exitOnFailure: false })).to.equal(true)
})
it('should fail if the config is invalid', () => {
expect(validateConfig({ products: [], exitOnFailure: false })).to.equal(false)
})
it('should accept a config with valid schema', () => {
const config = {
application: {
domain: 'juice-b.ox',
name: 'OWASP Juice Box',
welcomeBanner: {
showOnFirstStart: false
}
},
hackingInstructor: {
avatarImage: 'juicyEvilWasp.png'
}
}
expect(checkYamlSchema(config)).to.equal(true)
})
it('should fail for a config with schema errors', () => {
const config = {
application: {
domain: 42,
id: 'OWASP Juice Box',
welcomeBanner: {
showOnFirstStart: 'yes'
}
},
hackingInstructor: {
avatarImage: true
}
}
expect(checkYamlSchema(config)).to.equal(false)
})
})