@itentialopensource/adapter-checkpoint_gaia 0.1.1 → 0.2.1

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.
@@ -116,30 +116,32 @@
116
116
  }
117
117
  },
118
118
  "devicebroker": {
119
+ "enabled": false,
119
120
  "getDevice": [
120
121
  {
121
- "path": "/get/devices/{id}",
122
+ "path": "/not/mapped",
122
123
  "method": "GET",
123
124
  "query": {},
124
125
  "body": {},
125
126
  "headers": {},
126
- "handleFailure": "fail",
127
+ "handleFailure": "ignore",
127
128
  "requestFields": {
128
- "id": "name"
129
+ "insample": "{port}"
129
130
  },
130
131
  "responseDatakey": "",
131
132
  "responseFields": {
132
- "name": "host",
133
- "ostype": "os",
134
- "ostypePrefix": "system-",
135
- "ipaddress": "attributes.ipaddr",
136
- "port": "443"
133
+ "name": "{this}{||}{that}",
134
+ "ostype": "{osfield}",
135
+ "ostypePrefix": "meraki-",
136
+ "port": "{port}",
137
+ "ipaddress": "{ip_addr}",
138
+ "serial": "{serial}"
137
139
  }
138
140
  }
139
141
  ],
140
142
  "getDevicesFiltered": [
141
143
  {
142
- "path": "/get/devices",
144
+ "path": "/not/mapped",
143
145
  "method": "GET",
144
146
  "pagination": {
145
147
  "offsetVar": "",
@@ -150,46 +152,48 @@
150
152
  "query": {},
151
153
  "body": {},
152
154
  "headers": {},
153
- "handleFailure": "fail",
155
+ "handleFailure": "ignore",
154
156
  "requestFields": {},
155
157
  "responseDatakey": "",
156
158
  "responseFields": {
157
- "name": "host",
158
- "ostype": "os",
159
- "ostypePrefix": "system-",
160
- "ipaddress": "attributes.ipaddr",
161
- "port": "443"
159
+ "name": "{this}{||}{that}",
160
+ "ostype": "{osfield}",
161
+ "ostypePrefix": "meraki-",
162
+ "port": "{port}",
163
+ "ipaddress": "{ip_addr}",
164
+ "serial": "{serial}",
165
+ "id": "{myid}"
162
166
  }
163
167
  }
164
168
  ],
165
169
  "isAlive": [
166
170
  {
167
- "path": "/get/devices/{id}/status",
171
+ "path": "/not/mapped/{devID}",
168
172
  "method": "GET",
169
173
  "query": {},
170
174
  "body": {},
171
175
  "headers": {},
172
- "handleFailure": "fail",
176
+ "handleFailure": "ignore",
173
177
  "requestFields": {
174
- "id": "name"
178
+ "devID": "{id}"
175
179
  },
176
180
  "responseDatakey": "",
177
181
  "responseFields": {
178
- "status": "status",
179
- "statusValue": "online"
182
+ "status": "return2xx",
183
+ "statusValue": "AD.200"
180
184
  }
181
185
  }
182
186
  ],
183
187
  "getConfig": [
184
188
  {
185
- "path": "/get/devices/{id}/configPart1",
189
+ "path": "/not/mapped/{devID}",
186
190
  "method": "GET",
187
191
  "query": {},
188
192
  "body": {},
189
193
  "headers": {},
190
- "handleFailure": "fail",
194
+ "handleFailure": "ignore",
191
195
  "requestFields": {
192
- "id": "name"
196
+ "devID": "{id}"
193
197
  },
194
198
  "responseDatakey": "",
195
199
  "responseFields": {}
@@ -197,12 +201,12 @@
197
201
  ],
198
202
  "getCount": [
199
203
  {
200
- "path": "/get/devices",
204
+ "path": "/not/mapped",
201
205
  "method": "GET",
202
206
  "query": {},
203
207
  "body": {},
204
208
  "headers": {},
205
- "handleFailure": "fail",
209
+ "handleFailure": "ignore",
206
210
  "requestFields": {},
207
211
  "responseDatakey": "",
208
212
  "responseFields": {}
@@ -213,15 +217,15 @@
213
217
  "enabled": false,
214
218
  "entities": [
215
219
  {
216
- "entityType": "",
217
- "frequency": 1440,
220
+ "entityType": "device",
221
+ "frequency": 3600,
218
222
  "flushOnFail": false,
219
- "limit": 1000,
223
+ "limit": 10000,
220
224
  "retryAttempts": 5,
221
225
  "sort": true,
222
226
  "populate": [
223
227
  {
224
- "path": "",
228
+ "path": "/not/mapped",
225
229
  "method": "GET",
226
230
  "pagination": {
227
231
  "offsetVar": "",
@@ -235,7 +239,15 @@
235
239
  "handleFailure": "ignore",
236
240
  "requestFields": {},
237
241
  "responseDatakey": "",
238
- "responseFields": {}
242
+ "responseFields": {
243
+ "name": "{this}{||}{that}",
244
+ "ostype": "{osfield}",
245
+ "ostypePrefix": "meraki-",
246
+ "port": "{port}",
247
+ "ipaddress": "{ip_addr}",
248
+ "serial": "{serial}",
249
+ "id": "{myid}"
250
+ }
239
251
  }
240
252
  ],
241
253
  "cachedTasks": [
@@ -1,4 +1,4 @@
1
- /* @copyright Itential, LLC 29 (pre-modifications) */
1
+ /* @copyright Itential, LLC 2019 (pre-modifications) */
2
2
 
3
3
  // Set globals
4
4
  /* global describe it log pronghornProps */
@@ -46,6 +46,7 @@ samProps.ssl.accept_invalid_cert = false;
46
46
  if (samProps.request.attempt_timeout < 30000) {
47
47
  samProps.request.attempt_timeout = 30000;
48
48
  }
49
+ samProps.devicebroker.enabled = true;
49
50
  const attemptTimeout = samProps.request.attempt_timeout;
50
51
  const { stub } = samProps;
51
52
 
@@ -278,13 +278,15 @@ describe('[unit] Checkpoint_gaia Adapter Test', () => {
278
278
  assert.notEqual(undefined, packageDotJson.scripts);
279
279
  assert.notEqual(null, packageDotJson.scripts);
280
280
  assert.notEqual('', packageDotJson.scripts);
281
+ assert.equal('node utils/setup.js', packageDotJson.scripts.preinstall);
281
282
  assert.equal('node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js', packageDotJson.scripts.lint);
282
283
  assert.equal('node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js --quiet', packageDotJson.scripts['lint:errors']);
283
284
  assert.equal('mocha test/unit/adapterBaseTestUnit.js --LOG=error', packageDotJson.scripts['test:baseunit']);
284
285
  assert.equal('mocha test/unit/adapterTestUnit.js --LOG=error', packageDotJson.scripts['test:unit']);
285
286
  assert.equal('mocha test/integration/adapterTestIntegration.js --LOG=error', packageDotJson.scripts['test:integration']);
286
- assert.equal('nyc --reporter html --reporter text mocha --reporter dot test/*', packageDotJson.scripts['test:cover']);
287
287
  assert.equal('npm run test:baseunit && npm run test:unit && npm run test:integration', packageDotJson.scripts.test);
288
+ assert.equal('npm publish --registry=https://registry.npmjs.org --access=public', packageDotJson.scripts.deploy);
289
+ assert.equal('npm run deploy', packageDotJson.scripts.build);
288
290
  done();
289
291
  } catch (error) {
290
292
  log.error(`Test Failure: ${error}`);
@@ -297,6 +299,9 @@ describe('[unit] Checkpoint_gaia Adapter Test', () => {
297
299
  assert.notEqual(undefined, packageDotJson.repository);
298
300
  assert.notEqual(null, packageDotJson.repository);
299
301
  assert.notEqual('', packageDotJson.repository);
302
+ assert.equal('git', packageDotJson.repository.type);
303
+ assert.equal('git@gitlab.com:itentialopensource/adapters/', packageDotJson.repository.url.substring(0, 43));
304
+ assert.equal('https://gitlab.com/itentialopensource/adapters/', packageDotJson.homepage.substring(0, 47));
300
305
  done();
301
306
  } catch (error) {
302
307
  log.error(`Test Failure: ${error}`);
@@ -309,17 +314,16 @@ describe('[unit] Checkpoint_gaia Adapter Test', () => {
309
314
  assert.notEqual(undefined, packageDotJson.dependencies);
310
315
  assert.notEqual(null, packageDotJson.dependencies);
311
316
  assert.notEqual('', packageDotJson.dependencies);
312
- assert.equal('^8.12.0', packageDotJson.dependencies.ajv);
313
- assert.equal('^1.4.0', packageDotJson.dependencies.axios);
317
+ assert.equal('^8.17.1', packageDotJson.dependencies.ajv);
318
+ assert.equal('^1.7.2', packageDotJson.dependencies.axios);
314
319
  assert.equal('^11.0.0', packageDotJson.dependencies.commander);
315
- assert.equal('^11.1.1', packageDotJson.dependencies['fs-extra']);
316
- assert.equal('^10.2.0', packageDotJson.dependencies.mocha);
320
+ assert.equal('^11.2.0', packageDotJson.dependencies['fs-extra']);
321
+ assert.equal('^10.7.0', packageDotJson.dependencies.mocha);
317
322
  assert.equal('^2.0.1', packageDotJson.dependencies['mocha-param']);
318
- assert.equal('^15.1.0', packageDotJson.dependencies.nyc);
319
323
  assert.equal('^0.4.4', packageDotJson.dependencies.ping);
320
324
  assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
321
- assert.equal('^7.5.3', packageDotJson.dependencies.semver);
322
- assert.equal('^3.9.0', packageDotJson.dependencies.winston);
325
+ assert.equal('^7.6.3', packageDotJson.dependencies.semver);
326
+ assert.equal('^3.13.1', packageDotJson.dependencies.winston);
323
327
  done();
324
328
  } catch (error) {
325
329
  log.error(`Test Failure: ${error}`);
File without changes