@itentialopensource/adapter-aws_cloudformation 0.3.13 → 0.4.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.
Files changed (44) hide show
  1. package/.eslintrc.js +1 -0
  2. package/AUTH.md +7 -7
  3. package/BROKER.md +4 -4
  4. package/CALLS.md +9 -9
  5. package/ENHANCE.md +3 -3
  6. package/PROPERTIES.md +24 -9
  7. package/README.md +24 -23
  8. package/SUMMARY.md +2 -2
  9. package/SYSTEMINFO.md +1 -1
  10. package/TAB1.md +2 -2
  11. package/TAB2.md +23 -11
  12. package/TROUBLESHOOT.md +10 -1
  13. package/UTILITIES.md +473 -0
  14. package/adapter.js +17 -17
  15. package/adapterBase.js +52 -16
  16. package/package.json +24 -28
  17. package/pronghorn.json +15 -13
  18. package/propertiesSchema.json +78 -17
  19. package/report/adapterInfo.json +7 -7
  20. package/report/updateReport1748555907981.json +120 -0
  21. package/sampleProperties.json +4 -0
  22. package/test/integration/adapterTestBasicGet.js +88 -54
  23. package/test/integration/adapterTestConnectivity.js +15 -16
  24. package/test/integration/adapterTestIntegration.js +12 -45
  25. package/test/unit/adapterBaseTestUnit.js +641 -39
  26. package/test/unit/adapterTestUnit.js +28 -61
  27. package/utils/adapterInfo.js +114 -164
  28. package/utils/argParser.js +44 -0
  29. package/utils/checkMigrate.js +77 -38
  30. package/utils/entitiesToDB.js +53 -42
  31. package/utils/logger.js +26 -0
  32. package/utils/modify.js +56 -55
  33. package/utils/mongoDbConnection.js +79 -0
  34. package/utils/mongoUtils.js +162 -0
  35. package/utils/taskMover.js +31 -32
  36. package/utils/tbScript.js +36 -172
  37. package/utils/tbUtils.js +84 -226
  38. package/utils/troubleshootingAdapter.js +68 -84
  39. package/utils/updateAdapterConfig.js +158 -0
  40. package/utils/addAuth.js +0 -94
  41. package/utils/artifactize.js +0 -146
  42. package/utils/basicGet.js +0 -50
  43. package/utils/packModificationScript.js +0 -35
  44. package/utils/patches2bundledDeps.js +0 -90
package/adapterBase.js CHANGED
@@ -32,6 +32,7 @@ const entitiesToDB = require(path.join(__dirname, 'utils/entitiesToDB'));
32
32
  const troubleshootingAdapter = require(path.join(__dirname, 'utils/troubleshootingAdapter'));
33
33
  const tbUtils = require(path.join(__dirname, 'utils/tbUtils'));
34
34
  const taskMover = require(path.join(__dirname, 'utils/taskMover'));
35
+ const { updateMongoDBConfig } = require(path.join(__dirname, 'utils/updateAdapterConfig'));
35
36
 
36
37
  let propUtil = null;
37
38
  let choosepath = null;
@@ -366,7 +367,6 @@ class AdapterBase extends EventEmitterCl {
366
367
  // if we were healthy, toggle health
367
368
  if (this.healthy) {
368
369
  this.emit('OFFLINE', { id: this.id });
369
- this.emit('DEGRADED', { id: this.id });
370
370
  this.healthy = false;
371
371
  if (typeof error === 'object') {
372
372
  log.error(`${origin}: HEALTH CHECK - Error ${JSON.stringify(error)}`);
@@ -385,7 +385,6 @@ class AdapterBase extends EventEmitterCl {
385
385
 
386
386
  // if we were unhealthy, toggle health
387
387
  if (!this.healthy) {
388
- this.emit('FIXED', { id: this.id });
389
388
  this.emit('ONLINE', { id: this.id });
390
389
  this.healthy = true;
391
390
  log.info(`${origin}: HEALTH CHECK SUCCESSFUL`);
@@ -583,21 +582,32 @@ class AdapterBase extends EventEmitterCl {
583
582
 
584
583
  // take action based on type of file being changed
585
584
  if (type === 'action') {
586
- // BACKUP???
587
585
  const ares = updateAction(epath, action, changes);
588
586
  if (ares) {
589
587
  const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${ares}`, [], null, null, null);
590
588
  log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
591
589
  return callback(null, errorObj);
592
590
  }
593
- // AJV CHECK???
594
- // RESTORE IF NEEDED???
591
+ // Update MongoDB if possible
592
+ updateMongoDBConfig({
593
+ id: this.id,
594
+ mongoProps: this.allProps.mongo,
595
+ entity,
596
+ type,
597
+ configFile,
598
+ changes,
599
+ action,
600
+ replace
601
+ }).catch((error) => {
602
+ log.error(`${origin}: Error updating MongoDB configuration: ${error.message}`);
603
+ });
595
604
  const result = {
596
605
  response: `Action updates completed to entity: ${entity} - ${action}`
597
606
  };
598
607
  log.info(result.response);
599
608
  return callback(result, null);
600
609
  }
610
+
601
611
  if (type === 'schema') {
602
612
  const sres = updateSchema(epath, configFile, changes);
603
613
  if (sres) {
@@ -605,12 +615,26 @@ class AdapterBase extends EventEmitterCl {
605
615
  log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
606
616
  return callback(null, errorObj);
607
617
  }
618
+ // Update MongoDB if possible
619
+ updateMongoDBConfig({
620
+ id: this.id,
621
+ mongoProps: this.allProps.mongo,
622
+ entity,
623
+ type,
624
+ configFile,
625
+ changes,
626
+ action,
627
+ replace
628
+ }).catch((error) => {
629
+ log.error(`${origin}: Error updating MongoDB configuration: ${error.message}`);
630
+ });
608
631
  const result = {
609
632
  response: `Schema updates completed to entity: ${entity} - ${configFile}`
610
633
  };
611
634
  log.info(result.response);
612
635
  return callback(result, null);
613
636
  }
637
+
614
638
  if (type === 'mock') {
615
639
  // if the mock directory does not exist - error
616
640
  const mpath = `${__dirname}/entities/${entity}/mockdatafiles`;
@@ -624,18 +648,31 @@ class AdapterBase extends EventEmitterCl {
624
648
  return callback(null, errorObj);
625
649
  }
626
650
  const mres = updateMock(mpath, configFile, changes, replace);
627
-
628
651
  if (mres) {
629
652
  const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: ${mres}`, [], null, null, null);
630
653
  log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
631
654
  return callback(null, errorObj);
632
655
  }
656
+ // Update MongoDB if possible
657
+ updateMongoDBConfig({
658
+ id: this.id,
659
+ mongoProps: this.allProps.mongo,
660
+ entity,
661
+ type,
662
+ configFile,
663
+ changes,
664
+ action,
665
+ replace
666
+ }).catch((error) => {
667
+ log.error(`${origin}: Error updating MongoDB configuration: ${error.message}`);
668
+ });
633
669
  const result = {
634
670
  response: `Mock data updates completed to entity: ${entity} - ${configFile}`
635
671
  };
636
672
  log.info(result.response);
637
673
  return callback(result, null);
638
674
  }
675
+
639
676
  const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, `Incomplete Configuration Change: Unsupported Type - ${type}`, [], null, null, null);
640
677
  log.error(`${origin}: ${errorObj.IAPerror.displayString}`);
641
678
  return callback(null, errorObj);
@@ -831,14 +868,13 @@ class AdapterBase extends EventEmitterCl {
831
868
  *
832
869
  * @function iapTroubleshootAdapter
833
870
  * @param {Object} props - the connection, healthcheck and authentication properties
834
- * @param {boolean} persistFlag - whether the adapter properties should be updated
835
871
  * @param {Adapter} adapter - adapter instance to troubleshoot
836
872
  * @param {Callback} callback - callback function to return troubleshoot results
837
873
  */
838
- async iapTroubleshootAdapter(props, persistFlag, adapter, callback) {
874
+ async iapTroubleshootAdapter(props, adapter, callback) {
839
875
  try {
840
- const result = await troubleshootingAdapter.troubleshoot(props, false, persistFlag, adapter);
841
- if (result.healthCheck && result.connectivity.failCount === 0 && result.basicGet.failCount === 0) {
876
+ const result = await troubleshootingAdapter.troubleshoot(props, false, adapter);
877
+ if (result.healthCheck && result.connectivity.failCount === 0 && result.basicGet.passCount !== 0) {
842
878
  return callback(result);
843
879
  }
844
880
  return callback(null, result);
@@ -875,8 +911,7 @@ class AdapterBase extends EventEmitterCl {
875
911
  */
876
912
  async iapRunAdapterConnectivity(callback) {
877
913
  try {
878
- const { host } = this.allProps;
879
- const result = tbUtils.runConnectivity(host, false);
914
+ const result = tbUtils.runConnectivity(this.allProps.host, false);
880
915
  if (result.failCount > 0) {
881
916
  return callback(null, result);
882
917
  }
@@ -890,12 +925,13 @@ class AdapterBase extends EventEmitterCl {
890
925
  * @summary runs basicGet script for adapter
891
926
  *
892
927
  * @function iapRunAdapterBasicGet
928
+ * @param {number} maxCalls - how many GETs to run (optional)
893
929
  * @param {Callback} callback - callback function to return basicGet result
894
930
  */
895
- iapRunAdapterBasicGet(callback) {
931
+ iapRunAdapterBasicGet(maxCalls, callback) {
896
932
  try {
897
- const result = tbUtils.runBasicGet(false);
898
- if (result.failCount > 0) {
933
+ const result = tbUtils.runBasicGet(this.allProps, false, maxCalls);
934
+ if (result.passCount === 0) {
899
935
  return callback(null, result);
900
936
  }
901
937
  return callback(result);
@@ -917,7 +953,7 @@ class AdapterBase extends EventEmitterCl {
917
953
  log.trace(origin);
918
954
 
919
955
  try {
920
- const result = await entitiesToDB.moveEntitiesToDB(__dirname, { pronghornProps: this.allProps, id: this.id });
956
+ const result = await entitiesToDB.moveEntitiesToDB(__dirname, { pronghornProps: { mongo: this.allProps && this.allProps.mongo }, id: this.id });
921
957
  return callback(result, null);
922
958
  } catch (err) {
923
959
  const errorObj = this.requestHandlerInst.formatErrorObject(this.id, meth, 'Caught Exception', null, null, null, err);
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-aws_cloudformation",
3
- "version": "0.3.13",
3
+ "version": "0.4.1",
4
4
  "description": "This adapter integrates with system described as: Aws_cloudformation.",
5
5
  "main": "adapter.js",
6
6
  "wizardVersion": "2.44.7",
7
- "engineVersion": "1.68.2",
7
+ "engineVersion": "1.69.14",
8
8
  "adapterType": "http",
9
9
  "scripts": {
10
- "artifactize": "npm i && node utils/packModificationScript.js",
11
10
  "preinstall": "node utils/setup.js",
12
11
  "deinstall": "node utils/removeHooks.js",
13
12
  "lint": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js . --ext .json --ext .js",
@@ -16,7 +15,6 @@
16
15
  "test:unit": "mocha test/unit/adapterTestUnit.js --LOG=error",
17
16
  "test:integration": "mocha test/integration/adapterTestIntegration.js --LOG=error",
18
17
  "test": "npm run test:baseunit && npm run test:unit && npm run test:integration",
19
- "adapter:install": "npm i && node utils/tbScript.js install",
20
18
  "adapter:checkMigrate": "node utils/checkMigrate.js",
21
19
  "adapter:findPath": "node utils/findPath.js",
22
20
  "adapter:migrate": "node utils/modify.js -m",
@@ -31,10 +29,9 @@
31
29
  },
32
30
  "keywords": [
33
31
  "Itential",
34
- "IAP",
32
+ "Itential Platform",
35
33
  "Automation",
36
34
  "Integration",
37
- "App-Artifacts",
38
35
  "Adapter",
39
36
  "Cloud",
40
37
  "AWS",
@@ -54,31 +51,30 @@
54
51
  "author": "Itential",
55
52
  "homepage": "https://gitlab.com/itentialopensource/adapters/adapter-aws_cloudformation#readme",
56
53
  "dependencies": {
57
- "@itentialopensource/adapter-utils": "^5.10.9",
58
- "acorn": "^8.14.0",
59
- "ajv": "^8.17.1",
54
+ "@itentialopensource/adapter-utils": "5.10.19",
55
+ "acorn": "8.14.1",
56
+ "ajv": "8.17.1",
60
57
  "aws4": "^1.9.0",
61
- "axios": "^1.8.2",
62
- "commander": "^11.0.0",
63
- "dns-lookup-promise": "^1.0.4",
64
- "fs-extra": "^11.2.0",
65
- "json-query": "^2.2.2",
66
- "mocha": "^10.8.2",
67
- "mocha-param": "^2.0.1",
68
- "mongodb": "^4.17.2",
69
- "ping": "^0.4.4",
70
- "prompts": "^2.4.2",
71
- "readline-sync": "^1.4.10",
72
- "semver": "^7.6.3",
73
- "winston": "^3.17.0"
58
+ "axios": "1.9.0",
59
+ "commander": "11.1.0",
60
+ "fs-extra": "11.3.0",
61
+ "json-query": "2.2.2",
62
+ "mocha": "10.8.2",
63
+ "mocha-param": "2.0.1",
64
+ "mongodb": "4.17.2",
65
+ "ping": "0.4.4",
66
+ "prompts": "2.4.2",
67
+ "readline-sync": "1.4.10",
68
+ "semver": "7.7.2",
69
+ "winston": "3.17.0"
74
70
  },
75
71
  "devDependencies": {
76
- "chai": "^4.3.7",
77
- "eslint": "^8.44.0",
78
- "eslint-config-airbnb-base": "^15.0.0",
79
- "eslint-plugin-import": "^2.27.5",
80
- "eslint-plugin-json": "^3.1.0",
81
- "testdouble": "^3.18.0"
72
+ "chai": "4.5.0",
73
+ "eslint": "8.57.0",
74
+ "eslint-config-airbnb-base": "15.0.0",
75
+ "eslint-plugin-import": "2.31.0",
76
+ "eslint-plugin-json": "3.1.0",
77
+ "testdouble": "3.18.0"
82
78
  },
83
79
  "private": false
84
80
  }
package/pronghorn.json CHANGED
@@ -226,16 +226,6 @@
226
226
  "title": "props",
227
227
  "type": "object"
228
228
  }
229
- },
230
- {
231
- "name": "persistFlag",
232
- "type": "boolean",
233
- "info": "Whether the input properties should be saved",
234
- "required": true,
235
- "schema": {
236
- "title": "persistFlag",
237
- "type": "boolean"
238
- }
239
229
  }
240
230
  ],
241
231
  "output": {
@@ -306,7 +296,19 @@
306
296
  "name": "iapRunAdapterBasicGet",
307
297
  "summary": "Runs basicGet script for adapter",
308
298
  "description": "Runs basicGet script for adapter",
309
- "input": [],
299
+ "input": [
300
+ {
301
+ "name": "maxCalls",
302
+ "required": false,
303
+ "type": "number",
304
+ "info": "How many GET endpoints to test (defaults to 5)",
305
+ "schema": {
306
+ "title": "maxCalls",
307
+ "type": "number",
308
+ "default": 5
309
+ }
310
+ }
311
+ ],
310
312
  "output": {
311
313
  "name": "result",
312
314
  "type": "object",
@@ -327,8 +329,8 @@
327
329
  },
328
330
  {
329
331
  "name": "iapMoveAdapterEntitiesToDB",
330
- "summary": "Moves entities from an adapter into the IAP database",
331
- "description": "Moves entities from an adapter into the IAP database",
332
+ "summary": "Moves entities from an adapter into the Itential Platform database",
333
+ "description": "Moves entities from an adapter into the Itential Platform database",
332
334
  "input": [],
333
335
  "output": {
334
336
  "name": "res",
@@ -74,7 +74,7 @@
74
74
  "boolean",
75
75
  "string"
76
76
  ],
77
- "description": "When true the metrics collected by the adapter will be stored in mongo or in the adapter. If a full path is provided, metrics will be saved in the path provided.",
77
+ "description": "When true the metrics collected by the adapter will be stored in mongo or on the filesystem",
78
78
  "default": false
79
79
  },
80
80
  "stub": {
@@ -221,7 +221,7 @@
221
221
  "description": "How long a token is valid (in milliseconds), -1 (always get token), 0 use expiration returned with token",
222
222
  "default": -1,
223
223
  "minimum": -1,
224
- "maximum": 86400000
224
+ "maximum": 3600000
225
225
  },
226
226
  "token_cache": {
227
227
  "type": "string",
@@ -512,7 +512,7 @@
512
512
  "type": "integer",
513
513
  "description": "How often the healthcheck should run (in milliseconds).",
514
514
  "default": 300000,
515
- "minimum": 30000,
515
+ "minimum": 60000,
516
516
  "maximum": 3600000
517
517
  },
518
518
  "protocol": {
@@ -854,6 +854,14 @@
854
854
  "security/ca.pem"
855
855
  ]
856
856
  },
857
+ "ca_file_content": {
858
+ "type": "string",
859
+ "description": "The content of the CA file used for SSL",
860
+ "default": "",
861
+ "examples": [
862
+ "-----BEGIN CERTIFICATE-----"
863
+ ]
864
+ },
857
865
  "key_file": {
858
866
  "type": "string",
859
867
  "description": "The fully qualified path name to the key file used for SSL",
@@ -943,32 +951,48 @@
943
951
  "mongo": {
944
952
  "type": "object",
945
953
  "properties": {
954
+ "url": {
955
+ "type": "string",
956
+ "description": "Mongo's complete connection URL. This property overrides host, port, database, username, password and replSet settings.",
957
+ "examples": [
958
+ "mongodb://[username:password@]host1[:port1][,...hostN[:portN]][/[defaultauthdb][?options]]",
959
+ "mongodb+srv://[username:password@]cluster0.xxxxx.mongodb.net/[defaultauthdb][?options]",
960
+ "mongodb+srv://cluster0.xxxxx.mongodb.net/[defaultauthdb][?options]"
961
+ ]
962
+ },
946
963
  "host": {
947
964
  "type": "string",
948
- "description": "host where mongo database can be found",
965
+ "description": "Host information for the Mongo server",
949
966
  "default": "",
950
967
  "examples": [
951
- "localhost"
968
+ "localhost",
969
+ "cluster0.xxxxx.mongodb.net",
970
+ "my-cluster.example.com"
952
971
  ]
953
972
  },
954
973
  "port": {
955
974
  "type": "integer",
956
- "description": "port on which to connect to the mongo database",
975
+ "description": "Port information for the Mongo server. Not used when using mongodb+srv:// protocol",
957
976
  "default": 443,
958
977
  "minimum": 0,
959
978
  "maximum": 65535
960
979
  },
961
980
  "database": {
962
981
  "type": "string",
963
- "description": "The name of the database to store adapter information in",
982
+ "description": "The database for the adapter to use for its data.",
964
983
  "default": "",
965
984
  "examples": [
966
985
  "adapter-xyz"
967
986
  ]
968
987
  },
988
+ "dbAuth": {
989
+ "type": "boolean",
990
+ "description": "Whether to use authentication for MongoDB connection. Default is false.",
991
+ "default": false
992
+ },
969
993
  "username": {
970
994
  "type": "string",
971
- "description": "The user to connect to the database with",
995
+ "description": "If credentials are required to access Mongo, this is the user to login as.",
972
996
  "default": "",
973
997
  "examples": [
974
998
  "username"
@@ -976,7 +1000,7 @@
976
1000
  },
977
1001
  "password": {
978
1002
  "type": "string",
979
- "description": "The password to connect to the database with",
1003
+ "description": "If credentials are required to access Mongo, this is the password to login with.",
980
1004
  "default": "",
981
1005
  "examples": [
982
1006
  "password"
@@ -984,12 +1008,17 @@
984
1008
  },
985
1009
  "replSet": {
986
1010
  "type": "string",
987
- "description": "The replica set for the database",
1011
+ "description": "If the database is set up to use replica sets, define it here so it can be added to the database connection. Not used when using mongodb+srv:// protocol",
988
1012
  "default": "",
989
1013
  "examples": [
990
1014
  "my_repolica_set"
991
1015
  ]
992
1016
  },
1017
+ "addSrv": {
1018
+ "type": "boolean",
1019
+ "description": "Whether the connection requires the mongodb+srv:// protocol. If true, uses mongodb+srv:// protocol. Note: mongodb+srv:// can also be used for non-Atlas deployments that support DNS SRV records",
1020
+ "default": false
1021
+ },
993
1022
  "db_ssl": {
994
1023
  "type": "object",
995
1024
  "description": "SSL for mongo database connection",
@@ -1030,6 +1059,38 @@
1030
1059
  }
1031
1060
  }
1032
1061
  }
1062
+ },
1063
+ "dependencies": {
1064
+ "dbAuth": {
1065
+ "oneOf": [
1066
+ {
1067
+ "properties": {
1068
+ "dbAuth": {
1069
+ "const": false
1070
+ }
1071
+ }
1072
+ },
1073
+ {
1074
+ "properties": {
1075
+ "dbAuth": {
1076
+ "const": true
1077
+ },
1078
+ "username": {
1079
+ "type": "string",
1080
+ "minLength": 1
1081
+ },
1082
+ "password": {
1083
+ "type": "string",
1084
+ "minLength": 1
1085
+ }
1086
+ },
1087
+ "required": [
1088
+ "username",
1089
+ "password"
1090
+ ]
1091
+ }
1092
+ ]
1093
+ }
1033
1094
  }
1034
1095
  },
1035
1096
  "devicebroker": {
@@ -1615,12 +1676,12 @@
1615
1676
  "properties": {
1616
1677
  "path": {
1617
1678
  "type": "string",
1618
- "description": "The fully qualified path of the call to populate the cache (e.g. /rest/api/devices)",
1679
+ "description": "The fully qualified path of the call to getDevice (e.g. /rest/api/device/{deviceid})",
1619
1680
  "default": ""
1620
1681
  },
1621
1682
  "method": {
1622
1683
  "type": "string",
1623
- "description": "The method of the call to populate the cache",
1684
+ "description": "The method of the call to getDevice",
1624
1685
  "default": "GET"
1625
1686
  },
1626
1687
  "pagination": {
@@ -1657,7 +1718,7 @@
1657
1718
  },
1658
1719
  "query": {
1659
1720
  "type": "object",
1660
- "description": "The json object with query parameters of the call to populate the cache",
1721
+ "description": "The json object with query parameters of the call to getDevice",
1661
1722
  "additionalProperties": {
1662
1723
  "type": [
1663
1724
  "string",
@@ -1667,7 +1728,7 @@
1667
1728
  },
1668
1729
  "body": {
1669
1730
  "type": "object",
1670
- "description": "The json object with body of the call to populate the cache",
1731
+ "description": "The json object with body of the call to getDevice",
1671
1732
  "additionalProperties": {
1672
1733
  "type": [
1673
1734
  "string",
@@ -1677,7 +1738,7 @@
1677
1738
  },
1678
1739
  "headers": {
1679
1740
  "type": "object",
1680
- "description": "The json object with headers of the call to populate the cache",
1741
+ "description": "The json object with headers of the call to getDevice",
1681
1742
  "additionalProperties": {
1682
1743
  "type": [
1683
1744
  "string",
@@ -1696,7 +1757,7 @@
1696
1757
  },
1697
1758
  "requestFields": {
1698
1759
  "type": "object",
1699
- "description": "The json object with response fields of the call to populate the cache",
1760
+ "description": "The json object with response fields of the call to getDevice",
1700
1761
  "additionalProperties": {
1701
1762
  "type": [
1702
1763
  "string",
@@ -1712,7 +1773,7 @@
1712
1773
  },
1713
1774
  "responseFields": {
1714
1775
  "type": "object",
1715
- "description": "The json object with response fields of the call to populate the cache",
1776
+ "description": "The json object with response fields of the call to getDevice",
1716
1777
  "additionalProperties": {
1717
1778
  "type": [
1718
1779
  "string",
@@ -1,10 +1,10 @@
1
1
  {
2
- "version": "0.3.11",
3
- "configLines": 13289,
4
- "scriptLines": 1783,
5
- "codeLines": 11578,
6
- "testLines": 7158,
7
- "testCases": 344,
8
- "totalCodeLines": 20519,
2
+ "version": "0.3.13",
3
+ "configLines": 15445,
4
+ "scriptLines": 2498,
5
+ "codeLines": 11614,
6
+ "testLines": 7727,
7
+ "testCases": 357,
8
+ "totalCodeLines": 21839,
9
9
  "wfTasks": 163
10
10
  }
@@ -0,0 +1,120 @@
1
+ {
2
+ "errors": [],
3
+ "statistics": [
4
+ {
5
+ "owner": "errorJson",
6
+ "description": "New adapter errors available for use",
7
+ "value": 0
8
+ },
9
+ {
10
+ "owner": "errorJson",
11
+ "description": "Adapter errors no longer available for use",
12
+ "value": 0
13
+ },
14
+ {
15
+ "owner": "errorJson",
16
+ "description": "Adapter errors that have been updated (e.g. recommendation changes)",
17
+ "value": 31
18
+ },
19
+ {
20
+ "owner": "packageJson",
21
+ "description": "Number of production dependencies",
22
+ "value": 15
23
+ },
24
+ {
25
+ "owner": "packageJson",
26
+ "description": "Number of development dependencies",
27
+ "value": 6
28
+ },
29
+ {
30
+ "owner": "packageJson",
31
+ "description": "Number of npm scripts",
32
+ "value": 19
33
+ },
34
+ {
35
+ "owner": "packageJson",
36
+ "description": "Runtime Library dependency",
37
+ "value": "5.10.16"
38
+ },
39
+ {
40
+ "owner": "propertiesSchemaJson",
41
+ "description": "Adapter properties defined in the propertiesSchema file",
42
+ "value": 85
43
+ },
44
+ {
45
+ "owner": "markdown",
46
+ "description": "Number of lines in the README.md",
47
+ "value": 345
48
+ },
49
+ {
50
+ "owner": "markdown",
51
+ "description": "Number of lines in the SUMMARY.md",
52
+ "value": 9
53
+ },
54
+ {
55
+ "owner": "markdown",
56
+ "description": "Number of lines in the PROPERTIES.md",
57
+ "value": 662
58
+ },
59
+ {
60
+ "owner": "markdown",
61
+ "description": "Number of lines in the TROUBLESHOOT.md",
62
+ "value": 57
63
+ },
64
+ {
65
+ "owner": "markdown",
66
+ "description": "Number of lines in the ENHANCE.md",
67
+ "value": 70
68
+ },
69
+ {
70
+ "owner": "markdown",
71
+ "description": "Number of lines in the BROKER.md",
72
+ "value": 70
73
+ },
74
+ {
75
+ "owner": "unitTestJS",
76
+ "description": "Number of lines of code in unit tests",
77
+ "value": 3322
78
+ },
79
+ {
80
+ "owner": "unitTestJS",
81
+ "description": "Number of unit tests",
82
+ "value": 197
83
+ },
84
+ {
85
+ "owner": "integrationTestJS",
86
+ "description": "Number of lines of code in integration tests",
87
+ "value": 2542
88
+ },
89
+ {
90
+ "owner": "integrationTestJS",
91
+ "description": "Number of integration tests",
92
+ "value": 78
93
+ },
94
+ {
95
+ "owner": "staticFile",
96
+ "description": "Number of lines of code in adapterBase.js",
97
+ "value": 1489
98
+ },
99
+ {
100
+ "owner": "staticFile",
101
+ "description": "Number of static files added",
102
+ "value": 37
103
+ },
104
+ {
105
+ "owner": "Overall",
106
+ "description": "Total lines of Code",
107
+ "value": 7353
108
+ },
109
+ {
110
+ "owner": "Overall",
111
+ "description": "Total Tests",
112
+ "value": 275
113
+ },
114
+ {
115
+ "owner": "Overall",
116
+ "description": "Total Files",
117
+ "value": 6
118
+ }
119
+ ]
120
+ }