@itentialopensource/adapter-alkira 0.6.3 → 0.6.4
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/CHANGELOG.md
CHANGED
package/metadata.json
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adapter-alkira",
|
|
3
3
|
"webName": "Adapter for Integration to Alkira Cloud Management",
|
|
4
|
+
"supportLevel": "community",
|
|
4
5
|
"vendor": "Alkira",
|
|
5
6
|
"product": "Cloud Management",
|
|
7
|
+
"techAlliance": true,
|
|
6
8
|
"osVersion": [],
|
|
7
9
|
"apiVersions": [
|
|
8
10
|
"v1"
|
|
@@ -54,7 +56,7 @@
|
|
|
54
56
|
"storeLink": "",
|
|
55
57
|
"npmLink": "https://www.npmjs.com/package/@itentialopensource/adapter-alkira",
|
|
56
58
|
"repoLink": "https://gitlab.com/itentialopensource/adapters/adapter-alkira",
|
|
57
|
-
"docLink": "https://
|
|
59
|
+
"docLink": "https://gitlab.com/itentialopensource/adapters/adapter-alkira/-/blob/master/README.md?ref_type=heads",
|
|
58
60
|
"demoLinks": [
|
|
59
61
|
{
|
|
60
62
|
"title": "Itential + Alkira: Simplify & Automate to Optimize Multi-Cloud Networks",
|
|
@@ -106,9 +108,5 @@
|
|
|
106
108
|
],
|
|
107
109
|
"transformationProjects": [],
|
|
108
110
|
"exampleProjects": []
|
|
109
|
-
}
|
|
110
|
-
"supportLevel": [
|
|
111
|
-
"community"
|
|
112
|
-
],
|
|
113
|
-
"techAlliance": false
|
|
111
|
+
}
|
|
114
112
|
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itentialopensource/adapter-alkira",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "This adapter integrates with system described as: alkiraApi.",
|
|
5
5
|
"main": "adapter.js",
|
|
6
6
|
"systemName": "Alkira",
|
|
7
7
|
"wizardVersion": "2.44.7",
|
|
8
|
-
"engineVersion": "1.
|
|
8
|
+
"engineVersion": "1.68.2",
|
|
9
9
|
"adapterType": "http",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"artifactize": "npm i && node utils/packModificationScript.js",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"author": "Itential",
|
|
54
54
|
"homepage": "https://gitlab.com/itentialopensource/adapters/adapter-alkira#readme",
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@itentialopensource/adapter-utils": "^5.
|
|
56
|
+
"@itentialopensource/adapter-utils": "^5.7.0",
|
|
57
57
|
"acorn": "^8.12.1",
|
|
58
58
|
"ajv": "^8.17.1",
|
|
59
59
|
"axios": "^1.7.4",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"prompts": "^2.4.2",
|
|
69
69
|
"readline-sync": "^1.4.10",
|
|
70
70
|
"semver": "^7.6.3",
|
|
71
|
-
"winston": "^3.
|
|
71
|
+
"winston": "^3.14.2"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"chai": "^4.3.7",
|
|
Binary file
|
package/report/adapterInfo.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.6.3",
|
|
3
3
|
"configLines": 46961,
|
|
4
4
|
"scriptLines": 1783,
|
|
5
5
|
"codeLines": 40401,
|
|
6
|
-
"testLines":
|
|
7
|
-
"testCases":
|
|
8
|
-
"totalCodeLines":
|
|
6
|
+
"testLines": 33084,
|
|
7
|
+
"testCases": 1763,
|
|
8
|
+
"totalCodeLines": 75268,
|
|
9
9
|
"wfTasks": 465
|
|
10
10
|
}
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
/* eslint no-unused-vars: warn */
|
|
5
5
|
|
|
6
6
|
const assert = require('assert');
|
|
7
|
-
const http = require('http');
|
|
8
7
|
const https = require('https');
|
|
9
8
|
const mocha = require('mocha');
|
|
10
9
|
const ping = require('ping');
|
|
@@ -53,29 +52,6 @@ describe('[integration] Adapter Test', () => {
|
|
|
53
52
|
});
|
|
54
53
|
});
|
|
55
54
|
|
|
56
|
-
it('Support HTTP on port 80', (done) => {
|
|
57
|
-
const requestOptions = {
|
|
58
|
-
host,
|
|
59
|
-
port: 80,
|
|
60
|
-
method: 'HEAD'
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
const req = http.request(requestOptions, (res) => {
|
|
64
|
-
try {
|
|
65
|
-
assert.ok(res.statusCode >= 200 && res.statusCode < 400);
|
|
66
|
-
done();
|
|
67
|
-
} catch (error) {
|
|
68
|
-
done(error);
|
|
69
|
-
}
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
req.on('error', (err) => {
|
|
73
|
-
done(err);
|
|
74
|
-
});
|
|
75
|
-
|
|
76
|
-
req.end();
|
|
77
|
-
});
|
|
78
|
-
|
|
79
55
|
it('Support HTTPS on port 443', (done) => {
|
|
80
56
|
const requestOptions = {
|
|
81
57
|
host,
|
|
@@ -323,7 +323,7 @@ describe('[unit] Alkira Adapter Test', () => {
|
|
|
323
323
|
assert.equal('^0.4.4', packageDotJson.dependencies.ping);
|
|
324
324
|
assert.equal('^1.4.10', packageDotJson.dependencies['readline-sync']);
|
|
325
325
|
assert.equal('^7.6.3', packageDotJson.dependencies.semver);
|
|
326
|
-
assert.equal('^3.
|
|
326
|
+
assert.equal('^3.14.2', packageDotJson.dependencies.winston);
|
|
327
327
|
done();
|
|
328
328
|
} catch (error) {
|
|
329
329
|
log.error(`Test Failure: ${error}`);
|