migrate js-api tests from Jest to Node.js native test runner (#12104)

This commit is contained in:
Denys Vuika
2026-07-28 20:04:31 +01:00
committed by GitHub
parent c316c6b594
commit 6c8b874704
58 changed files with 2355 additions and 4978 deletions
@@ -16,15 +16,17 @@
*/
import assert from 'assert';
import { resetGlobalMockAgent } from '../mockObjects/base.mock';
import { AlfrescoApi, NodesApi } from '../../src';
import { EcmAuthMock, NodeMock } from '../mockObjects';
import { describe, it, beforeEach, afterEach } from 'node:test';
describe('Node', () => {
let authResponseMock: EcmAuthMock;
let nodeMock: NodeMock;
let nodesApi: NodesApi;
beforeEach((done) => {
beforeEach(async () => {
const hostEcm = 'https://127.0.0.1:8080';
authResponseMock = new EcmAuthMock(hostEcm);
@@ -36,94 +38,85 @@ describe('Node', () => {
hostEcm
});
alfrescoJsApi.login('admin', 'admin').then(() => {
done();
});
await alfrescoJsApi.login('admin', 'admin');
nodesApi = new NodesApi(alfrescoJsApi);
});
afterEach(() => {
resetGlobalMockAgent();
});
describe('Get Children Node', () => {
it('information for the node with identifier nodeId should return 200 if is all ok', (done) => {
it('information for the node with identifier nodeId should return 200 if is all ok', async () => {
nodeMock.get200ResponseChildren();
nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1319').then((data) => {
assert.equal(data.list.pagination.count, 5);
assert.equal(data.list.entries[0].entry.name, 'dataLists');
done();
});
const data = await nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1319');
assert.equal(data.list.pagination.count, 5);
assert.equal(data.list.entries[0].entry.name, 'dataLists');
});
it('information for the node with identifier nodeId should return 404 if the id is does not exist', (done) => {
it('information for the node with identifier nodeId should return 404 if the id is does not exist', async () => {
nodeMock.get404ChildrenNotExist();
nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1319').then(
() => {},
(error) => {
assert.equal(error.status, 404);
done();
}
);
try {
await nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1319');
} catch (error: any) {
assert.equal(error.status, 404);
}
});
it('dynamic augmenting object parameters', (done) => {
it('dynamic augmenting object parameters', async () => {
nodeMock.get200ResponseChildrenFutureNewPossibleValue();
nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1319').then((data: any) => {
assert.equal(data.list.entries[0].entry.impossibleProperties, 'impossibleRightValue');
done();
});
const data: any = await nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1319');
assert.equal(data.list.entries[0].entry.impossibleProperties, 'impossibleRightValue');
});
it('should return dates as timezone-aware', (done) => {
it('should return dates as timezone-aware', async () => {
nodeMock.get200ResponseChildrenNonUTCTimes();
const equalTime = (actual: Date, expected: Date) => actual.getTime() === expected.getTime();
nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1320').then((data) => {
assert.equal(data.list.entries.length, 1);
const isEqual = equalTime(data.list.entries[0].entry.createdAt, new Date(Date.UTC(2011, 2, 15, 17, 4, 54, 290)));
assert.equal(isEqual, true);
done();
});
const data = await nodesApi.listNodeChildren('b4cff62a-664d-4d45-9302-98723eac1320');
assert.equal(data.list.entries.length, 1);
const isEqual = equalTime(data.list.entries[0].entry.createdAt, new Date(Date.UTC(2011, 2, 15, 17, 4, 54, 290)));
assert.equal(isEqual, true);
});
});
describe('Delete', () => {
it('delete the node with identifier nodeId', (done) => {
it('delete the node with identifier nodeId', async () => {
nodeMock.get204SuccessfullyDeleted();
nodesApi.deleteNode('80a94ac8-3ece-47ad-864e-5d939424c47c').then(() => {
done();
});
const result = await nodesApi.deleteNode('80a94ac8-3ece-47ad-864e-5d939424c47c');
assert.ok(result !== undefined, 'deleteNode should complete successfully');
});
it('delete the node with identifier nodeId should return 404 if the id is does not exist', (done) => {
it('delete the node with identifier nodeId should return 404 if the id is does not exist', async () => {
nodeMock.get404DeleteNotFound();
nodesApi.deleteNode('80a94ac8-test-47ad-864e-5d939424c47c').then(
() => {},
(error) => {
assert.equal(error.status, 404);
done();
}
);
try {
await nodesApi.deleteNode('80a94ac8-test-47ad-864e-5d939424c47c');
} catch (error: any) {
assert.equal(error.status, 404);
}
});
it('delete the node with identifier nodeId should return 403 if current user does not have permission to delete', (done) => {
it('delete the node with identifier nodeId should return 403 if current user does not have permission to delete', async () => {
nodeMock.get403DeletePermissionDenied();
nodesApi.deleteNode('80a94ac8-3ece-47ad-864e-5d939424c47c').then(
() => {},
() => {
done();
}
);
try {
await nodesApi.deleteNode('80a94ac8-3ece-47ad-864e-5d939424c47c');
assert.fail('Expected deleteNode to throw error on 403 response');
} catch (error: any) {
assert.equal(error.status, 403, 'Error should have 403 status');
}
});
});
describe('Delete nodes', () => {
it('should call deleteNode for every id in the given array', (done) => {
it('should call deleteNode for every id in the given array', async () => {
let calls = 0;
nodesApi.deleteNode = () => {
@@ -131,78 +124,67 @@ describe('Node', () => {
return Promise.resolve();
};
nodesApi.deleteNodes(['80a94ac8-3ece-47ad-864e-5d939424c47c', '80a94ac8-3ece-47ad-864e-5d939424c47d']).then(() => {
assert.equal(calls, 2);
done();
});
await nodesApi.deleteNodes(['80a94ac8-3ece-47ad-864e-5d939424c47c', '80a94ac8-3ece-47ad-864e-5d939424c47d']);
assert.equal(calls, 2);
});
it('should return throw an error if one of the promises fails', (done) => {
it('should return throw an error if one of the promises fails', async () => {
nodeMock.get204SuccessfullyDeleted();
nodeMock.get404DeleteNotFound();
nodesApi.deleteNodes(['80a94ac8-3ece-47ad-864e-5d939424c47c', '80a94ac8-test-47ad-864e-5d939424c47c']).then(
() => {},
(error) => {
assert.equal(error.status, 404);
done();
}
);
try {
await nodesApi.deleteNodes(['80a94ac8-3ece-47ad-864e-5d939424c47c', '80a94ac8-test-47ad-864e-5d939424c47c']);
assert.fail('Expected deleteNodes to throw error when one deletion fails');
} catch (error: any) {
assert.equal(error.status, 404, 'Error should have 404 status from failed deletion');
}
});
});
describe('FolderInformation', () => {
it('should return jobId on initiateFolderSizeCalculation API call if everything is ok', (done) => {
it('should return jobId on initiateFolderSizeCalculation API call if everything is ok', async () => {
nodeMock.post200ResponseInitiateFolderSizeCalculation();
nodesApi.initiateFolderSizeCalculation('b4cff62a-664d-4d45-9302-98723eac1319').then((response) => {
assert.equal(response.entry.jobId, '5ade426e-8a04-4d50-9e42-6e8a041d50f3');
done();
});
const response = await nodesApi.initiateFolderSizeCalculation('b4cff62a-664d-4d45-9302-98723eac1319');
assert.equal(response.entry.jobId, '5ade426e-8a04-4d50-9e42-6e8a041d50f3');
});
it('should return 404 error on initiateFolderSizeCalculation API call if nodeId is not found', (done) => {
it('should return 404 error on initiateFolderSizeCalculation API call if nodeId is not found', async () => {
nodeMock.post404NodeIdNotFound();
nodesApi.initiateFolderSizeCalculation('b4cff62a-664d-4d45-9302-98723eac1319').then(
() => {},
(err) => {
const { error } = JSON.parse(err.message);
assert.equal(error.statusCode, 404);
assert.equal(error.errorKey, 'framework.exception.EntityNotFound');
assert.equal(error.briefSummary, '11207522 The entity with id: b4cff62a-664d-4d45-9302-98723eac1319 was not found');
done();
}
);
try {
await nodesApi.initiateFolderSizeCalculation('b4cff62a-664d-4d45-9302-98723eac1319');
} catch (err: any) {
const { error } = JSON.parse(err.message);
assert.equal(error.statusCode, 404);
assert.equal(error.errorKey, 'framework.exception.EntityNotFound');
assert.equal(error.briefSummary, '11207522 The entity with id: b4cff62a-664d-4d45-9302-98723eac1319 was not found');
}
});
it('should return size details on getFolderSizeInfo API call if everything is ok', (done) => {
it('should return size details on getFolderSizeInfo API call if everything is ok', async () => {
nodeMock.get200ResponseGetFolderSizeInfo();
nodesApi.getFolderSizeInfo('b4cff62a-664d-4d45-9302-98723eac1319', '5ade426e-8a04-4d50-9e42-6e8a041d50f3').then((response) => {
assert.equal(response.entry.id, '32e522f1-1f28-4ea3-a522-f11f284ea397');
assert.equal(response.entry.jobId, '5ade426e-8a04-4d50-9e42-6e8a041d50f3');
assert.equal(response.entry.sizeInBytes, 2689);
assert.equal(response.entry.numberOfFiles, 100);
assert.equal(response.entry.calculatedAt, '2024-12-20T12:02:23.989+0000');
assert.equal(response.entry.status, 'COMPLETED');
done();
});
const response = await nodesApi.getFolderSizeInfo('b4cff62a-664d-4d45-9302-98723eac1319', '5ade426e-8a04-4d50-9e42-6e8a041d50f3');
assert.equal(response.entry.id, '32e522f1-1f28-4ea3-a522-f11f284ea397');
assert.equal(response.entry.jobId, '5ade426e-8a04-4d50-9e42-6e8a041d50f3');
assert.equal(response.entry.sizeInBytes, 2689);
assert.equal(response.entry.numberOfFiles, 100);
assert.equal(response.entry.calculatedAt, '2024-12-20T12:02:23.989+0000');
assert.equal(response.entry.status, 'COMPLETED');
});
it('should return 404 error on getFolderSizeInfo API call if jobId is not found', (done) => {
it('should return 404 error on getFolderSizeInfo API call if jobId is not found', async () => {
nodeMock.get404JobIdNotFound();
nodesApi.getFolderSizeInfo('b4cff62a-664d-4d45-9302-98723eac1319', '5ade426e-8a04-4d50-9e42-6e8a041d50f3').then(
() => {},
(err) => {
const { error } = JSON.parse(err.message);
assert.equal(error.statusCode, 404);
assert.equal(error.errorKey, 'jobId does not exist');
assert.equal(error.briefSummary, '11207212 jobId does not exist');
done();
}
);
try {
await nodesApi.getFolderSizeInfo('b4cff62a-664d-4d45-9302-98723eac1319', '5ade426e-8a04-4d50-9e42-6e8a041d50f3');
} catch (err: any) {
const { error } = JSON.parse(err.message);
assert.equal(error.statusCode, 404);
assert.equal(error.errorKey, 'jobId does not exist');
assert.equal(error.briefSummary, '11207212 jobId does not exist');
}
});
});
});