Skip to content

Commit b0d17f0

Browse files
authored
✅ Add server repo tests (#3)
1 parent 8cdb0fb commit b0d17f0

File tree

9 files changed

+107
-10
lines changed

9 files changed

+107
-10
lines changed

.env

+2
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ BITBUCKET_CLOUD_APP_PASSWORD=
44

55
BITBUCKET_SERVER_URL=
66
BITBUCKET_SERVER_TOKEN=
7+
BITBUCKET_SERVER_TEST_PROJECT_KEY=
8+
BITBUCKET_SERVER_TEST_PROJECT_NAME=

.github/workflows/node.js.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ jobs:
2929
BITBUCKET_CLOUD_APP_PASSWORD: ${{ secrets.BITBUCKET_CLOUD_APP_PASSWORD }}
3030
BITBUCKET_SERVER_URL: ${{ secrets.BITBUCKET_SERVER_URL }}
3131
BITBUCKET_SERVER_TOKEN: ${{ secrets.BITBUCKET_SERVER_TOKEN }}
32+
BITBUCKET_SERVER_TEST_PROJECT_KEY: ${{ vars.BITBUCKET_SERVER_TEST_PROJECT_KEY }}
33+
BITBUCKET_SERVER_TEST_PROJECT_NAME: ${{ vars.BITBUCKET_SERVER_TEST_PROJECT_NAME }}

.github/workflows/pnpm-publish.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
scope: "@coderabbitai"
4343
- run: pnpm publish --access public --no-git-checks --provenance
4444
env:
45-
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
45+
NODE_AUTH_TOKEN: ${{ secrets.CODERABBIT_NPM_TOKEN }}
4646

4747
- run: pnpm pack --pack-gzip-level 9
4848
- name: Sign

tests/cloud/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const basic = toBase64(
99
BITBUCKET_CLOUD_USERNAME + ":" + BITBUCKET_CLOUD_APP_PASSWORD,
1010
)
1111

12-
export const cloud = createBitbucketCloudClient({
12+
export const client = createBitbucketCloudClient({
1313
baseUrl: BITBUCKET_CLOUD_URL.toString(),
1414
headers: { Accept: "application/json", Authorization: `Basic ${basic}` },
1515
})

tests/cloud/repositories.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { test } from "vitest"
2-
import { cloud } from "./client.js"
2+
import { client } from "./client.js"
33

44
test("GET /repositories", async ({ expect }) => {
5-
const got = await cloud.GET("/repositories")
5+
const got = await client.GET("/repositories")
66

77
expect(got.data?.next).toBeTypeOf("string")
88
expect(got.data?.pagelen).toBeTypeOf("number")

tests/env.ts

+8
Original file line numberDiff line numberDiff line change
@@ -88,3 +88,11 @@ export const BITBUCKET_CLOUD_APP_PASSWORD = envString(
8888
)
8989
export const BITBUCKET_SERVER_URL = envUrl("BITBUCKET_SERVER_URL")
9090
export const BITBUCKET_SERVER_TOKEN = envString("BITBUCKET_SERVER_TOKEN")
91+
export const NODE_ENV = parsed.NODE_ENV
92+
93+
export const BITBUCKET_SERVER_TEST_PROJECT_KEY = envString(
94+
"BITBUCKET_SERVER_TEST_PROJECT_KEY",
95+
)
96+
export const BITBUCKET_SERVER_TEST_PROJECT_NAME = envString(
97+
"BITBUCKET_SERVER_TEST_PROJECT_NAME",
98+
)

tests/server/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createBitbucketServerClient } from "../../src/index.js"
22
import { BITBUCKET_SERVER_TOKEN, BITBUCKET_SERVER_URL } from "../env.js"
33

4-
export const server = createBitbucketServerClient({
4+
export const client = createBitbucketServerClient({
55
baseUrl: BITBUCKET_SERVER_URL.toString(),
66
headers: {
77
Accept: "application/json",

tests/server/projects.test.ts

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { describe, test } from "vitest"
2+
import {
3+
BITBUCKET_SERVER_TEST_PROJECT_KEY,
4+
BITBUCKET_SERVER_TEST_PROJECT_NAME,
5+
} from "../env.js"
6+
import { client } from "./client.js"
7+
8+
describe("Projects", () => {
9+
const key = BITBUCKET_SERVER_TEST_PROJECT_KEY
10+
const name = BITBUCKET_SERVER_TEST_PROJECT_NAME
11+
12+
// The API, even with a token with Project Admin permissions, cannot create
13+
// or delete projects.
14+
15+
test("Get projects", async ({ expect }) => {
16+
const page = await client.GET("/api/latest/projects", {
17+
params: { query: { name } },
18+
})
19+
expect(page.data?.size).toBeTypeOf("number")
20+
21+
const found = page.data?.values?.find(p => p.key === key)
22+
expect(found).toMatchObject({ key, name })
23+
})
24+
25+
test("Get a project", async ({ expect }) => {
26+
const project = await client.GET("/api/latest/projects/{projectKey}", {
27+
params: { path: { projectKey: key } },
28+
})
29+
expect(project.data).toMatchObject({ key, name })
30+
})
31+
})

tests/server/repositories.test.ts

+59-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,62 @@
1-
import { test } from "vitest"
2-
import { server } from "./client.js"
1+
import { describe, test } from "vitest"
2+
import {
3+
BITBUCKET_SERVER_TEST_PROJECT_KEY,
4+
BITBUCKET_SERVER_TEST_PROJECT_NAME,
5+
} from "../env.js"
6+
import { client } from "./client.js"
37

4-
test("GET /api/latest/repos", async ({ expect }) => {
5-
const got = await server.GET("/api/latest/repos")
8+
describe("Repositories", { concurrent: false, sequential: true }, () => {
9+
const projectKey = BITBUCKET_SERVER_TEST_PROJECT_KEY
10+
const projectName = BITBUCKET_SERVER_TEST_PROJECT_NAME
11+
const slug = "test-repository"
12+
const name = "Test Repository"
613

7-
expect(got.data?.size).toBeTypeOf("number")
14+
test("Create repository", async ({ expect }) => {
15+
const created = await client.POST(
16+
"/api/latest/projects/{projectKey}/repos",
17+
{ params: { path: { projectKey } }, body: { name, scmId: "git", slug } },
18+
)
19+
20+
if (created.error)
21+
console.error("Failed to create a repository", created.error)
22+
23+
expect(created).toMatchObject({
24+
data: {
25+
slug,
26+
name,
27+
project: { key: projectKey, name: projectName },
28+
scmId: "git",
29+
},
30+
response: { status: 201 },
31+
})
32+
})
33+
34+
test("Get a repository", async ({ expect }) => {
35+
const repository = await client.GET(
36+
"/api/latest/projects/{projectKey}/repos/{repositorySlug}",
37+
{ params: { path: { projectKey, repositorySlug: slug } } },
38+
)
39+
40+
if (repository.error)
41+
console.error("Failed to get a repository", repository.error)
42+
43+
expect(repository.data).toMatchObject({
44+
slug,
45+
name,
46+
project: { key: projectKey, name: projectName },
47+
scmId: "git",
48+
})
49+
})
50+
51+
test("Delete a repository", async ({ expect }) => {
52+
const deleted = await client.DELETE(
53+
"/api/latest/projects/{projectKey}/repos/{repositorySlug}",
54+
{ params: { path: { projectKey, repositorySlug: slug } } },
55+
)
56+
57+
if (deleted.error)
58+
console.error("Failed to delete a repository", deleted.error)
59+
60+
expect(deleted.response.status).toBe(202)
61+
})
862
})

0 commit comments

Comments
 (0)