@itentialopensource/adapter-robustel 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 +205 -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 +402 -573
- 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 +47 -0
- package/package.json +24 -24
- package/pronghorn.json +559 -148
- package/propertiesDecorators.json +14 -0
- package/propertiesSchema.json +842 -6
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +204 -0
- package/report/adapter-openapi.yaml +163 -0
- package/report/adapterInfo.json +10 -0
- package/report/updateReport1653173664637.json +120 -0
- package/report/updateReport1691507608338.json +120 -0
- package/report/updateReport1692202610637.json +120 -0
- package/report/updateReport1694462053440.json +120 -0
- package/report/updateReport1698421016757.json +120 -0
- package/sampleProperties.json +158 -5
- package/test/integration/adapterTestBasicGet.js +3 -5
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +269 -271
- package/test/unit/adapterBaseTestUnit.js +388 -308
- package/test/unit/adapterTestUnit.js +399 -260
- 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/pre-commit.sh +5 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +123 -53
- package/utils/tbUtils.js +87 -49
- package/utils/testRunner.js +17 -17
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
|
@@ -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
|
});
|