@docbrasil/api-systemmanager 1.0.86 → 1.0.88
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/api/admin/doctypes.js +76 -76
- package/api/admin/document.js +332 -332
- package/api/admin/form.js +151 -151
- package/api/admin/index.js +46 -46
- package/api/admin/list.js +133 -133
- package/api/admin/message.js +194 -194
- package/api/admin/notification.js +233 -233
- package/api/admin/organization.js +124 -124
- package/api/admin/plugin.js +116 -116
- package/api/admin/policy.js +78 -78
- package/api/admin/processes.js +370 -370
- package/api/admin/task.js +125 -125
- package/api/admin/user.js +185 -185
- package/api/dispatch.js +101 -101
- package/api/general/geoLocation.js +88 -88
- package/api/general/index.js +22 -22
- package/api/login.js +267 -267
- package/api/session.js +85 -85
- package/api/user/datasource.js +144 -144
- package/api/user/document.js +731 -687
- package/api/user/index.js +39 -39
- package/api/user/notification.js +101 -101
- package/api/user/organization.js +230 -230
- package/api/user/process.js +191 -191
- package/api/user/register.js +205 -205
- package/api/user/task.js +201 -201
- package/api/user/task_available.js +135 -135
- package/api/user/user.js +287 -287
- package/api/utils/cypher.js +37 -37
- package/api/utils/promises.js +118 -118
- package/bundleRollup.js +158 -158
- package/dist/bundle.cjs +4876 -4832
- package/dist/bundle.mjs +1 -1
- package/doc/api.md +372 -666
- package/doc.md +653 -653
- package/helper/boom.js +487 -487
- package/helper/cryptojs.js +6067 -6067
- package/index.js +85 -85
- package/package-lock.json +4635 -4635
- package/package.json +68 -67
- package/readme.md +25 -25
- package/tests/admin/document.spec.js +45 -45
- package/tests/admin/form.spec.js +74 -74
- package/tests/admin/list.spec.js +86 -86
- package/tests/admin/message.js +92 -92
- package/tests/admin/notification.spec.js +174 -174
- package/tests/admin/pluginspec..js +71 -71
- package/tests/admin/policy.spec.js +71 -71
- package/tests/admin/processes.spec.js +119 -119
- package/tests/admin/users.spec.js +127 -127
- package/tests/documents.spec.js +164 -164
- package/tests/login.spec.js +91 -91
- package/tests/session.spec..js +58 -58
- package/tests/user/documents.js +164 -164
- package/tests/user/organization.js +122 -122
- package/tests/user/process.js +71 -71
- package/tests/user/user.js +88 -88
package/package.json
CHANGED
|
@@ -1,67 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@docbrasil/api-systemmanager",
|
|
3
|
-
"description": "Module API System Manager",
|
|
4
|
-
"version": "1.0.
|
|
5
|
-
"scripts": {
|
|
6
|
-
"doc": "rm -f doc/api.md && jsdoc2md api/**/** > doc/api.md",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"@rollup/plugin-
|
|
45
|
-
"@rollup/plugin-
|
|
46
|
-
"@rollup/plugin-
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"rollup
|
|
57
|
-
"rollup-plugin-
|
|
58
|
-
"rollup-plugin-
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@docbrasil/api-systemmanager",
|
|
3
|
+
"description": "Module API System Manager",
|
|
4
|
+
"version": "1.0.88",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"doc": "rm -f doc/api.md && jsdoc2md api/**/** > doc/api.md",
|
|
7
|
+
"doc:w": "rimraf doc/api.md && jsdoc2md api/**/** > doc/api.md",
|
|
8
|
+
"build": "node bundleRollup.js"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"main": "./dist/bundle.mjs",
|
|
12
|
+
"browser": "./dist/bundle.mjs",
|
|
13
|
+
"exports": {
|
|
14
|
+
"require": "./dist/bundle.cjs",
|
|
15
|
+
"import": "./dist/bundle.mjs"
|
|
16
|
+
},
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=14.x"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/cloudbrasil/api-systemmanager"
|
|
23
|
+
},
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"licenses": [
|
|
26
|
+
{
|
|
27
|
+
"type": "Apache-2.0",
|
|
28
|
+
"url": "https://spdx.org/licenses/Apache-2.0.html"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@hapi/boom": "^8.0.1",
|
|
33
|
+
"async": "^3.1.0",
|
|
34
|
+
"axios": "^0.21.2",
|
|
35
|
+
"crypto-js": "^4.1.1",
|
|
36
|
+
"i": "^0.3.7",
|
|
37
|
+
"joi": "^17.4.2",
|
|
38
|
+
"jsdoc-to-markdown": "^6.0.1",
|
|
39
|
+
"lodash": "^4.17.21",
|
|
40
|
+
"moment": "^2.27.0",
|
|
41
|
+
"npm": "^6.14.6"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@rollup/plugin-alias": "^3.1.8",
|
|
45
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
46
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
47
|
+
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
48
|
+
"axios-esm": "^1.0.0",
|
|
49
|
+
"chai": "^3.5.0",
|
|
50
|
+
"dayjs": "^1.10.7",
|
|
51
|
+
"glob": "~7.1.1",
|
|
52
|
+
"license-checker": "^8.0.4",
|
|
53
|
+
"lodash-es": "^4.17.21",
|
|
54
|
+
"mocha": "^3.2.0",
|
|
55
|
+
"proxyquire": "^1.8.0",
|
|
56
|
+
"rollup": "^2.59.0",
|
|
57
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
58
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
59
|
+
"rollup-plugin-uglify": "^6.0.4",
|
|
60
|
+
"sinon": "^7.5.0"
|
|
61
|
+
},
|
|
62
|
+
"maintainers": [
|
|
63
|
+
{
|
|
64
|
+
"name": "abernardo.br",
|
|
65
|
+
"email": "abernardo.br@gmail.com"
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}
|
package/readme.md
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
### README
|
|
2
|
-
<p>Requisitos para uso da API System Manager e ter os acessos para super usuário para chamadas e saber o endereço URI do servidor</p>
|
|
3
|
-
<p>Verifique sua versão do nodejs esperamos que tenha a versão v14+ </p>
|
|
4
|
-
|
|
5
|
-
### Instalando
|
|
6
|
-
|
|
7
|
-
#### Pelo npm
|
|
8
|
-
```
|
|
9
|
-
npm i @docbrasil/api-systemmanager
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
#### Pelo yarn
|
|
13
|
-
```
|
|
14
|
-
yarn add @docbrasil/api-systemmanager
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
```javascript
|
|
18
|
-
const APISystemManager = require('@docbrasil/api-systemmanager');
|
|
19
|
-
const api = new APISystemManager();
|
|
20
|
-
```
|
|
21
|
-
<p>Feito agora você já pode chamar os methos e fazer a interação com system manager</p>
|
|
22
|
-
|
|
23
|
-
### API
|
|
24
|
-
* Link para documentação da API: [CLIQUE AQUI!](https://github.com/cloudbrasil/api-systemmanager/blob/develop/doc/api.md)
|
|
25
|
-
* Exemplos de uso da API:: [CLIQUE AQUI!](https://github.com/cloudbrasil/api-systemmanager/wiki)
|
|
1
|
+
### README
|
|
2
|
+
<p>Requisitos para uso da API System Manager e ter os acessos para super usuário para chamadas e saber o endereço URI do servidor</p>
|
|
3
|
+
<p>Verifique sua versão do nodejs esperamos que tenha a versão v14+ </p>
|
|
4
|
+
|
|
5
|
+
### Instalando
|
|
6
|
+
|
|
7
|
+
#### Pelo npm
|
|
8
|
+
```
|
|
9
|
+
npm i @docbrasil/api-systemmanager
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
#### Pelo yarn
|
|
13
|
+
```
|
|
14
|
+
yarn add @docbrasil/api-systemmanager
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
```javascript
|
|
18
|
+
const APISystemManager = require('@docbrasil/api-systemmanager');
|
|
19
|
+
const api = new APISystemManager();
|
|
20
|
+
```
|
|
21
|
+
<p>Feito agora você já pode chamar os methos e fazer a interação com system manager</p>
|
|
22
|
+
|
|
23
|
+
### API
|
|
24
|
+
* Link para documentação da API: [CLIQUE AQUI!](https://github.com/cloudbrasil/api-systemmanager/blob/develop/doc/api.md)
|
|
25
|
+
* Exemplos de uso da API:: [CLIQUE AQUI!](https://github.com/cloudbrasil/api-systemmanager/wiki)
|
|
@@ -1,45 +1,45 @@
|
|
|
1
|
-
const _ = require('lodash');
|
|
2
|
-
const expect = require('chai').expect;
|
|
3
|
-
|
|
4
|
-
const API = require('../../index');
|
|
5
|
-
|
|
6
|
-
let sm;
|
|
7
|
-
let docId = '60c7c5b849f54c763a527499';
|
|
8
|
-
let apiKey = '346cf019-6127-448e-971f-b0ad6801dbf2';
|
|
9
|
-
|
|
10
|
-
describe('Start API Documents', function () {
|
|
11
|
-
before(function (done) {
|
|
12
|
-
|
|
13
|
-
try {
|
|
14
|
-
sm = new API();
|
|
15
|
-
done();
|
|
16
|
-
} catch (ex) {
|
|
17
|
-
expect(ex).to.be.empty;
|
|
18
|
-
}
|
|
19
|
-
});
|
|
20
|
-
|
|
21
|
-
it('Get signed url, method get', async function () {
|
|
22
|
-
try {
|
|
23
|
-
const retData = await sm.admin.document.signedUrl({ docId, methodType: 'get' }, apiKey);
|
|
24
|
-
expect(retData).to.not.be.empty;
|
|
25
|
-
expect(retData.signedUrl).to.not.be.empty;
|
|
26
|
-
expect(retData.document).to.not.be.empty;
|
|
27
|
-
} catch (ex) {
|
|
28
|
-
expect(ex).to.be.empty;
|
|
29
|
-
}
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
it('Get signed url, method get', async function () {
|
|
33
|
-
try {
|
|
34
|
-
const retData = await sm.admin.document.signedUrl({ docId, methodType: 'put' }, apiKey);
|
|
35
|
-
expect(retData).to.not.be.empty;
|
|
36
|
-
expect(retData.signedUrl).to.not.be.empty;
|
|
37
|
-
expect(retData.areaId).to.not.be.empty;
|
|
38
|
-
expect(retData.type).to.not.be.empty;
|
|
39
|
-
expect(retData.name).to.not.be.empty;
|
|
40
|
-
expect(retData.filename).to.not.be.empty;
|
|
41
|
-
} catch (ex) {
|
|
42
|
-
expect(ex).to.be.empty;
|
|
43
|
-
}
|
|
44
|
-
});
|
|
45
|
-
});
|
|
1
|
+
const _ = require('lodash');
|
|
2
|
+
const expect = require('chai').expect;
|
|
3
|
+
|
|
4
|
+
const API = require('../../index');
|
|
5
|
+
|
|
6
|
+
let sm;
|
|
7
|
+
let docId = '60c7c5b849f54c763a527499';
|
|
8
|
+
let apiKey = '346cf019-6127-448e-971f-b0ad6801dbf2';
|
|
9
|
+
|
|
10
|
+
describe('Start API Documents', function () {
|
|
11
|
+
before(function (done) {
|
|
12
|
+
|
|
13
|
+
try {
|
|
14
|
+
sm = new API();
|
|
15
|
+
done();
|
|
16
|
+
} catch (ex) {
|
|
17
|
+
expect(ex).to.be.empty;
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
it('Get signed url, method get', async function () {
|
|
22
|
+
try {
|
|
23
|
+
const retData = await sm.admin.document.signedUrl({ docId, methodType: 'get' }, apiKey);
|
|
24
|
+
expect(retData).to.not.be.empty;
|
|
25
|
+
expect(retData.signedUrl).to.not.be.empty;
|
|
26
|
+
expect(retData.document).to.not.be.empty;
|
|
27
|
+
} catch (ex) {
|
|
28
|
+
expect(ex).to.be.empty;
|
|
29
|
+
}
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
it('Get signed url, method get', async function () {
|
|
33
|
+
try {
|
|
34
|
+
const retData = await sm.admin.document.signedUrl({ docId, methodType: 'put' }, apiKey);
|
|
35
|
+
expect(retData).to.not.be.empty;
|
|
36
|
+
expect(retData.signedUrl).to.not.be.empty;
|
|
37
|
+
expect(retData.areaId).to.not.be.empty;
|
|
38
|
+
expect(retData.type).to.not.be.empty;
|
|
39
|
+
expect(retData.name).to.not.be.empty;
|
|
40
|
+
expect(retData.filename).to.not.be.empty;
|
|
41
|
+
} catch (ex) {
|
|
42
|
+
expect(ex).to.be.empty;
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
});
|
package/tests/admin/form.spec.js
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
const _ = require('lodash');
|
|
2
|
-
const expect = require('chai').expect;
|
|
3
|
-
|
|
4
|
-
const API = require('../../index');
|
|
5
|
-
|
|
6
|
-
let session;
|
|
7
|
-
let userId;
|
|
8
|
-
let orgId;
|
|
9
|
-
let sm;
|
|
10
|
-
let formId = '5e834cf792207e480d6a879c';
|
|
11
|
-
let apiKey = '38bd15aa-6418-4d4f-812a-e7ed5b3bfcde';
|
|
12
|
-
|
|
13
|
-
describe('Start API forms', function () {
|
|
14
|
-
before(function (done) {
|
|
15
|
-
|
|
16
|
-
try {
|
|
17
|
-
sm = new API();
|
|
18
|
-
done();
|
|
19
|
-
} catch (ex) {
|
|
20
|
-
expect(ex).to.be.empty;
|
|
21
|
-
}
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
it('Login SU', async function () {
|
|
25
|
-
try {
|
|
26
|
-
const retData = await sm.login.apiKey(apiKey);
|
|
27
|
-
|
|
28
|
-
expect(retData).to.not.be.empty;
|
|
29
|
-
expect(retData.auth).to.be.true;
|
|
30
|
-
expect(retData.user).to.be.an('object');
|
|
31
|
-
expect(retData.user).to.be.an('object');
|
|
32
|
-
expect(retData.user).to.not.be.empty;
|
|
33
|
-
expect(retData.user.sessionId).to.not.be.empty;
|
|
34
|
-
expect(retData.user.sessionId.split('.').length).equal(3);
|
|
35
|
-
expect(retData.user.orgId.length).equal(24);
|
|
36
|
-
|
|
37
|
-
session = retData.user.sessionId;
|
|
38
|
-
userId = retData.user._id;
|
|
39
|
-
orgId = retData.user.orgId;
|
|
40
|
-
} catch (ex) {
|
|
41
|
-
expect(ex).to.be.empty;
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
it('Get form by ID', async function () {
|
|
46
|
-
try {
|
|
47
|
-
const params = {id: formId, orgId};
|
|
48
|
-
const retData = await sm.admin.form.findById(params, session);
|
|
49
|
-
|
|
50
|
-
expect(retData).to.not.be.empty;
|
|
51
|
-
expect(retData).to.be.an('object');
|
|
52
|
-
expect(retData._id).equal(formId);
|
|
53
|
-
expect(retData.form).to.not.be.empty;
|
|
54
|
-
expect(retData.form).to.be.an('object');
|
|
55
|
-
expect(retData.form.form).to.not.be.empty;
|
|
56
|
-
expect(retData.form.form).to.be.an('array');
|
|
57
|
-
} catch (ex) {
|
|
58
|
-
expect(ex).to.be.empty;
|
|
59
|
-
}
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
it('Logout user', async function () {
|
|
63
|
-
try {
|
|
64
|
-
const retData = await sm.login.logout(session);
|
|
65
|
-
|
|
66
|
-
expect(retData).to.not.be.empty;
|
|
67
|
-
expect(retData).to.be.an('object');
|
|
68
|
-
expect(retData.response).to.not.be.empty;
|
|
69
|
-
expect(retData.response).equal('OK');
|
|
70
|
-
} catch (ex) {
|
|
71
|
-
expect(ex).to.be.empty;
|
|
72
|
-
}
|
|
73
|
-
});
|
|
74
|
-
});
|
|
1
|
+
const _ = require('lodash');
|
|
2
|
+
const expect = require('chai').expect;
|
|
3
|
+
|
|
4
|
+
const API = require('../../index');
|
|
5
|
+
|
|
6
|
+
let session;
|
|
7
|
+
let userId;
|
|
8
|
+
let orgId;
|
|
9
|
+
let sm;
|
|
10
|
+
let formId = '5e834cf792207e480d6a879c';
|
|
11
|
+
let apiKey = '38bd15aa-6418-4d4f-812a-e7ed5b3bfcde';
|
|
12
|
+
|
|
13
|
+
describe('Start API forms', function () {
|
|
14
|
+
before(function (done) {
|
|
15
|
+
|
|
16
|
+
try {
|
|
17
|
+
sm = new API();
|
|
18
|
+
done();
|
|
19
|
+
} catch (ex) {
|
|
20
|
+
expect(ex).to.be.empty;
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it('Login SU', async function () {
|
|
25
|
+
try {
|
|
26
|
+
const retData = await sm.login.apiKey(apiKey);
|
|
27
|
+
|
|
28
|
+
expect(retData).to.not.be.empty;
|
|
29
|
+
expect(retData.auth).to.be.true;
|
|
30
|
+
expect(retData.user).to.be.an('object');
|
|
31
|
+
expect(retData.user).to.be.an('object');
|
|
32
|
+
expect(retData.user).to.not.be.empty;
|
|
33
|
+
expect(retData.user.sessionId).to.not.be.empty;
|
|
34
|
+
expect(retData.user.sessionId.split('.').length).equal(3);
|
|
35
|
+
expect(retData.user.orgId.length).equal(24);
|
|
36
|
+
|
|
37
|
+
session = retData.user.sessionId;
|
|
38
|
+
userId = retData.user._id;
|
|
39
|
+
orgId = retData.user.orgId;
|
|
40
|
+
} catch (ex) {
|
|
41
|
+
expect(ex).to.be.empty;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it('Get form by ID', async function () {
|
|
46
|
+
try {
|
|
47
|
+
const params = {id: formId, orgId};
|
|
48
|
+
const retData = await sm.admin.form.findById(params, session);
|
|
49
|
+
|
|
50
|
+
expect(retData).to.not.be.empty;
|
|
51
|
+
expect(retData).to.be.an('object');
|
|
52
|
+
expect(retData._id).equal(formId);
|
|
53
|
+
expect(retData.form).to.not.be.empty;
|
|
54
|
+
expect(retData.form).to.be.an('object');
|
|
55
|
+
expect(retData.form.form).to.not.be.empty;
|
|
56
|
+
expect(retData.form.form).to.be.an('array');
|
|
57
|
+
} catch (ex) {
|
|
58
|
+
expect(ex).to.be.empty;
|
|
59
|
+
}
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it('Logout user', async function () {
|
|
63
|
+
try {
|
|
64
|
+
const retData = await sm.login.logout(session);
|
|
65
|
+
|
|
66
|
+
expect(retData).to.not.be.empty;
|
|
67
|
+
expect(retData).to.be.an('object');
|
|
68
|
+
expect(retData.response).to.not.be.empty;
|
|
69
|
+
expect(retData.response).equal('OK');
|
|
70
|
+
} catch (ex) {
|
|
71
|
+
expect(ex).to.be.empty;
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
});
|
package/tests/admin/list.spec.js
CHANGED
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
const _ = require('lodash');
|
|
2
|
-
const expect = require('chai').expect;
|
|
3
|
-
|
|
4
|
-
const API = require('../../index');
|
|
5
|
-
|
|
6
|
-
let userId;
|
|
7
|
-
let orgId;
|
|
8
|
-
let sm;
|
|
9
|
-
let session;
|
|
10
|
-
let listId = '5e553471f0c1ed539e97519c';
|
|
11
|
-
let apiKey = '38bd15aa-6418-4d4f-812a-e7ed5b3bfcde';
|
|
12
|
-
|
|
13
|
-
describe('Start API lists', function () {
|
|
14
|
-
before(function (done) {
|
|
15
|
-
|
|
16
|
-
try {
|
|
17
|
-
sm = new API();
|
|
18
|
-
done();
|
|
19
|
-
} catch (ex) {
|
|
20
|
-
expect(ex).to.be.empty;
|
|
21
|
-
}
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
it('Login SU', async function () {
|
|
25
|
-
try {
|
|
26
|
-
const retData = await sm.login.apiKey(apiKey);
|
|
27
|
-
|
|
28
|
-
expect(retData).to.not.be.empty;
|
|
29
|
-
expect(retData.auth).to.be.true;
|
|
30
|
-
expect(retData.user).to.be.an('object');
|
|
31
|
-
expect(retData.user).to.be.an('object');
|
|
32
|
-
expect(retData.user).to.not.be.empty;
|
|
33
|
-
expect(retData.user.sessionId).to.not.be.empty;
|
|
34
|
-
expect(retData.user.sessionId.split('.').length).equal(3);
|
|
35
|
-
expect(retData.user.orgId.length).equal(24);
|
|
36
|
-
|
|
37
|
-
session = retData.user.sessionId;
|
|
38
|
-
userId = retData.user._id;
|
|
39
|
-
orgId = retData.user.orgId;
|
|
40
|
-
} catch (ex) {
|
|
41
|
-
expect(ex).to.be.empty;
|
|
42
|
-
}
|
|
43
|
-
});
|
|
44
|
-
|
|
45
|
-
it('Get list by ID', async function () {
|
|
46
|
-
try {
|
|
47
|
-
const params = {id: listId, orgId};
|
|
48
|
-
const retData = await sm.admin.list.findById(params, session);
|
|
49
|
-
|
|
50
|
-
expect(retData).to.not.be.empty;
|
|
51
|
-
expect(retData).to.be.an('object');
|
|
52
|
-
expect(retData._id).equal(listId);
|
|
53
|
-
expect(retData.list).to.not.be.empty;
|
|
54
|
-
expect(retData.list).to.be.an('array');
|
|
55
|
-
} catch (ex) {
|
|
56
|
-
expect(ex).to.be.empty;
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
|
|
60
|
-
it('Get all lists', async function () {
|
|
61
|
-
try {
|
|
62
|
-
|
|
63
|
-
const params = {orgId};
|
|
64
|
-
const retData = await sm.admin.list.find(params, session);
|
|
65
|
-
|
|
66
|
-
expect(retData).to.not.be.empty;
|
|
67
|
-
expect(retData).to.be.an('array');
|
|
68
|
-
} catch (ex) {
|
|
69
|
-
expect(ex).to.be.empty;
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
it('Logout user', async function () {
|
|
74
|
-
try {
|
|
75
|
-
const retData = await sm.login.logout(session);
|
|
76
|
-
|
|
77
|
-
expect(retData).to.not.be.empty;
|
|
78
|
-
expect(retData).to.be.an('object');
|
|
79
|
-
expect(retData.response).to.not.be.empty;
|
|
80
|
-
expect(retData.response).equal('OK');
|
|
81
|
-
} catch (ex) {
|
|
82
|
-
expect(ex).to.be.empty;
|
|
83
|
-
}
|
|
84
|
-
});
|
|
85
|
-
});
|
|
86
|
-
|
|
1
|
+
const _ = require('lodash');
|
|
2
|
+
const expect = require('chai').expect;
|
|
3
|
+
|
|
4
|
+
const API = require('../../index');
|
|
5
|
+
|
|
6
|
+
let userId;
|
|
7
|
+
let orgId;
|
|
8
|
+
let sm;
|
|
9
|
+
let session;
|
|
10
|
+
let listId = '5e553471f0c1ed539e97519c';
|
|
11
|
+
let apiKey = '38bd15aa-6418-4d4f-812a-e7ed5b3bfcde';
|
|
12
|
+
|
|
13
|
+
describe('Start API lists', function () {
|
|
14
|
+
before(function (done) {
|
|
15
|
+
|
|
16
|
+
try {
|
|
17
|
+
sm = new API();
|
|
18
|
+
done();
|
|
19
|
+
} catch (ex) {
|
|
20
|
+
expect(ex).to.be.empty;
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it('Login SU', async function () {
|
|
25
|
+
try {
|
|
26
|
+
const retData = await sm.login.apiKey(apiKey);
|
|
27
|
+
|
|
28
|
+
expect(retData).to.not.be.empty;
|
|
29
|
+
expect(retData.auth).to.be.true;
|
|
30
|
+
expect(retData.user).to.be.an('object');
|
|
31
|
+
expect(retData.user).to.be.an('object');
|
|
32
|
+
expect(retData.user).to.not.be.empty;
|
|
33
|
+
expect(retData.user.sessionId).to.not.be.empty;
|
|
34
|
+
expect(retData.user.sessionId.split('.').length).equal(3);
|
|
35
|
+
expect(retData.user.orgId.length).equal(24);
|
|
36
|
+
|
|
37
|
+
session = retData.user.sessionId;
|
|
38
|
+
userId = retData.user._id;
|
|
39
|
+
orgId = retData.user.orgId;
|
|
40
|
+
} catch (ex) {
|
|
41
|
+
expect(ex).to.be.empty;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it('Get list by ID', async function () {
|
|
46
|
+
try {
|
|
47
|
+
const params = {id: listId, orgId};
|
|
48
|
+
const retData = await sm.admin.list.findById(params, session);
|
|
49
|
+
|
|
50
|
+
expect(retData).to.not.be.empty;
|
|
51
|
+
expect(retData).to.be.an('object');
|
|
52
|
+
expect(retData._id).equal(listId);
|
|
53
|
+
expect(retData.list).to.not.be.empty;
|
|
54
|
+
expect(retData.list).to.be.an('array');
|
|
55
|
+
} catch (ex) {
|
|
56
|
+
expect(ex).to.be.empty;
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
it('Get all lists', async function () {
|
|
61
|
+
try {
|
|
62
|
+
|
|
63
|
+
const params = {orgId};
|
|
64
|
+
const retData = await sm.admin.list.find(params, session);
|
|
65
|
+
|
|
66
|
+
expect(retData).to.not.be.empty;
|
|
67
|
+
expect(retData).to.be.an('array');
|
|
68
|
+
} catch (ex) {
|
|
69
|
+
expect(ex).to.be.empty;
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
it('Logout user', async function () {
|
|
74
|
+
try {
|
|
75
|
+
const retData = await sm.login.logout(session);
|
|
76
|
+
|
|
77
|
+
expect(retData).to.not.be.empty;
|
|
78
|
+
expect(retData).to.be.an('object');
|
|
79
|
+
expect(retData.response).to.not.be.empty;
|
|
80
|
+
expect(retData.response).equal('OK');
|
|
81
|
+
} catch (ex) {
|
|
82
|
+
expect(ex).to.be.empty;
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
});
|
|
86
|
+
|