@itentialopensource/adapter-oracle_cloud 0.1.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTH.md +39 -0
- package/BROKER.md +199 -0
- package/CALLS.md +859 -0
- package/CHANGELOG.md +17 -2
- package/CODE_OF_CONDUCT.md +12 -17
- package/CONTRIBUTING.md +3 -148
- package/ENHANCE.md +69 -0
- package/PROPERTIES.md +641 -0
- package/README.md +235 -576
- package/SUMMARY.md +9 -0
- package/SYSTEMINFO.md +11 -0
- package/TROUBLESHOOT.md +47 -0
- package/adapter.js +371 -270
- package/adapterBase.js +843 -419
- package/changelogs/changelog.md +16 -0
- package/entities/.generic/action.json +105 -0
- package/entities/.generic/schema.json +6 -1
- package/error.json +6 -0
- package/metadata.json +49 -0
- package/package.json +24 -24
- package/pronghorn.json +680 -100
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +830 -9
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +11867 -0
- package/report/adapter-openapi.yaml +11966 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1653049581192.json +120 -0
- package/report/updateReport1691507422430.json +120 -0
- package/report/updateReport1692202455354.json +120 -0
- package/report/updateReport1694460824360.json +120 -0
- package/report/updateReport1698420559437.json +120 -0
- package/sampleProperties.json +153 -3
- package/test/integration/adapterTestBasicGet.js +3 -5
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +176 -127
- package/test/unit/adapterBaseTestUnit.js +388 -308
- package/test/unit/adapterTestUnit.js +643 -402
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +12 -57
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +5 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +123 -53
- package/utils/tbUtils.js +92 -48
- package/utils/testRunner.js +17 -17
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
|
@@ -3,12 +3,15 @@
|
|
|
3
3
|
// Set globals
|
|
4
4
|
/* global describe it log pronghornProps */
|
|
5
5
|
/* eslint no-unused-vars: warn */
|
|
6
|
+
/* eslint no-underscore-dangle: warn */
|
|
7
|
+
/* eslint import/no-dynamic-require:warn */
|
|
6
8
|
|
|
7
9
|
// include required items for testing & logging
|
|
8
10
|
const assert = require('assert');
|
|
9
11
|
const fs = require('fs');
|
|
10
|
-
const mocha = require('mocha');
|
|
11
12
|
const path = require('path');
|
|
13
|
+
const util = require('util');
|
|
14
|
+
const mocha = require('mocha');
|
|
12
15
|
const winston = require('winston');
|
|
13
16
|
const { expect } = require('chai');
|
|
14
17
|
const { use } = require('chai');
|
|
@@ -18,20 +21,33 @@ const anything = td.matchers.anything();
|
|
|
18
21
|
|
|
19
22
|
// stub and attemptTimeout are used throughout the code so set them here
|
|
20
23
|
let logLevel = 'none';
|
|
21
|
-
const stub = true;
|
|
22
24
|
const isRapidFail = false;
|
|
23
25
|
const isSaveMockData = false;
|
|
24
|
-
|
|
26
|
+
|
|
27
|
+
// read in the properties from the sampleProperties files
|
|
28
|
+
let adaptdir = __dirname;
|
|
29
|
+
if (adaptdir.endsWith('/test/integration')) {
|
|
30
|
+
adaptdir = adaptdir.substring(0, adaptdir.length - 17);
|
|
31
|
+
} else if (adaptdir.endsWith('/test/unit')) {
|
|
32
|
+
adaptdir = adaptdir.substring(0, adaptdir.length - 10);
|
|
33
|
+
}
|
|
34
|
+
const samProps = require(`${adaptdir}/sampleProperties.json`).properties;
|
|
25
35
|
|
|
26
36
|
// these variables can be changed to run in integrated mode so easier to set them here
|
|
27
37
|
// always check these in with bogus data!!!
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
38
|
+
samProps.stub = true;
|
|
39
|
+
samProps.host = 'replace.hostorip.here';
|
|
40
|
+
samProps.authentication.username = 'username';
|
|
41
|
+
samProps.authentication.password = 'password';
|
|
42
|
+
samProps.protocol = 'http';
|
|
43
|
+
samProps.port = 80;
|
|
44
|
+
samProps.ssl.enabled = false;
|
|
45
|
+
samProps.ssl.accept_invalid_cert = false;
|
|
46
|
+
if (samProps.request.attempt_timeout < 30000) {
|
|
47
|
+
samProps.request.attempt_timeout = 30000;
|
|
48
|
+
}
|
|
49
|
+
const attemptTimeout = samProps.request.attempt_timeout;
|
|
50
|
+
const { stub } = samProps;
|
|
35
51
|
|
|
36
52
|
// these are the adapter properties. You generally should not need to alter
|
|
37
53
|
// any of these after they are initially set up
|
|
@@ -41,104 +57,9 @@ global.pronghornProps = {
|
|
|
41
57
|
},
|
|
42
58
|
adapterProps: {
|
|
43
59
|
adapters: [{
|
|
44
|
-
id: 'Test-
|
|
60
|
+
id: 'Test-oracle_cloud',
|
|
45
61
|
type: 'OracleCloud',
|
|
46
|
-
properties:
|
|
47
|
-
host,
|
|
48
|
-
port,
|
|
49
|
-
base_path: '/',
|
|
50
|
-
version: '',
|
|
51
|
-
cache_location: 'none',
|
|
52
|
-
encode_pathvars: true,
|
|
53
|
-
save_metric: false,
|
|
54
|
-
stub,
|
|
55
|
-
protocol,
|
|
56
|
-
authentication: {
|
|
57
|
-
auth_method: 'request_token',
|
|
58
|
-
username,
|
|
59
|
-
password,
|
|
60
|
-
token: '',
|
|
61
|
-
invalid_token_error: 401,
|
|
62
|
-
token_timeout: 1800000,
|
|
63
|
-
token_cache: 'local',
|
|
64
|
-
auth_field: 'header.headers.X-AUTH-TOKEN',
|
|
65
|
-
auth_field_format: '{token}',
|
|
66
|
-
auth_logging: false,
|
|
67
|
-
client_id: '',
|
|
68
|
-
client_secret: '',
|
|
69
|
-
grant_type: ''
|
|
70
|
-
},
|
|
71
|
-
healthcheck: {
|
|
72
|
-
type: 'none',
|
|
73
|
-
frequency: 60000,
|
|
74
|
-
query_object: {}
|
|
75
|
-
},
|
|
76
|
-
throttle: {
|
|
77
|
-
throttle_enabled: false,
|
|
78
|
-
number_pronghorns: 1,
|
|
79
|
-
sync_async: 'sync',
|
|
80
|
-
max_in_queue: 1000,
|
|
81
|
-
concurrent_max: 1,
|
|
82
|
-
expire_timeout: 0,
|
|
83
|
-
avg_runtime: 200,
|
|
84
|
-
priorities: [
|
|
85
|
-
{
|
|
86
|
-
value: 0,
|
|
87
|
-
percent: 100
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
},
|
|
91
|
-
request: {
|
|
92
|
-
number_redirects: 0,
|
|
93
|
-
number_retries: 3,
|
|
94
|
-
limit_retry_error: [0],
|
|
95
|
-
failover_codes: [],
|
|
96
|
-
attempt_timeout: attemptTimeout,
|
|
97
|
-
global_request: {
|
|
98
|
-
payload: {},
|
|
99
|
-
uriOptions: {},
|
|
100
|
-
addlHeaders: {},
|
|
101
|
-
authData: {}
|
|
102
|
-
},
|
|
103
|
-
healthcheck_on_timeout: true,
|
|
104
|
-
return_raw: true,
|
|
105
|
-
archiving: false,
|
|
106
|
-
return_request: false
|
|
107
|
-
},
|
|
108
|
-
proxy: {
|
|
109
|
-
enabled: false,
|
|
110
|
-
host: '',
|
|
111
|
-
port: 1,
|
|
112
|
-
protocol: 'http',
|
|
113
|
-
username: '',
|
|
114
|
-
password: ''
|
|
115
|
-
},
|
|
116
|
-
ssl: {
|
|
117
|
-
ecdhCurve: '',
|
|
118
|
-
enabled: sslenable,
|
|
119
|
-
accept_invalid_cert: sslinvalid,
|
|
120
|
-
ca_file: '',
|
|
121
|
-
key_file: '',
|
|
122
|
-
cert_file: '',
|
|
123
|
-
secure_protocol: '',
|
|
124
|
-
ciphers: ''
|
|
125
|
-
},
|
|
126
|
-
mongo: {
|
|
127
|
-
host: '',
|
|
128
|
-
port: 0,
|
|
129
|
-
database: '',
|
|
130
|
-
username: '',
|
|
131
|
-
password: '',
|
|
132
|
-
replSet: '',
|
|
133
|
-
db_ssl: {
|
|
134
|
-
enabled: false,
|
|
135
|
-
accept_invalid_cert: false,
|
|
136
|
-
ca_file: '',
|
|
137
|
-
key_file: '',
|
|
138
|
-
cert_file: ''
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
}
|
|
62
|
+
properties: samProps
|
|
142
63
|
}]
|
|
143
64
|
}
|
|
144
65
|
};
|
|
@@ -414,6 +335,134 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
414
335
|
}).timeout(attemptTimeout);
|
|
415
336
|
});
|
|
416
337
|
|
|
338
|
+
// broker tests
|
|
339
|
+
describe('#getDevicesFiltered - errors', () => {
|
|
340
|
+
it('should work if integrated but since no mockdata should error when run standalone', (done) => {
|
|
341
|
+
try {
|
|
342
|
+
const opts = {
|
|
343
|
+
filter: {
|
|
344
|
+
name: 'deviceName'
|
|
345
|
+
}
|
|
346
|
+
};
|
|
347
|
+
a.getDevicesFiltered(opts, (data, error) => {
|
|
348
|
+
try {
|
|
349
|
+
if (stub) {
|
|
350
|
+
if (samProps.devicebroker.getDevicesFiltered[0].handleFailure === 'ignore') {
|
|
351
|
+
assert.equal(null, error);
|
|
352
|
+
assert.notEqual(undefined, data);
|
|
353
|
+
assert.notEqual(null, data);
|
|
354
|
+
assert.equal(0, data.total);
|
|
355
|
+
assert.equal(0, data.list.length);
|
|
356
|
+
} else {
|
|
357
|
+
const displayE = 'Error 400 received on request';
|
|
358
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
359
|
+
}
|
|
360
|
+
} else {
|
|
361
|
+
runCommonAsserts(data, error);
|
|
362
|
+
}
|
|
363
|
+
done();
|
|
364
|
+
} catch (err) {
|
|
365
|
+
log.error(`Test Failure: ${err}`);
|
|
366
|
+
done(err);
|
|
367
|
+
}
|
|
368
|
+
});
|
|
369
|
+
} catch (error) {
|
|
370
|
+
log.error(`Adapter Exception: ${error}`);
|
|
371
|
+
done(error);
|
|
372
|
+
}
|
|
373
|
+
}).timeout(attemptTimeout);
|
|
374
|
+
});
|
|
375
|
+
|
|
376
|
+
describe('#iapGetDeviceCount - errors', () => {
|
|
377
|
+
it('should work if integrated but since no mockdata should error when run standalone', (done) => {
|
|
378
|
+
try {
|
|
379
|
+
const opts = {
|
|
380
|
+
filter: {
|
|
381
|
+
name: 'deviceName'
|
|
382
|
+
}
|
|
383
|
+
};
|
|
384
|
+
a.iapGetDeviceCount((data, error) => {
|
|
385
|
+
try {
|
|
386
|
+
if (stub) {
|
|
387
|
+
if (samProps.devicebroker.getDevicesFiltered[0].handleFailure === 'ignore') {
|
|
388
|
+
assert.equal(null, error);
|
|
389
|
+
assert.notEqual(undefined, data);
|
|
390
|
+
assert.notEqual(null, data);
|
|
391
|
+
assert.equal(0, data.count);
|
|
392
|
+
} else {
|
|
393
|
+
const displayE = 'Error 400 received on request';
|
|
394
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
395
|
+
}
|
|
396
|
+
} else {
|
|
397
|
+
runCommonAsserts(data, error);
|
|
398
|
+
}
|
|
399
|
+
done();
|
|
400
|
+
} catch (err) {
|
|
401
|
+
log.error(`Test Failure: ${err}`);
|
|
402
|
+
done(err);
|
|
403
|
+
}
|
|
404
|
+
});
|
|
405
|
+
} catch (error) {
|
|
406
|
+
log.error(`Adapter Exception: ${error}`);
|
|
407
|
+
done(error);
|
|
408
|
+
}
|
|
409
|
+
}).timeout(attemptTimeout);
|
|
410
|
+
});
|
|
411
|
+
|
|
412
|
+
// exposed cache tests
|
|
413
|
+
describe('#iapPopulateEntityCache - errors', () => {
|
|
414
|
+
it('should work if integrated but since no mockdata should error when run standalone', (done) => {
|
|
415
|
+
try {
|
|
416
|
+
a.iapPopulateEntityCache('Device', (data, error) => {
|
|
417
|
+
try {
|
|
418
|
+
if (stub) {
|
|
419
|
+
assert.equal(null, data);
|
|
420
|
+
assert.notEqual(undefined, error);
|
|
421
|
+
assert.notEqual(null, error);
|
|
422
|
+
done();
|
|
423
|
+
} else {
|
|
424
|
+
assert.equal(undefined, error);
|
|
425
|
+
assert.equal('success', data[0]);
|
|
426
|
+
done();
|
|
427
|
+
}
|
|
428
|
+
} catch (err) {
|
|
429
|
+
log.error(`Test Failure: ${err}`);
|
|
430
|
+
done(err);
|
|
431
|
+
}
|
|
432
|
+
});
|
|
433
|
+
} catch (error) {
|
|
434
|
+
log.error(`Adapter Exception: ${error}`);
|
|
435
|
+
done(error);
|
|
436
|
+
}
|
|
437
|
+
}).timeout(attemptTimeout);
|
|
438
|
+
});
|
|
439
|
+
|
|
440
|
+
describe('#iapRetrieveEntitiesCache - errors', () => {
|
|
441
|
+
it('should work if integrated but since no mockdata should error when run standalone', (done) => {
|
|
442
|
+
try {
|
|
443
|
+
a.iapRetrieveEntitiesCache('Device', {}, (data, error) => {
|
|
444
|
+
try {
|
|
445
|
+
if (stub) {
|
|
446
|
+
assert.equal(null, data);
|
|
447
|
+
assert.notEqual(null, error);
|
|
448
|
+
assert.notEqual(undefined, error);
|
|
449
|
+
} else {
|
|
450
|
+
assert.equal(undefined, error);
|
|
451
|
+
assert.notEqual(null, data);
|
|
452
|
+
assert.notEqual(undefined, data);
|
|
453
|
+
}
|
|
454
|
+
done();
|
|
455
|
+
} catch (err) {
|
|
456
|
+
log.error(`Test Failure: ${err}`);
|
|
457
|
+
done(err);
|
|
458
|
+
}
|
|
459
|
+
});
|
|
460
|
+
} catch (error) {
|
|
461
|
+
log.error(`Adapter Exception: ${error}`);
|
|
462
|
+
done(error);
|
|
463
|
+
}
|
|
464
|
+
}).timeout(attemptTimeout);
|
|
465
|
+
});
|
|
417
466
|
/*
|
|
418
467
|
-----------------------------------------------------------------------
|
|
419
468
|
-----------------------------------------------------------------------
|
|
@@ -1229,7 +1278,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
1229
1278
|
try {
|
|
1230
1279
|
if (stub) {
|
|
1231
1280
|
const displayE = 'Error 400 received on request';
|
|
1232
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
1281
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
1233
1282
|
} else {
|
|
1234
1283
|
runCommonAsserts(data, error);
|
|
1235
1284
|
}
|
|
@@ -1937,7 +1986,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
1937
1986
|
try {
|
|
1938
1987
|
if (stub) {
|
|
1939
1988
|
const displayE = 'Error 400 received on request';
|
|
1940
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
1989
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
1941
1990
|
} else {
|
|
1942
1991
|
runCommonAsserts(data, error);
|
|
1943
1992
|
}
|
|
@@ -1962,7 +2011,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
1962
2011
|
try {
|
|
1963
2012
|
if (stub) {
|
|
1964
2013
|
const displayE = 'Error 400 received on request';
|
|
1965
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
2014
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
1966
2015
|
} else {
|
|
1967
2016
|
runCommonAsserts(data, error);
|
|
1968
2017
|
}
|
|
@@ -1987,7 +2036,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
1987
2036
|
try {
|
|
1988
2037
|
if (stub) {
|
|
1989
2038
|
const displayE = 'Error 400 received on request';
|
|
1990
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
2039
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
1991
2040
|
} else {
|
|
1992
2041
|
runCommonAsserts(data, error);
|
|
1993
2042
|
}
|
|
@@ -2013,7 +2062,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
2013
2062
|
try {
|
|
2014
2063
|
if (stub) {
|
|
2015
2064
|
const displayE = 'Error 400 received on request';
|
|
2016
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
2065
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
2017
2066
|
} else {
|
|
2018
2067
|
runCommonAsserts(data, error);
|
|
2019
2068
|
}
|
|
@@ -2066,7 +2115,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
2066
2115
|
try {
|
|
2067
2116
|
if (stub) {
|
|
2068
2117
|
const displayE = 'Error 400 received on request';
|
|
2069
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
2118
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
2070
2119
|
} else {
|
|
2071
2120
|
runCommonAsserts(data, error);
|
|
2072
2121
|
}
|
|
@@ -2091,7 +2140,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
2091
2140
|
try {
|
|
2092
2141
|
if (stub) {
|
|
2093
2142
|
const displayE = 'Error 400 received on request';
|
|
2094
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
2143
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
2095
2144
|
} else {
|
|
2096
2145
|
runCommonAsserts(data, error);
|
|
2097
2146
|
}
|
|
@@ -2116,7 +2165,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
2116
2165
|
try {
|
|
2117
2166
|
if (stub) {
|
|
2118
2167
|
const displayE = 'Error 400 received on request';
|
|
2119
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
2168
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
2120
2169
|
} else {
|
|
2121
2170
|
runCommonAsserts(data, error);
|
|
2122
2171
|
}
|
|
@@ -3050,7 +3099,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3050
3099
|
try {
|
|
3051
3100
|
if (stub) {
|
|
3052
3101
|
const displayE = 'Error 400 received on request';
|
|
3053
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3102
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3054
3103
|
} else {
|
|
3055
3104
|
runCommonAsserts(data, error);
|
|
3056
3105
|
}
|
|
@@ -3075,7 +3124,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3075
3124
|
try {
|
|
3076
3125
|
if (stub) {
|
|
3077
3126
|
const displayE = 'Error 400 received on request';
|
|
3078
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3127
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3079
3128
|
} else {
|
|
3080
3129
|
runCommonAsserts(data, error);
|
|
3081
3130
|
}
|
|
@@ -3100,7 +3149,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3100
3149
|
try {
|
|
3101
3150
|
if (stub) {
|
|
3102
3151
|
const displayE = 'Error 400 received on request';
|
|
3103
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3152
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3104
3153
|
} else {
|
|
3105
3154
|
runCommonAsserts(data, error);
|
|
3106
3155
|
}
|
|
@@ -3125,7 +3174,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3125
3174
|
try {
|
|
3126
3175
|
if (stub) {
|
|
3127
3176
|
const displayE = 'Error 400 received on request';
|
|
3128
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3177
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3129
3178
|
} else {
|
|
3130
3179
|
runCommonAsserts(data, error);
|
|
3131
3180
|
}
|
|
@@ -3150,7 +3199,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3150
3199
|
try {
|
|
3151
3200
|
if (stub) {
|
|
3152
3201
|
const displayE = 'Error 400 received on request';
|
|
3153
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3202
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3154
3203
|
} else {
|
|
3155
3204
|
runCommonAsserts(data, error);
|
|
3156
3205
|
}
|
|
@@ -3175,7 +3224,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3175
3224
|
try {
|
|
3176
3225
|
if (stub) {
|
|
3177
3226
|
const displayE = 'Error 400 received on request';
|
|
3178
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3227
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3179
3228
|
} else {
|
|
3180
3229
|
runCommonAsserts(data, error);
|
|
3181
3230
|
}
|
|
@@ -3200,7 +3249,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3200
3249
|
try {
|
|
3201
3250
|
if (stub) {
|
|
3202
3251
|
const displayE = 'Error 400 received on request';
|
|
3203
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3252
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3204
3253
|
} else {
|
|
3205
3254
|
runCommonAsserts(data, error);
|
|
3206
3255
|
}
|
|
@@ -3225,7 +3274,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3225
3274
|
try {
|
|
3226
3275
|
if (stub) {
|
|
3227
3276
|
const displayE = 'Error 400 received on request';
|
|
3228
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3277
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3229
3278
|
} else {
|
|
3230
3279
|
runCommonAsserts(data, error);
|
|
3231
3280
|
}
|
|
@@ -3250,7 +3299,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3250
3299
|
try {
|
|
3251
3300
|
if (stub) {
|
|
3252
3301
|
const displayE = 'Error 400 received on request';
|
|
3253
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3302
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3254
3303
|
} else {
|
|
3255
3304
|
runCommonAsserts(data, error);
|
|
3256
3305
|
}
|
|
@@ -3275,7 +3324,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3275
3324
|
try {
|
|
3276
3325
|
if (stub) {
|
|
3277
3326
|
const displayE = 'Error 400 received on request';
|
|
3278
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3327
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3279
3328
|
} else {
|
|
3280
3329
|
runCommonAsserts(data, error);
|
|
3281
3330
|
}
|
|
@@ -3300,7 +3349,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3300
3349
|
try {
|
|
3301
3350
|
if (stub) {
|
|
3302
3351
|
const displayE = 'Error 400 received on request';
|
|
3303
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3352
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3304
3353
|
} else {
|
|
3305
3354
|
runCommonAsserts(data, error);
|
|
3306
3355
|
}
|
|
@@ -3645,7 +3694,7 @@ describe('[integration] OracleCloud Adapter Test', () => {
|
|
|
3645
3694
|
try {
|
|
3646
3695
|
if (stub) {
|
|
3647
3696
|
const displayE = 'Error 400 received on request';
|
|
3648
|
-
runErrorAsserts(data, error, 'AD.500', 'Test-
|
|
3697
|
+
runErrorAsserts(data, error, 'AD.500', 'Test-oracle_cloud-connectorRest-handleEndResponse', displayE);
|
|
3649
3698
|
} else {
|
|
3650
3699
|
runCommonAsserts(data, error);
|
|
3651
3700
|
}
|