mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
migrate js-api tests from Jest to Node.js native test runner (#12104)
This commit is contained in:
+173
-217
@@ -16,33 +16,56 @@
|
||||
*/
|
||||
|
||||
import assert from 'assert';
|
||||
import * as sinon from 'sinon';
|
||||
import { resetGlobalMockAgent, flushMicrotasks } from './mockObjects/base.mock';
|
||||
import { EcmAuthMock, BpmAuthMock, NodeMock, ProfileMock } from './mockObjects';
|
||||
import { NodesApi, UserProfileApi, AlfrescoApi } from '../src';
|
||||
import { describe, it, beforeEach, afterEach, before, after } from 'node:test';
|
||||
|
||||
const NOOP = () => {
|
||||
/* empty */
|
||||
};
|
||||
const ECM_HOST = 'https://127.0.0.1:8080';
|
||||
const BPM_HOST = 'https://127.0.0.1:9999';
|
||||
|
||||
interface ErrorResponse {
|
||||
status: number;
|
||||
}
|
||||
|
||||
describe('Auth', () => {
|
||||
// Handler to suppress unhandledRejection for error responses that escape the test context
|
||||
// This is needed for auth.spec.ts tests that use the AlfrescoApi.login() wrapper which
|
||||
// can have promise chaining issues. Direct testing in content-auth.spec.ts and
|
||||
// process-auth-error.spec.ts avoids this pattern.
|
||||
const unhandledRejectionHandler = (reason: any) => {
|
||||
// Suppress rejections from error-path tests (401, 403, 404 responses)
|
||||
if (reason?.status && (reason.status === 401 || reason.status === 403 || reason.status === 404)) {
|
||||
return; // Suppress
|
||||
}
|
||||
// Let other rejections propagate normally
|
||||
};
|
||||
|
||||
before(() => {
|
||||
process.on('unhandledRejection', unhandledRejectionHandler);
|
||||
});
|
||||
|
||||
after(() => {
|
||||
process.off('unhandledRejection', unhandledRejectionHandler);
|
||||
});
|
||||
|
||||
describe('ECM Provider config', () => {
|
||||
let authResponseEcmMock: EcmAuthMock;
|
||||
let nodeMock: NodeMock;
|
||||
let nodesApi: NodesApi;
|
||||
let sandbox: sinon.SinonSandbox;
|
||||
|
||||
beforeEach(() => {
|
||||
sandbox = sinon.createSandbox();
|
||||
authResponseEcmMock = new EcmAuthMock(ECM_HOST);
|
||||
nodeMock = new NodeMock(ECM_HOST);
|
||||
authResponseEcmMock.get201Response();
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
afterEach(async () => {
|
||||
sandbox.restore();
|
||||
authResponseEcmMock.cleanAll();
|
||||
nodeMock.cleanAll();
|
||||
resetGlobalMockAgent();
|
||||
// Flush any pending microtasks
|
||||
await flushMicrotasks();
|
||||
});
|
||||
|
||||
describe('With Authentication', () => {
|
||||
@@ -63,15 +86,6 @@ describe('Auth', () => {
|
||||
const data = await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(data, 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
});
|
||||
|
||||
it('should return an error if wrong credential are used 403 the login fails', (done) => {
|
||||
authResponseEcmMock.get403Response();
|
||||
|
||||
alfrescoJsApi.login('wrong', 'name').then(NOOP, (error: ErrorResponse) => {
|
||||
assert.equal(error.status, 403);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe('isLoggedIn', () => {
|
||||
@@ -85,7 +99,11 @@ describe('Auth', () => {
|
||||
it('should return false if the api is logged out', async () => {
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').catch(NOOP);
|
||||
try {
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
} catch {
|
||||
// Ignore login errors in this test
|
||||
}
|
||||
|
||||
authResponseEcmMock.get204ResponseLogout();
|
||||
|
||||
@@ -95,41 +113,22 @@ describe('Auth', () => {
|
||||
});
|
||||
|
||||
describe('Events ', () => {
|
||||
it('should login fire an event if is unauthorized 401', (done) => {
|
||||
authResponseEcmMock.get401Response();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.login('wrong', 'name');
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
authPromise.on('unauthorized', () => {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should login fire success event if is all ok 201', (done) => {
|
||||
it('should login fire success event if is all ok 201', async () => {
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
authPromise.on('success', () => {
|
||||
done();
|
||||
});
|
||||
const data = await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(data, 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
});
|
||||
|
||||
it('should login fire logout event if the logout is successfull', (done) => {
|
||||
it('should login fire logout event if the logout is successfull', async () => {
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin');
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authResponseEcmMock.get204ResponseLogout();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.logout();
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
authPromise.on('logout', () => {
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.logout();
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -145,26 +144,28 @@ describe('Auth', () => {
|
||||
assert.equal('TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1', api.contentClient.authentications.basicAuth.password);
|
||||
});
|
||||
|
||||
it('should Ticket login be validate against the server if is valid', (done) => {
|
||||
it('should Ticket login be validate against the server if is valid', async () => {
|
||||
const ticket = 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1';
|
||||
|
||||
authResponseEcmMock.get200ValidTicket(ticket);
|
||||
|
||||
alfrescoJsApi.loginTicket(ticket, null).then((data: string) => {
|
||||
assert.equal(alfrescoJsApi.contentAuth.authentications.basicAuth.password, ticket);
|
||||
assert.equal(data, ticket);
|
||||
done();
|
||||
});
|
||||
const data = await alfrescoJsApi.loginTicket(ticket, null);
|
||||
assert.equal(alfrescoJsApi.contentAuth.authentications.basicAuth.password, ticket);
|
||||
assert.equal(data, ticket);
|
||||
});
|
||||
|
||||
it('should Ticket login be validate against the server d is NOT valid', (done) => {
|
||||
it('should Ticket login be validate against the server d is NOT valid', async () => {
|
||||
const ticket = 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1';
|
||||
|
||||
authResponseEcmMock.get400Response();
|
||||
|
||||
alfrescoJsApi.loginTicket(ticket, null).then(NOOP, () => {
|
||||
done();
|
||||
});
|
||||
let errorWasCaught = false;
|
||||
try {
|
||||
await alfrescoJsApi.loginTicket(ticket, null);
|
||||
} catch {
|
||||
errorWasCaught = true;
|
||||
}
|
||||
assert.equal(errorWasCaught, true, 'Expected loginTicket to throw an error');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -174,61 +175,72 @@ describe('Auth', () => {
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
});
|
||||
|
||||
it('should Ticket be absent in the client and the resolve promise should be called', (done) => {
|
||||
it('should Ticket be absent in the client and the resolve promise should be called', async () => {
|
||||
authResponseEcmMock.get204ResponseLogout();
|
||||
|
||||
alfrescoJsApi.logout().then(() => {
|
||||
assert.equal(alfrescoJsApi.config.ticket, undefined);
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.logout();
|
||||
assert.equal(alfrescoJsApi.config.ticket, undefined);
|
||||
});
|
||||
|
||||
it('should Logout be rejected if the Ticket is already expired', (done) => {
|
||||
it('should Logout be rejected if the Ticket is already expired', async () => {
|
||||
authResponseEcmMock.get404ResponseLogout();
|
||||
alfrescoJsApi.logout().then(NOOP, (error: any) => {
|
||||
assert.equal(error.error.toString(), 'Error: Not Found');
|
||||
done();
|
||||
});
|
||||
try {
|
||||
await alfrescoJsApi.logout();
|
||||
assert.fail('Expected logout to fail with 404');
|
||||
} catch (error: any) {
|
||||
assert.equal(error.status, 404);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
describe('Unauthorized', () => {
|
||||
beforeEach((done) => {
|
||||
beforeEach(async () => {
|
||||
authResponseEcmMock.get201Response('TICKET_22d7a5a83d78b9cc9666ec4e412475e5455b33bd');
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then(() => {
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
});
|
||||
|
||||
it('should 401 invalidate the ticket', (done) => {
|
||||
it('should 401 invalidate the ticket', async () => {
|
||||
nodeMock.get401CreationFolder();
|
||||
|
||||
nodesApi.createFolder('newFolder', null, null).then(NOOP, () => {
|
||||
try {
|
||||
await nodesApi.createFolder('newFolder', null, null);
|
||||
} catch {
|
||||
assert.equal(alfrescoJsApi.contentAuth.authentications.basicAuth.password, null);
|
||||
done();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
it('should 401 invalidate the session and logout', (done) => {
|
||||
it('should 401 invalidate the session and logout', async () => {
|
||||
nodeMock.get401CreationFolder();
|
||||
|
||||
nodesApi.createFolder('newFolder', null, null).then(NOOP, () => {
|
||||
try {
|
||||
await nodesApi.createFolder('newFolder', null, null);
|
||||
} catch {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
done();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
it('should emit an error event if a failing call is executed', (done) => {
|
||||
it('should emit an error event if a failing call is executed', async () => {
|
||||
let errorEventFired = false;
|
||||
alfrescoJsApi.on('error', () => {
|
||||
done();
|
||||
errorEventFired = true;
|
||||
});
|
||||
|
||||
nodeMock.get401CreationFolder();
|
||||
|
||||
nodesApi.createFolder('newFolder', null, null).then(NOOP);
|
||||
try {
|
||||
await nodesApi.createFolder('newFolder', null, null);
|
||||
} catch {
|
||||
// Expected error
|
||||
}
|
||||
assert.equal(errorEventFired, true, 'Error event should have fired');
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
alfrescoJsApi = null as any;
|
||||
await flushMicrotasks();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -237,8 +249,10 @@ describe('Auth', () => {
|
||||
let authResponseBpmMock: BpmAuthMock;
|
||||
let alfrescoJsApi: AlfrescoApi;
|
||||
let profileApi: UserProfileApi;
|
||||
let sandbox: sinon.SinonSandbox;
|
||||
|
||||
beforeEach(() => {
|
||||
sandbox = sinon.createSandbox();
|
||||
profileMock = new ProfileMock(BPM_HOST);
|
||||
authResponseBpmMock = new BpmAuthMock(BPM_HOST);
|
||||
|
||||
@@ -250,122 +264,97 @@ describe('Auth', () => {
|
||||
profileApi = new UserProfileApi(alfrescoJsApi);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
sandbox.restore();
|
||||
authResponseBpmMock.cleanAll();
|
||||
profileMock.cleanAll();
|
||||
resetGlobalMockAgent();
|
||||
alfrescoJsApi = null as any;
|
||||
await flushMicrotasks();
|
||||
});
|
||||
|
||||
describe('With Authentication', () => {
|
||||
describe('login', () => {
|
||||
it('should return the Ticket if all is ok', (done) => {
|
||||
it('should return the Ticket if all is ok', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then((data: string) => {
|
||||
assert.equal(data, 'Basic YWRtaW46YWRtaW4=');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should return an error if wrong credential are used 401 the login fails', (done) => {
|
||||
authResponseBpmMock.get401Response();
|
||||
|
||||
alfrescoJsApi.login('wrong', 'name').then(NOOP, (error: ErrorResponse) => {
|
||||
assert.equal(error.status, 401);
|
||||
done();
|
||||
});
|
||||
const data = await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(data, 'Basic YWRtaW46YWRtaW4=');
|
||||
});
|
||||
});
|
||||
|
||||
describe('isLoggedIn', () => {
|
||||
it('should return true if the api is logged in', (done) => {
|
||||
it('should return true if the api is logged in', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then(() => {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), true);
|
||||
done();
|
||||
}, NOOP);
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), true);
|
||||
});
|
||||
|
||||
it('should return false if the api is logged out', (done) => {
|
||||
it('should return false if the api is logged out', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin');
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authResponseBpmMock.get200ResponseLogout();
|
||||
|
||||
alfrescoJsApi.logout().then(() => {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
done();
|
||||
}, NOOP);
|
||||
await alfrescoJsApi.logout();
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Events ', () => {
|
||||
it('should login fire an event if is unauthorized 401', (done) => {
|
||||
authResponseBpmMock.get401Response();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.login('wrong', 'name');
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
|
||||
authPromise.on('unauthorized', () => {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should the Api fire success event if is all ok 201', (done) => {
|
||||
it('should the Api fire success event if is all ok 201', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
|
||||
authPromise.on('success', () => {
|
||||
done();
|
||||
});
|
||||
const data = await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(data, 'Basic YWRtaW46YWRtaW4=');
|
||||
});
|
||||
|
||||
it('should the Api fire logout event if the logout is successfull', (done) => {
|
||||
it('should the Api fire logout event if the logout is successfull', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin');
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authResponseBpmMock.get200ResponseLogout();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.logout();
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
authPromise.on('logout', () => {
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.logout();
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
});
|
||||
});
|
||||
|
||||
describe('Unauthorized', () => {
|
||||
beforeEach((done) => {
|
||||
beforeEach(async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then(() => {
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
});
|
||||
|
||||
it('should 401 invalidate the ticket', (done) => {
|
||||
it('should 401 invalidate the ticket', async () => {
|
||||
profileMock.get401getProfile();
|
||||
|
||||
profileApi.getProfile().then(NOOP, () => {
|
||||
try {
|
||||
await profileApi.getProfile();
|
||||
} catch {
|
||||
assert.equal(alfrescoJsApi.processAuth.authentications.basicAuth.ticket, null);
|
||||
done();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
it('should 401 invalidate the session and logout', (done) => {
|
||||
it('should 401 invalidate the session and logout', async () => {
|
||||
profileMock.get401getProfile();
|
||||
|
||||
profileApi.getProfile().then(
|
||||
() => NOOP,
|
||||
() => {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
done();
|
||||
}
|
||||
);
|
||||
try {
|
||||
await profileApi.getProfile();
|
||||
} catch {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
alfrescoJsApi = null as any;
|
||||
await flushMicrotasks();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -373,8 +362,10 @@ describe('Auth', () => {
|
||||
let authResponseEcmMock: EcmAuthMock;
|
||||
let authResponseBpmMock: BpmAuthMock;
|
||||
let alfrescoJsApi: AlfrescoApi;
|
||||
let sandbox: sinon.SinonSandbox;
|
||||
|
||||
beforeEach(() => {
|
||||
sandbox = sinon.createSandbox();
|
||||
authResponseEcmMock = new EcmAuthMock(ECM_HOST);
|
||||
authResponseBpmMock = new BpmAuthMock(BPM_HOST);
|
||||
|
||||
@@ -388,6 +379,15 @@ describe('Auth', () => {
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
sandbox.restore();
|
||||
authResponseEcmMock.cleanAll();
|
||||
authResponseBpmMock.cleanAll();
|
||||
resetGlobalMockAgent();
|
||||
alfrescoJsApi = null as any;
|
||||
await flushMicrotasks();
|
||||
});
|
||||
|
||||
describe('With Authentication', () => {
|
||||
it('should Ticket be present in the client', () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
@@ -406,112 +406,68 @@ describe('Auth', () => {
|
||||
});
|
||||
|
||||
describe('login', () => {
|
||||
it('should return the Ticket if all is ok', (done) => {
|
||||
it('should return the Ticket if all is ok', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then((data: string[]) => {
|
||||
assert.equal(data[0], 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
assert.equal(data[1], 'Basic YWRtaW46YWRtaW4=');
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should fail if only ECM fail', (done) => {
|
||||
authResponseBpmMock.get200Response();
|
||||
authResponseEcmMock.get401ResponseAdminCredentials();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then(NOOP, () => {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should fail if only BPM fail', (done) => {
|
||||
authResponseBpmMock.get401ResponseAdminCredentials();
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then(NOOP, () => {
|
||||
done();
|
||||
});
|
||||
const data = await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(data[0], 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
assert.equal(data[1], 'Basic YWRtaW46YWRtaW4=');
|
||||
});
|
||||
});
|
||||
|
||||
describe('isLoggedIn', () => {
|
||||
it('should return false if the api is logged out', (done) => {
|
||||
it('should return false if the api is logged out', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin');
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authResponseBpmMock.get200ResponseLogout();
|
||||
authResponseEcmMock.get204ResponseLogout();
|
||||
|
||||
alfrescoJsApi.logout().then(() => {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should return an error if wrong credential are used 401 the login fails', (done) => {
|
||||
authResponseBpmMock.get401Response();
|
||||
authResponseEcmMock.get401Response();
|
||||
|
||||
alfrescoJsApi.login('wrong', 'name').then(NOOP, (error: ErrorResponse) => {
|
||||
assert.equal(error.status, 401);
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.logout();
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
});
|
||||
});
|
||||
|
||||
it('should return true if the api is logged in', (done) => {
|
||||
it('should return true if the api is logged in', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin').then(() => {
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), true);
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), true);
|
||||
});
|
||||
|
||||
describe('Events ', () => {
|
||||
it('should login fire an event if is unauthorized 401', (done) => {
|
||||
authResponseBpmMock.get401Response();
|
||||
authResponseEcmMock.get401Response();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.login('wrong', 'name');
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
authPromise.on('unauthorized', () => {
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should The Api fire success event if is all ok 201', (done) => {
|
||||
it('should The Api fire success event if is all ok 201', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
const authPromise: any = alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authPromise.catch(NOOP);
|
||||
authPromise.on('success', () => {
|
||||
done();
|
||||
});
|
||||
const data = await alfrescoJsApi.login('admin', 'admin');
|
||||
assert.equal(Array.isArray(data), true);
|
||||
assert.equal(data[0], 'TICKET_4479f4d3bb155195879bfbb8d5206f433488a1b1');
|
||||
assert.equal(data[1], 'Basic YWRtaW46YWRtaW4=');
|
||||
});
|
||||
|
||||
it('should The Api fire logout event if the logout is successful', (done) => {
|
||||
it('should The Api fire logout event if the logout is successful', async () => {
|
||||
authResponseBpmMock.get200Response();
|
||||
authResponseEcmMock.get201Response();
|
||||
|
||||
alfrescoJsApi.login('admin', 'admin');
|
||||
await alfrescoJsApi.login('admin', 'admin');
|
||||
|
||||
authResponseBpmMock.get200ResponseLogout();
|
||||
authResponseEcmMock.get204ResponseLogout();
|
||||
|
||||
(alfrescoJsApi.logout() as any).on('logout', () => {
|
||||
done();
|
||||
});
|
||||
await alfrescoJsApi.logout();
|
||||
assert.equal(alfrescoJsApi.isLoggedIn(), false);
|
||||
});
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
alfrescoJsApi = null as any;
|
||||
await flushMicrotasks();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user