@itentialopensource/adapter-efficientip_solidserver 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 +1465 -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 +383 -263
- package/adapterBase.js +854 -408
- package/changelogs/changelog.md +16 -0
- package/entities/.generic/action.json +110 -5
- package/entities/.generic/schema.json +6 -1
- package/error.json +6 -0
- package/metadata.json +49 -0
- package/package.json +27 -22
- package/pronghorn.json +691 -88
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +828 -7
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +41906 -0
- package/report/adapter-openapi.yaml +23138 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1653233995404.json +120 -0
- package/report/updateReport1691508450223.json +120 -0
- package/report/updateReport1692202927301.json +120 -0
- package/report/updateReport1694465845842.json +120 -0
- package/report/updateReport1698421858198.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 +155 -106
- package/test/unit/adapterBaseTestUnit.js +388 -308
- package/test/unit/adapterTestUnit.js +484 -243
- package/utils/adapterInfo.js +206 -0
- package/utils/addAuth.js +94 -0
- package/utils/artifactize.js +1 -1
- package/utils/basicGet.js +1 -14
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +179 -0
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +14 -16
- package/utils/packModificationScript.js +1 -1
- package/utils/patches2bundledDeps.js +90 -0
- package/utils/pre-commit.sh +5 -0
- package/utils/removeHooks.js +20 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +129 -53
- package/utils/tbUtils.js +125 -25
- package/utils/testRunner.js +17 -17
- package/utils/troubleshootingAdapter.js +10 -31
- package/workflows/README.md +0 -3
package/sampleProperties.json
CHANGED
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
"properties": {
|
|
5
5
|
"host": "localhost",
|
|
6
6
|
"port": 443,
|
|
7
|
+
"choosepath": "",
|
|
7
8
|
"base_path": "/rest",
|
|
8
9
|
"version": "",
|
|
9
10
|
"cache_location": "none",
|
|
10
11
|
"encode_pathvars": true,
|
|
11
|
-
"
|
|
12
|
+
"encode_queryvars": true,
|
|
13
|
+
"save_metric": false,
|
|
12
14
|
"stub": true,
|
|
13
15
|
"protocol": "https",
|
|
14
16
|
"authentication": {
|
|
@@ -24,12 +26,27 @@
|
|
|
24
26
|
"auth_logging": false,
|
|
25
27
|
"client_id": "",
|
|
26
28
|
"client_secret": "",
|
|
27
|
-
"grant_type": ""
|
|
29
|
+
"grant_type": "",
|
|
30
|
+
"sensitive": [],
|
|
31
|
+
"sso": {
|
|
32
|
+
"protocol": "",
|
|
33
|
+
"host": "",
|
|
34
|
+
"port": 0
|
|
35
|
+
},
|
|
36
|
+
"multiStepAuthCalls": [
|
|
37
|
+
{
|
|
38
|
+
"name": "",
|
|
39
|
+
"requestFields": {},
|
|
40
|
+
"responseFields": {},
|
|
41
|
+
"successfullResponseCode": 200
|
|
42
|
+
}
|
|
43
|
+
]
|
|
28
44
|
},
|
|
29
45
|
"healthcheck": {
|
|
30
46
|
"type": "intermittent",
|
|
31
47
|
"frequency": 600000,
|
|
32
|
-
"query_object": {}
|
|
48
|
+
"query_object": {},
|
|
49
|
+
"addlHeaders": {}
|
|
33
50
|
},
|
|
34
51
|
"throttle": {
|
|
35
52
|
"throttle_enabled": false,
|
|
@@ -97,6 +114,139 @@
|
|
|
97
114
|
"key_file": "",
|
|
98
115
|
"cert_file": ""
|
|
99
116
|
}
|
|
117
|
+
},
|
|
118
|
+
"devicebroker": {
|
|
119
|
+
"getDevice": [
|
|
120
|
+
{
|
|
121
|
+
"path": "/get/devices/{id}",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"query": {},
|
|
124
|
+
"body": {},
|
|
125
|
+
"headers": {},
|
|
126
|
+
"handleFailure": "ignore",
|
|
127
|
+
"requestFields": {
|
|
128
|
+
"id": "name"
|
|
129
|
+
},
|
|
130
|
+
"responseDatakey": "",
|
|
131
|
+
"responseFields": {
|
|
132
|
+
"name": "host",
|
|
133
|
+
"ostype": "os",
|
|
134
|
+
"ostypePrefix": "system-",
|
|
135
|
+
"ipaddress": "attributes.ipaddr",
|
|
136
|
+
"port": "443"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"getDevicesFiltered": [
|
|
141
|
+
{
|
|
142
|
+
"path": "/get/devices",
|
|
143
|
+
"method": "GET",
|
|
144
|
+
"pagination": {
|
|
145
|
+
"offsetVar": "",
|
|
146
|
+
"limitVar": "",
|
|
147
|
+
"incrementBy": "limit",
|
|
148
|
+
"requestLocation": "query"
|
|
149
|
+
},
|
|
150
|
+
"query": {},
|
|
151
|
+
"body": {},
|
|
152
|
+
"headers": {},
|
|
153
|
+
"handleFailure": "ignore",
|
|
154
|
+
"requestFields": {},
|
|
155
|
+
"responseDatakey": "",
|
|
156
|
+
"responseFields": {
|
|
157
|
+
"name": "host",
|
|
158
|
+
"ostype": "os",
|
|
159
|
+
"ostypePrefix": "system-",
|
|
160
|
+
"ipaddress": "attributes.ipaddr",
|
|
161
|
+
"port": "443"
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"isAlive": [
|
|
166
|
+
{
|
|
167
|
+
"path": "/get/devices/{id}/status",
|
|
168
|
+
"method": "GET",
|
|
169
|
+
"query": {},
|
|
170
|
+
"body": {},
|
|
171
|
+
"headers": {},
|
|
172
|
+
"handleFailure": "ignore",
|
|
173
|
+
"requestFields": {
|
|
174
|
+
"id": "name"
|
|
175
|
+
},
|
|
176
|
+
"responseDatakey": "",
|
|
177
|
+
"responseFields": {
|
|
178
|
+
"status": "status",
|
|
179
|
+
"statusValue": "online"
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"getConfig": [
|
|
184
|
+
{
|
|
185
|
+
"path": "/get/devices/{id}/configPart1",
|
|
186
|
+
"method": "GET",
|
|
187
|
+
"query": {},
|
|
188
|
+
"body": {},
|
|
189
|
+
"headers": {},
|
|
190
|
+
"handleFailure": "ignore",
|
|
191
|
+
"requestFields": {
|
|
192
|
+
"id": "name"
|
|
193
|
+
},
|
|
194
|
+
"responseDatakey": "",
|
|
195
|
+
"responseFields": {}
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"getCount": [
|
|
199
|
+
{
|
|
200
|
+
"path": "/get/devices",
|
|
201
|
+
"method": "GET",
|
|
202
|
+
"query": {},
|
|
203
|
+
"body": {},
|
|
204
|
+
"headers": {},
|
|
205
|
+
"handleFailure": "ignore",
|
|
206
|
+
"requestFields": {},
|
|
207
|
+
"responseDatakey": "",
|
|
208
|
+
"responseFields": {}
|
|
209
|
+
}
|
|
210
|
+
]
|
|
211
|
+
},
|
|
212
|
+
"cache": {
|
|
213
|
+
"enabled": false,
|
|
214
|
+
"entities": [
|
|
215
|
+
{
|
|
216
|
+
"entityType": "",
|
|
217
|
+
"frequency": 1440,
|
|
218
|
+
"flushOnFail": false,
|
|
219
|
+
"limit": 1000,
|
|
220
|
+
"retryAttempts": 5,
|
|
221
|
+
"sort": true,
|
|
222
|
+
"populate": [
|
|
223
|
+
{
|
|
224
|
+
"path": "",
|
|
225
|
+
"method": "GET",
|
|
226
|
+
"pagination": {
|
|
227
|
+
"offsetVar": "",
|
|
228
|
+
"limitVar": "",
|
|
229
|
+
"incrementBy": "limit",
|
|
230
|
+
"requestLocation": "query"
|
|
231
|
+
},
|
|
232
|
+
"query": {},
|
|
233
|
+
"body": {},
|
|
234
|
+
"headers": {},
|
|
235
|
+
"handleFailure": "ignore",
|
|
236
|
+
"requestFields": {},
|
|
237
|
+
"responseDatakey": "",
|
|
238
|
+
"responseFields": {}
|
|
239
|
+
}
|
|
240
|
+
],
|
|
241
|
+
"cachedTasks": [
|
|
242
|
+
{
|
|
243
|
+
"name": "",
|
|
244
|
+
"filterField": "",
|
|
245
|
+
"filterLoc": ""
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
}
|
|
249
|
+
]
|
|
100
250
|
}
|
|
101
251
|
},
|
|
102
252
|
"groups": [],
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
/* eslint import/no-dynamic-require: warn */
|
|
8
8
|
/* eslint import/no-unresolved: warn */
|
|
9
9
|
|
|
10
|
-
const mocha = require('mocha');
|
|
11
10
|
const path = require('path');
|
|
12
11
|
const assert = require('assert');
|
|
12
|
+
const mocha = require('mocha');
|
|
13
13
|
const itParam = require('mocha-param');
|
|
14
14
|
|
|
15
15
|
const utils = require('../../utils/tbUtils');
|
|
@@ -18,12 +18,10 @@ const { name } = require('../../package.json');
|
|
|
18
18
|
const { methods } = require('../../pronghorn.json');
|
|
19
19
|
|
|
20
20
|
const getPronghornProps = (iapDir) => {
|
|
21
|
-
const { Discovery } = require('@itential/itential-utils');
|
|
22
21
|
console.log('Retrieving properties.json file...');
|
|
23
22
|
const rawProps = require(path.join(iapDir, 'properties.json'));
|
|
24
23
|
console.log('Decrypting properties...');
|
|
25
|
-
const
|
|
26
|
-
const pronghornProps = utils.decryptProperties(rawProps, path.join(__dirname, '..'), discovery);
|
|
24
|
+
const pronghornProps = utils.decryptProperties(rawProps, iapDir);
|
|
27
25
|
console.log('Found properties.\n');
|
|
28
26
|
return pronghornProps;
|
|
29
27
|
};
|
|
@@ -34,7 +32,7 @@ describe('[integration] Adapter BasicGET Test', () => {
|
|
|
34
32
|
context('Testing GET calls without query parameters', () => {
|
|
35
33
|
before(async () => {
|
|
36
34
|
const iapDir = path.join(__dirname, '../../../../../');
|
|
37
|
-
if (!utils.
|
|
35
|
+
if (!utils.areWeUnderIAPinstallationDirectory()) {
|
|
38
36
|
const sampleProperties = require('../../sampleProperties.json');
|
|
39
37
|
const adapter = { properties: sampleProperties };
|
|
40
38
|
a = basicGet.getAdapterInstance(adapter);
|
|
@@ -3,9 +3,12 @@
|
|
|
3
3
|
/* global describe it context before after */
|
|
4
4
|
/* eslint no-unused-vars: warn */
|
|
5
5
|
|
|
6
|
-
const mocha = require('mocha');
|
|
7
6
|
const assert = require('assert');
|
|
8
|
-
const
|
|
7
|
+
const http = require('http');
|
|
8
|
+
const https = require('https');
|
|
9
|
+
const mocha = require('mocha');
|
|
10
|
+
const ping = require('ping');
|
|
11
|
+
const dnsLookup = require('dns-lookup-promise');
|
|
9
12
|
|
|
10
13
|
let host;
|
|
11
14
|
process.argv.forEach((val) => {
|
|
@@ -16,78 +19,124 @@ process.argv.forEach((val) => {
|
|
|
16
19
|
|
|
17
20
|
describe('[integration] Adapter Test', () => {
|
|
18
21
|
context(`Testing network connection on ${host}`, () => {
|
|
19
|
-
before(() => {
|
|
20
|
-
diagnostics.setTestURL(host);
|
|
21
|
-
});
|
|
22
|
-
|
|
23
22
|
after((done) => {
|
|
24
23
|
done();
|
|
25
24
|
});
|
|
26
25
|
|
|
27
26
|
it('DNS resolve', (done) => {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
27
|
+
dnsLookup(host)
|
|
28
|
+
.then((addresses) => {
|
|
29
|
+
try {
|
|
30
|
+
assert.ok(addresses.length > 0);
|
|
31
|
+
done();
|
|
32
|
+
} catch (error) {
|
|
33
|
+
done(error);
|
|
34
|
+
}
|
|
35
|
+
})
|
|
36
|
+
.catch((err) => {
|
|
37
|
+
done(err);
|
|
38
|
+
});
|
|
36
39
|
});
|
|
37
40
|
|
|
38
41
|
it('Responds to ping', (done) => {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
ping.promise.probe(host)
|
|
43
|
+
.then((result) => {
|
|
44
|
+
try {
|
|
45
|
+
assert.ok(result.alive);
|
|
46
|
+
done();
|
|
47
|
+
} catch (error) {
|
|
48
|
+
done(error);
|
|
49
|
+
}
|
|
50
|
+
})
|
|
51
|
+
.catch((err) => {
|
|
52
|
+
done(err);
|
|
53
|
+
});
|
|
47
54
|
});
|
|
48
55
|
|
|
49
56
|
it('Support HTTP on port 80', (done) => {
|
|
50
|
-
|
|
57
|
+
const requestOptions = {
|
|
58
|
+
host,
|
|
59
|
+
port: 80,
|
|
60
|
+
method: 'HEAD'
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
const req = http.request(requestOptions, (res) => {
|
|
51
64
|
try {
|
|
52
|
-
assert.
|
|
65
|
+
assert.ok(res.statusCode >= 200 && res.statusCode < 400);
|
|
53
66
|
done();
|
|
54
67
|
} catch (error) {
|
|
55
68
|
done(error);
|
|
56
69
|
}
|
|
57
70
|
});
|
|
71
|
+
|
|
72
|
+
req.on('error', (err) => {
|
|
73
|
+
done(err);
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
req.end();
|
|
58
77
|
});
|
|
59
78
|
|
|
60
79
|
it('Support HTTPS on port 443', (done) => {
|
|
61
|
-
|
|
80
|
+
const requestOptions = {
|
|
81
|
+
host,
|
|
82
|
+
port: 443,
|
|
83
|
+
method: 'HEAD'
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
const req = https.request(requestOptions, (res) => {
|
|
62
87
|
try {
|
|
63
|
-
assert.
|
|
88
|
+
assert.ok(res.statusCode >= 200 && res.statusCode < 400);
|
|
64
89
|
done();
|
|
65
90
|
} catch (error) {
|
|
66
91
|
done(error);
|
|
67
92
|
}
|
|
68
93
|
});
|
|
94
|
+
|
|
95
|
+
req.on('error', (err) => {
|
|
96
|
+
done(err);
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
req.end();
|
|
69
100
|
});
|
|
70
101
|
|
|
71
102
|
it('Support IPv4', (done) => {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
103
|
+
const options = {
|
|
104
|
+
family: 4,
|
|
105
|
+
hints: dnsLookup.ADDRCONFIG
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
dnsLookup.lookup(host, options)
|
|
109
|
+
.then((address, family) => {
|
|
110
|
+
try {
|
|
111
|
+
assert.ok(address !== null && family === 4);
|
|
112
|
+
done();
|
|
113
|
+
} catch (error) {
|
|
114
|
+
done(error);
|
|
115
|
+
}
|
|
116
|
+
})
|
|
117
|
+
.catch((err) => {
|
|
118
|
+
done(err);
|
|
119
|
+
});
|
|
80
120
|
});
|
|
81
121
|
|
|
82
122
|
it('Support IPv6', (done) => {
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
123
|
+
const options = {
|
|
124
|
+
family: 6,
|
|
125
|
+
hints: dnsLookup.ADDRCONFIG
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
dnsLookup.lookup(host, options)
|
|
129
|
+
.then((address, family) => {
|
|
130
|
+
try {
|
|
131
|
+
assert.ok(address !== null && family === 6);
|
|
132
|
+
done();
|
|
133
|
+
} catch (error) {
|
|
134
|
+
done(error);
|
|
135
|
+
}
|
|
136
|
+
})
|
|
137
|
+
.catch((err) => {
|
|
138
|
+
done(err);
|
|
139
|
+
});
|
|
91
140
|
});
|
|
92
141
|
});
|
|
93
142
|
});
|
|
@@ -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
|
|
@@ -43,102 +59,7 @@ global.pronghornProps = {
|
|
|
43
59
|
adapters: [{
|
|
44
60
|
id: 'Test-efficientip_solidserver',
|
|
45
61
|
type: 'EfficientipSolidserver',
|
|
46
|
-
properties:
|
|
47
|
-
host,
|
|
48
|
-
port,
|
|
49
|
-
base_path: '/rest',
|
|
50
|
-
version: '',
|
|
51
|
-
cache_location: 'none',
|
|
52
|
-
encode_pathvars: true,
|
|
53
|
-
save_metric: false,
|
|
54
|
-
stub,
|
|
55
|
-
protocol,
|
|
56
|
-
authentication: {
|
|
57
|
-
auth_method: 'basic user_password',
|
|
58
|
-
username,
|
|
59
|
-
password,
|
|
60
|
-
token: '',
|
|
61
|
-
invalid_token_error: 401,
|
|
62
|
-
token_timeout: -1,
|
|
63
|
-
token_cache: 'local',
|
|
64
|
-
auth_field: 'header.headers.Authorization',
|
|
65
|
-
auth_field_format: 'Basic {b64}{username}:{password}{/b64}',
|
|
66
|
-
auth_logging: false,
|
|
67
|
-
client_id: '',
|
|
68
|
-
client_secret: '',
|
|
69
|
-
grant_type: ''
|
|
70
|
-
},
|
|
71
|
-
healthcheck: {
|
|
72
|
-
type: 'intermittent',
|
|
73
|
-
frequency: 600000,
|
|
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] Efficientip_solidserver 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-efficientip_solidserver-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-efficientip_solidserver-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
|
-----------------------------------------------------------------------
|