-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathgithub-discovery.spec.ts
49 lines (45 loc) · 1.47 KB
/
github-discovery.spec.ts
1
2
3
4
5
6
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
45
46
47
48
49
import { test as base } from "@playwright/test";
import GithubApi from "../support/api/github";
import { CATALOG_FILE, JANUS_QE_ORG } from "../utils/constants";
import { Common } from "../utils/common";
import { assert } from "console";
import { Catalog } from "../support/pages/catalog";
type GithubDiscoveryFixture = {
catalogPage: Catalog;
githubApi: GithubApi;
testOrganization: string;
};
const test = base.extend<GithubDiscoveryFixture>({
catalogPage: async ({ page }, use) => {
await new Common(page).loginAsGithubUser();
const catalog = new Catalog(page);
await catalog.go();
use(catalog);
},
githubApi: new GithubApi(),
testOrganization: JANUS_QE_ORG,
});
//TODO: skipping due to RHIDP-4992
test.describe.skip("Github Discovery Catalog", () => {
test(`Discover Organization's Catalog`, async ({
catalogPage,
githubApi,
testOrganization,
}) => {
const organizationRepos = await githubApi.getReposFromOrg(testOrganization);
const reposNames: string[] = organizationRepos.map((repo) => repo["name"]);
const realComponents: string[] = reposNames.filter(
async (repo) =>
await githubApi.fileExistsOnRepo(
`${testOrganization}/${repo}`,
CATALOG_FILE,
),
);
for (let i = 0; i != realComponents.length; i++) {
const repo = realComponents[i];
await catalogPage.search(repo);
const row = await catalogPage.tableRow(repo);
assert(await row.isVisible());
}
});
});