feat(catalog-backend-module-gitlab): Fix tests for archived projects

Signed-off-by: alessandro <alessandro.manno@facile.it>
This commit is contained in:
alessandro
2023-08-07 10:02:22 +02:00
parent 6550e48cb5
commit 919b52f7df
@@ -86,11 +86,13 @@ function setupFakeServer(
const last_activity_after = req.url.searchParams.get(
'last_activity_after',
);
const filteredData = response.data.filter(
v =>
!last_activity_after ||
Date.parse(v.last_activity_at) >= Date.parse(last_activity_after),
);
const filteredData = response.data
.filter(
v =>
!last_activity_after ||
Date.parse(v.last_activity_at) >= Date.parse(last_activity_after),
)
.filter(v => archived || !v.archived);
return res(
ctx.set('x-next-page', response.nextPage?.toString() ?? ''),
@@ -225,37 +227,6 @@ describe('GitlabDiscoveryProcessor', () => {
nextPage: 2,
};
case 2:
if (request.archived) {
return {
data: [
{
id: 3,
archived: false,
default_branch: 'master',
last_activity_at: '2021-08-05T11:03:05.774Z',
web_url: 'https://gitlab.fake/3',
path_with_namespace: '3',
},
{
id: 4,
archived: true, // ARCHIVED
default_branch: 'master',
last_activity_at: '2021-08-05T11:03:05.774Z',
web_url: 'https://gitlab.fake/4',
path_with_namespace: '4',
},
{
id: 5,
archived: false,
default_branch: undefined, // MISSING DEFAULT BRANCH
last_activity_at: '2021-08-05T11:03:05.774Z',
web_url: 'https://gitlab.fake/g/5',
path_with_namespace: 'g/5',
},
],
};
}
return {
data: [
{
@@ -266,6 +237,14 @@ describe('GitlabDiscoveryProcessor', () => {
web_url: 'https://gitlab.fake/3',
path_with_namespace: '3',
},
{
id: 4,
archived: true, // ARCHIVED
default_branch: 'master',
last_activity_at: '2021-08-05T11:03:05.774Z',
web_url: 'https://gitlab.fake/4',
path_with_namespace: '4',
},
{
id: 5,
archived: false,