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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
import { test, expect } from "@playwright/test";
import {
uid,
TEST_PASSWORD,
pushTestCommit,
pushFeatureBranch,
cleanupDir,
} from "./fixtures";
let owner: string;
let repoName: string;
let tmpDir: string;
test.beforeAll(async ({ browser }) => {
owner = uid("repouser");
repoName = uid("myrepo");
const page = await browser.newPage();
await page.goto("/register");
await page.fill('input[name="username"]', owner);
await page.fill('input[name="email"]', `${owner}@test.example`);
await page.fill('input[name="password"]', TEST_PASSWORD);
await page.click('button[type="submit"]');
await page.waitForURL(/\/(dashboard|[a-z])/);
await page.goto("/new");
await page.fill('input[name="name"]', repoName);
await page.click('button[type="submit"]');
await page.waitForURL(new RegExp(`/${owner}/${repoName}`));
await page.close();
tmpDir = await pushTestCommit({
owner,
repo: repoName,
username: owner,
password: TEST_PASSWORD,
fileName: "README.md",
fileContent: `# ${repoName}\n\nThis is the E2E test repo.\n`,
commitMsg: "Initial commit",
});
});
test.afterAll(async () => {
await cleanupDir(tmpDir);
});
test.describe("Repository creation", () => {
test("new repo page is accessible while logged in", async ({ page }) => {
await page.goto("/login");
await page.fill('input[name="username"]', owner);
await page.fill('input[name="password"]', TEST_PASSWORD);
await page.click('button[type="submit"]');
await page.waitForURL(/\/(dashboard|[a-z])/);
await page.goto("/new");
await expect(page.locator('input[name="name"]')).toBeVisible();
});
test("created repo homepage is publicly accessible", async ({ page }) => {
await page.goto(`/${owner}/${repoName}`);
await expect(page).toHaveURL(new RegExp(`/${owner}/${repoName}`));
await expect(page.locator("body")).toContainText(repoName);
});
});
test.describe("File browser", () => {
test("README.md appears in the file listing", async ({ page }) => {
await page.goto(`/${owner}/${repoName}`);
await expect(page.locator("body")).toContainText("README.md", {
timeout: 8_000,
});
});
test("README.md content is rendered on repo homepage", async ({ page }) => {
await page.goto(`/${owner}/${repoName}`);
await expect(page.locator("body")).toContainText("E2E test repo", {
timeout: 8_000,
});
});
test("clicking a file opens the blob view", async ({ page }) => {
await page.goto(`/${owner}/${repoName}`);
await page.click('a[href*="README.md"]');
await expect(page).toHaveURL(new RegExp(`/${owner}/${repoName}/blob`));
await expect(page.locator("body")).toContainText("E2E test repo");
});
});
test.describe("Commit list", () => {
test("commits page lists the initial commit", async ({ page }) => {
await page.goto(`/${owner}/${repoName}/commits`);
await expect(page.locator("body")).toContainText("Initial commit", {
timeout: 8_000,
});
});
test("commit detail page loads", async ({ page }) => {
await page.goto(`/${owner}/${repoName}/commits`);
const commitLink = page.locator('a[href*="/commit/"]').first();
await commitLink.click();
await expect(page).toHaveURL(new RegExp(`/${owner}/${repoName}/commit/`));
await expect(page.locator("body")).toContainText(/Initial commit|README/i);
});
});
test.describe("Branches", () => {
test("branches page lists main branch", async ({ page }) => {
await page.goto(`/${owner}/${repoName}/branches`);
await expect(page.locator("body")).toContainText(/main|master/, {
timeout: 8_000,
});
});
});
test.describe("Repo creation validation", () => {
test("invalid repo name shows error", async ({ page }) => {
await page.goto("/login");
await page.fill('input[name="username"]', owner);
await page.fill('input[name="password"]', TEST_PASSWORD);
await page.click('button[type="submit"]');
await page.waitForURL(/\/(dashboard|[a-z])/);
await page.goto("/new");
await page.fill('input[name="name"]', "invalid repo name!");
await page.click('button[type="submit"]');
const body = page.locator("body");
await expect(body).toContainText(/invalid|error/i, { timeout: 5_000 });
});
});
|