aboutsummaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/modules/commons/rest-lib/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/rest/service/BluePrintRestLibPropertyServiceTest.kt
blob: 62fca20f77df67aed0928a5a15bcea65df2f71c7 (plain)
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
/*
 * Copyright © 2017-2018 AT&T Intellectual Property.
 * Modifications Copyright © 2018 IBM.
 * Modifications Copyright © 2019 Huawei.
 * Modifications Copyright © 2019 Bell Canada.
 *
 * 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
 *
 *     http://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.
 */

package org.onap.ccsdk.cds.blueprintsprocessor.rest.service

import com.fasterxml.jackson.databind.JsonNode
import com.fasterxml.jackson.databind.ObjectMapper
import org.junit.Test
import org.junit.runner.RunWith
import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertiesService
import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertyConfiguration
import org.onap.ccsdk.cds.blueprintsprocessor.rest.BluePrintRestLibConfiguration
import org.onap.ccsdk.cds.blueprintsprocessor.rest.SSLBasicAuthRestClientProperties
import org.onap.ccsdk.cds.blueprintsprocessor.rest.SSLRestClientProperties
import org.onap.ccsdk.cds.blueprintsprocessor.rest.SSLTokenAuthRestClientProperties
import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintProcessorException
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.http.HttpHeaders
import org.springframework.http.MediaType
import org.springframework.test.context.ContextConfiguration
import org.springframework.test.context.TestPropertySource
import org.springframework.test.context.junit4.SpringRunner
import kotlin.test.assertEquals
import kotlin.test.assertFailsWith
import kotlin.test.assertNotNull

@RunWith(SpringRunner::class)
@ContextConfiguration(
    classes = [
        BluePrintRestLibConfiguration::class, BluePrintPropertyConfiguration::class,
        BluePrintPropertiesService::class
    ]
)
@TestPropertySource(
    properties =
        [
            "blueprintsprocessor.restclient.sample.type=basic-auth",
            "blueprintsprocessor.restclient.sample.url=http://localhost:8080",
            "blueprintsprocessor.restclient.sample.userId=sampleuser",
            "blueprintsprocessor.restclient.sslbasic.type=ssl-basic-auth",
            "blueprintsprocessor.restclient.sslbasic.url=https://localhost:8443",
            "blueprintsprocessor.restclient.sslbasic.username=admin",
            "blueprintsprocessor.restclient.sslbasic.password=cds",
            "blueprintsprocessor.restclient.sslbasic.keyStoreInstance=PKCS12",
            "blueprintsprocessor.restclient.sslbasic.sslTrust=src/test/resources/keystore.p12",
            "blueprintsprocessor.restclient.sslbasic.sslTrustPassword=changeit",
            "blueprintsprocessor.restclient.ssltoken.type=ssl-token-auth",
            "blueprintsprocessor.restclient.ssltoken.url=https://localhost:8443",
            "blueprintsprocessor.restclient.ssltoken.token=72178473kjshdkjgvbsdkjv903274908",
            "blueprintsprocessor.restclient.ssltoken.keyStoreInstance=PKCS12",
            "blueprintsprocessor.restclient.ssltoken.sslTrust=src/test/resources/keystore.p12",
            "blueprintsprocessor.restclient.ssltoken.sslTrustPassword=changeit",
            "blueprintsprocessor.restclient.ssl.type=ssl-no-auth",
            "blueprintsprocessor.restclient.ssl.url=https://localhost:8443",
            "blueprintsprocessor.restclient.ssl.keyStoreInstance=PKCS12",
            "blueprintsprocessor.restclient.ssl.sslTrust=src/test/resources/keystore.p12",
            "blueprintsprocessor.restclient.ssl.sslTrustPassword=changeit",
            "blueprintsprocessor.restclient.ssl.sslKey=src/test/resources/keystore.p12",
            "blueprintsprocessor.restclient.ssl.sslKeyPassword=changeit"
        ]
)
class BluePrintRestLibPropertyServiceTest {

    @Autowired
    lateinit var bluePrintRestLibPropertyService: BluePrintRestLibPropertyService

    @Test
    fun testRestClientProperties() {
        val properties = bluePrintRestLibPropertyService.restClientProperties(
            "blueprintsprocessor.restclient.sample"
        )
        assertNotNull(properties, "failed to create property bean")
        assertNotNull(
            properties.url,
            "failed to get url property in" +
                " property bean"
        )
    }

    @Test
    fun testSSLBasicProperties() {
        val properties = bluePrintRestLibPropertyService.restClientProperties(
            "blueprintsprocessor.restclient.sslbasic"
        )
        assertNotNull(properties, "failed to create property bean")
        val p: SSLBasicAuthRestClientProperties =
            properties as SSLBasicAuthRestClientProperties

        assertEquals(p.basicAuth!!.username, "admin")
        assertEquals(p.basicAuth!!.password, "cds")
        assertEquals(p.sslTrust, "src/test/resources/keystore.p12")
        assertEquals(p.sslTrustPassword, "changeit")
        assertEquals(p.keyStoreInstance, "PKCS12")
    }

    @Test
    fun testSSLTokenProperties() {
        val properties = bluePrintRestLibPropertyService.restClientProperties(
            "blueprintsprocessor.restclient.ssltoken"
        )
        assertNotNull(properties, "failed to create property bean")

        val p: SSLTokenAuthRestClientProperties =
            properties as SSLTokenAuthRestClientProperties

        assertEquals(p.tokenAuth!!.token!!, "72178473kjshdkjgvbsdkjv903274908")
        assertEquals(p.sslTrust, "src/test/resources/keystore.p12")
        assertEquals(p.sslTrustPassword, "changeit")
        assertEquals(p.keyStoreInstance, "PKCS12")
    }

    @Test
    fun testSSLNoAuthProperties() {
        val properties = bluePrintRestLibPropertyService.restClientProperties(
            "blueprintsprocessor.restclient.ssl"
        )
        assertNotNull(properties, "failed to create property bean")

        val p: SSLRestClientProperties =
            properties as SSLRestClientProperties

        assertEquals(p.sslTrust, "src/test/resources/keystore.p12")
        assertEquals(p.sslTrustPassword, "changeit")
        assertEquals(p.keyStoreInstance, "PKCS12")
        assertEquals(p.sslKey, "src/test/resources/keystore.p12")
        assertEquals(p.sslKeyPassword, "changeit")
    }

    @Test
    fun testSSLBasicPropertiesAsJson() {
        val actualObj: JsonNode = defaultMapper.readTree(sslBasicAuthEndpointWithHeadersField())
        val properties = bluePrintRestLibPropertyService.restClientProperties(
            actualObj
        )
        assertNotNull(properties, "failed to create property bean")
        val p: SSLBasicAuthRestClientProperties = properties as SSLBasicAuthRestClientProperties

        assertEquals("admin", p.basicAuth!!.username)
        assertEquals("cds", p.basicAuth!!.password)
        assertEquals("src/test/resources/keystore.p12", p.sslTrust)
        assertEquals("changeit", p.sslTrustPassword)
        assertEquals("PKCS12", p.keyStoreInstance)
        assertEquals("ssl-basic-auth", p.type)
        assertEquals("https://localhost:8443", p.url)
    }

    @Test
    fun testSSLTokenPropertiesAsJson() {
        val actualObj: JsonNode = defaultMapper.readTree(sslTokenAuthEndpointWithHeadersField())
        val properties =
            bluePrintRestLibPropertyService.restClientProperties(actualObj)
        assertNotNull(properties, "failed to create property bean")

        val p: SSLTokenAuthRestClientProperties = properties as SSLTokenAuthRestClientProperties

        assertEquals("72178473kjshdkjgvbsdkjv903274908", p.tokenAuth!!.token!!)
        assertEquals("src/test/resources/keystore.p12", p.sslTrust)
        assertEquals("changeit", p.sslTrustPassword)
        assertEquals("PKCS12", p.keyStoreInstance)
        assertEquals("ssl-token-auth", p.type)
        assertEquals("https://localhost:8443", p.url)
    }

    @Test
    fun testSSLNoAuthPropertiesAsJson() {
        val actualObj: JsonNode = defaultMapper.readTree(sslNoAuthEndpointWithHeadersField())
        val properties = bluePrintRestLibPropertyService.restClientProperties(
            actualObj
        )
        assertNotNull(properties, "failed to create property bean")

        val p: SSLRestClientProperties =
            properties as SSLRestClientProperties

        assertEquals("src/test/resources/keystore.p12", p.sslTrust)
        assertEquals("changeit", p.sslTrustPassword)
        assertEquals("PKCS12", p.keyStoreInstance)
        assertEquals("src/test/resources/keystore.p12", p.sslKey)
        assertEquals("changeit", p.sslKeyPassword)
        assertEquals("ssl-no-auth", p.type)
        assertEquals("https://localhost:8443", p.url)
    }

    @Test
    fun testBlueprintWebClientService() {
        val blueprintWebClientService = bluePrintRestLibPropertyService
            .blueprintWebClientService("sample")
        assertNotNull(
            blueprintWebClientService,
            "failed to create blueprintWebClientService"
        )
    }

    @Test
    fun testBlueprintWebClientServiceWithJsonNode() {
        val actualObj: JsonNode = defaultMapper.readTree(sslBasicAuthEndpointWithHeadersField())
        val blueprintWebClientService = bluePrintRestLibPropertyService
            .blueprintWebClientService(actualObj)
        assertNotNull(blueprintWebClientService, "failed to create blueprintWebClientService")
    }

    // pass the result of $typeEndpointWithHeadersField() output with and without headers to compare.
    private fun validateHeadersDidNotChangeWithEmptyAdditionalHeaders(noHeaders: String, withHeaders: String) {
        val parsedObj: JsonNode = defaultMapper.readTree(noHeaders)
        val bpWebClientService =
            bluePrintRestLibPropertyService.blueprintWebClientService(parsedObj)
        val extractedHeaders = bpWebClientService.convertToBasicHeaders(mapOf())

        val parsedObjWithHeaders: JsonNode = defaultMapper.readTree(withHeaders)
        val bpWebClientServiceWithHeaders =
            bluePrintRestLibPropertyService.blueprintWebClientService(parsedObjWithHeaders)
        val extractedHeadersWithAdditionalHeaders = bpWebClientServiceWithHeaders.convertToBasicHeaders(mapOf())
        // Array<BasicHeader<>> -> Map<String,String>
        val headersMap = extractedHeaders.map { it.name to it.value }.toMap()
        val additionalHeadersMap = extractedHeadersWithAdditionalHeaders.map { it.name to it.value }.toMap()
        assertEquals(headersMap, additionalHeadersMap)
    }

    @Test
    fun `BasicAuth WebClientService with empty additionalHeaders does not modify headers`() {
        val endPointJson = basicAuthEndpointWithHeadersField()
        val endPointWithHeadersJson = basicAuthEndpointWithHeadersField(emptyAdditionalHeaders)
        validateHeadersDidNotChangeWithEmptyAdditionalHeaders(endPointJson, endPointWithHeadersJson)
    }

    private fun acceptsOneAdditionalHeadersTest(endPointWithHeadersJson: String) {
        val parsedObj: JsonNode = defaultMapper.readTree(endPointWithHeadersJson)
        val bpWebClientService =
            bluePrintRestLibPropertyService.blueprintWebClientService(parsedObj)
        val extractedHeaders = bpWebClientService.convertToBasicHeaders(mapOf())
        assertEquals(1, extractedHeaders.filter { it.name == "key1" }.count())
    }

    @Test
    fun `BasicAuth WebClientService accepts one additionalHeaders`() {
        val endPointWithHeadersJson = basicAuthEndpointWithHeadersField(oneAdditionalParameter)
        acceptsOneAdditionalHeadersTest(endPointWithHeadersJson)
    }

    private fun acceptsMultipleAdditionalHeaders(endPointWithHeadersJson: String) {
        val parsedObj: JsonNode = defaultMapper.readTree(endPointWithHeadersJson)
        val bpWebClientService =
            bluePrintRestLibPropertyService.blueprintWebClientService(parsedObj)
        val extractedHeaders = bpWebClientService.convertToBasicHeaders(mapOf())
        assertEquals(1, extractedHeaders.filter { it.name == "key1" }.count())
        assertEquals(1, extractedHeaders.filter { it.name == "key2" }.count())
        assertEquals(1, extractedHeaders.filter { it.name == "key3" }.count())
    }

    @Test
    fun `BasicAuth WebClientService accepts multiple additionalHeaders`() {
        val endPointWithHeadersJson = basicAuthEndpointWithHeadersField(threeAdditionalHeaders)
        acceptsMultipleAdditionalHeaders(endPointWithHeadersJson)
    }

    private fun additionalHeadersChangedContentTypeToAPPLICATION_XML(endPointWithHeadersJson: String) {
        val parsedObj: JsonNode = defaultMapper.readTree(endPointWithHeadersJson)
        val bpWebClientService =
            bluePrintRestLibPropertyService.blueprintWebClientService(parsedObj)
        val extractedHeaders = bpWebClientService.convertToBasicHeaders(mapOf())
        assertEquals(
            MediaType.APPLICATION_XML.toString(),
            extractedHeaders.filter { it.name == HttpHeaders.CONTENT_TYPE }[0].value!!
        )
    }

    @Test
    fun `BasicAuth WebClientService additionalHeaders can overwrite default Content-Type`() {
        // default content type is application/json
        val endPointWithHeadersJson = basicAuthEndpointWithHeadersField(contentTypeAdditionalHeader)
        additionalHeadersChangedContentTypeToAPPLICATION_XML(endPointWithHeadersJson)
    }

    // called from within "assertFailsWith(exceptionClass = BluePrintProcessorException::class) {"
    private fun attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson: String) {
        val parsedObj: JsonNode = defaultMapper.readTree(endPointWithHeadersJson)
        val bpWebClientService =
            bluePrintRestLibPropertyService.blueprintWebClientService(parsedObj)
        bpWebClientService.convertToBasicHeaders(mapOf())
    }

    @Test
    fun `BasicAuth WebClientService throws BluePrintProcessorException if additionalHeaders contain Authorization`() {
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = basicAuthEndpointWithHeadersField(additionalHeadersWithAuth)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
        // spec says headers are case insensitive...
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = basicAuthEndpointWithHeadersField(additionalHeadersWithAuthLowercased)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
    }

    @Test
    fun `TokenAuth WebClientService with empty additionalHeaders does not modify headers`() {
        val endPointJson = sslTokenAuthEndpointWithHeadersField()
        val endPointWithHeadersJson = sslTokenAuthEndpointWithHeadersField(emptyAdditionalHeaders)
        validateHeadersDidNotChangeWithEmptyAdditionalHeaders(endPointJson, endPointWithHeadersJson)
    }

    @Test
    fun `TokenAuth WebClientService accepts one additionalHeaders`() {
        val endPointWithHeadersJson = sslTokenAuthEndpointWithHeadersField(oneAdditionalParameter)
        acceptsOneAdditionalHeadersTest(endPointWithHeadersJson)
    }

    @Test
    fun `TokenAuth WebClientService accepts multiple additionalHeaders`() {
        val endPointWithHeadersJson = sslTokenAuthEndpointWithHeadersField(threeAdditionalHeaders)
        acceptsMultipleAdditionalHeaders(endPointWithHeadersJson)
    }

    @Test
    fun `TokenAuth WebClientService additionalHeaders can overwrite default Content-Type`() {
        // default content type is application/json
        val endPointWithHeadersJson = sslTokenAuthEndpointWithHeadersField(contentTypeAdditionalHeader)
        additionalHeadersChangedContentTypeToAPPLICATION_XML(endPointWithHeadersJson)
    }

    @Test
    fun `TokenAuth WebClientService throws BluePrintProcessorException if additionalHeaders contain Authorization`() {
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = sslTokenAuthEndpointWithHeadersField(additionalHeadersWithAuth)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
        // spec says headers are case insensitive...
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = sslTokenAuthEndpointWithHeadersField(additionalHeadersWithAuthLowercased)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
    }

    // TESTS FOR SSL BASIC AUTH headers
    @Test
    fun `SSLBasicAuth WebClientService with empty additionalHeaders does not modify headers`() {
        val endPointJson = sslBasicAuthEndpointWithHeadersField()
        val endPointWithHeadersJson = sslBasicAuthEndpointWithHeadersField(emptyAdditionalHeaders)
        validateHeadersDidNotChangeWithEmptyAdditionalHeaders(endPointJson, endPointWithHeadersJson)
    }

    @Test
    fun `SSLBasicAuth WebClientService accepts one additionalHeaders`() {
        val endPointWithHeadersJson = sslBasicAuthEndpointWithHeadersField(oneAdditionalParameter)
        acceptsOneAdditionalHeadersTest(endPointWithHeadersJson)
    }

    @Test
    fun `SSLBasicAuth WebClientService accepts multiple additionalHeaders`() {
        val endPointWithHeadersJson = sslBasicAuthEndpointWithHeadersField(threeAdditionalHeaders)
        acceptsMultipleAdditionalHeaders(endPointWithHeadersJson)
    }

    @Test
    fun `SSLBasicAuth WebClientService additionalHeaders can overwrite default Content-Type`() {
        // default content type is application/json
        val endPointWithHeadersJson = sslBasicAuthEndpointWithHeadersField(contentTypeAdditionalHeader)
        additionalHeadersChangedContentTypeToAPPLICATION_XML(endPointWithHeadersJson)
    }

    @Test
    fun `SSLBasicAuth WebClientService throws BluePrintProcessorException if additionalHeaders contain Authorization`() {
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = sslBasicAuthEndpointWithHeadersField(additionalHeadersWithAuth)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
        // spec says headers are case insensitive...
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = sslBasicAuthEndpointWithHeadersField(additionalHeadersWithAuthLowercased)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
    }

    // SSL-NO-AUTH headers tests
    @Test
    fun `SSLNoAuth WebClientService with empty additionalHeaders does not modify headers`() {
        val endPointJson = sslNoAuthEndpointWithHeadersField()
        val endPointWithHeadersJson = sslNoAuthEndpointWithHeadersField(emptyAdditionalHeaders)
        validateHeadersDidNotChangeWithEmptyAdditionalHeaders(endPointJson, endPointWithHeadersJson)
    }

    @Test
    fun `SSLNoAuth WebClientService accepts one additionalHeaders`() {
        val endPointWithHeadersJson = sslNoAuthEndpointWithHeadersField(oneAdditionalParameter)
        acceptsOneAdditionalHeadersTest(endPointWithHeadersJson)
    }

    @Test
    fun `SSLNoAuth WebClientService accepts multiple additionalHeaders`() {
        val endPointWithHeadersJson = sslNoAuthEndpointWithHeadersField(threeAdditionalHeaders)
        acceptsMultipleAdditionalHeaders(endPointWithHeadersJson)
    }

    @Test
    fun `SSLNoAuth WebClientService additionalHeaders can overwrite default Content-Type`() {
        // default content type is application/json
        val endPointWithHeadersJson = sslNoAuthEndpointWithHeadersField(contentTypeAdditionalHeader)
        additionalHeadersChangedContentTypeToAPPLICATION_XML(endPointWithHeadersJson)
    }

    @Test
    fun `SSLNoAuth WebClientService throws BluePrintProcessorException if additionalHeaders contain Authorization`() {
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = sslNoAuthEndpointWithHeadersField(additionalHeadersWithAuth)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
        // spec says headers are case insensitive...
        assertFailsWith(exceptionClass = BluePrintProcessorException::class) {
            val endPointWithHeadersJson = sslNoAuthEndpointWithHeadersField(additionalHeadersWithAuthLowercased)
            attemptToPutAuthorizationHeaderIntoAdditionalHeaders(endPointWithHeadersJson)
        }
    }

    companion object BluePrintRestLibPropertyServiceTest {

        val defaultMapper = ObjectMapper()
        val expectedTokenAuthDefaultHeaders = mapOf<String, String>(
            "Content-Type" to "application/json",
            "Accept" to "application/json",
            "Authorization" to "72178473kjshdkjgvbsdkjv903274908"
        )

        val endPointWithHeadersJsonWithBasicAuthHeader = basicAuthEndpointWithHeadersField(
            """,
              "additionalHeaders" : {
                 "authorization": "Basic aGF2ZTphbmljZWRheQo="
              }
            """.trimIndent()
        )

        private fun sslTokenAuthEndpointWithHeadersField(headers: String = ""): String =
            """{
            "type" : "ssl-token-auth",
            "url" : "https://localhost:8443",
            "keyStoreInstance" : "PKCS12",
            "sslTrust" : "src/test/resources/keystore.p12",
            "sslTrustPassword" : "changeit",
              "tokenAuth" : {
                "token" : "72178473kjshdkjgvbsdkjv903274908"
              }$headers
            }
            """.trimIndent()

        private fun sslBasicAuthEndpointWithHeadersField(headers: String = ""): String =
            """{
          "type" : "ssl-basic-auth",
          "url" : "https://localhost:8443",
          "keyStoreInstance" : "PKCS12",
          "sslTrust" : "src/test/resources/keystore.p12",
          "sslTrustPassword" : "changeit",
          "basicAuth" : {
            "username" : "admin",
            "password" : "cds"
          }$headers
        }
            """.trimIndent()

        private fun sslNoAuthEndpointWithHeadersField(headers: String = ""): String = """{
          "type" : "ssl-no-auth",
          "url" : "https://localhost:8443",
          "keyStoreInstance" : "PKCS12",
          "sslTrust" : "src/test/resources/keystore.p12",
          "sslTrustPassword" : "changeit",
          "sslKey" : "src/test/resources/keystore.p12",
          "sslKeyPassword" : "changeit"$headers
        }
        """.trimIndent()

        // Don't forget to supply "," as the first char to make valid JSON
        private fun basicAuthEndpointWithHeadersField(headers: String = ""): String =
            """{
              "type": "basic-auth",
              "url": "http://127.0.0.1:8000",
              "username": "user",
              "password": "pass"$headers
            }
            """.trimIndent()

        private val emptyAdditionalHeaders = """,
          "additionalHeaders" : {
          }
        """.trimIndent()

        private val oneAdditionalParameter = """,
          "additionalHeaders" : {
            "key1": "value1"
          }
        """.trimIndent()

        private val threeAdditionalHeaders = """,
          "additionalHeaders" : {
            "key1": "value1",
            "key2": "value2",
            "key3": "value3"
          }
        """.trimIndent()

        private val contentTypeAdditionalHeader = """,
          "additionalHeaders" : {
            "${HttpHeaders.CONTENT_TYPE}": "${MediaType.APPLICATION_XML}"
          }
        """.trimIndent()

        private val additionalHeadersWithAuth = """,
          "additionalHeaders" : {
             "Authorization": "Basic aGF2ZTphbmljZWRheQo="
          }
        """.trimIndent()

        private val additionalHeadersWithAuthLowercased = """,
          "additionalHeaders" : {
             "authorization": "Basic aGF2ZTphbmljZWRheQo="
          }
        """.trimIndent()
    }
}