|
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" |
3 | 7 |
|
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" |
6 | 13 |
|
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 | + }) |
8 | 62 | })
|
0 commit comments