File size: 3,578 Bytes
21dd449 |
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 |
import { assert, it, describe } from "vitest";
import { TEST_ACCESS_TOKEN, TEST_HUB_URL, TEST_USER } from "../test/consts";
import type { RepoId } from "../types/public";
import { insecureRandomString } from "../utils/insecureRandomString";
import { createRepo } from "./create-repo";
import { deleteRepo } from "./delete-repo";
import { createBranch } from "./create-branch";
import { uploadFile } from "./upload-file";
import { downloadFile } from "./download-file";
describe("createBranch", () => {
it("should create a new branch from the default branch", async () => {
const repoName = `${TEST_USER}/TEST-${insecureRandomString()}`;
const repo = { type: "model", name: repoName } satisfies RepoId;
try {
await createRepo({
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
repo,
});
await uploadFile({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
file: {
path: "file.txt",
content: new Blob(["file content"]),
},
});
await createBranch({
repo,
branch: "new-branch",
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
const content = await downloadFile({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
path: "file.txt",
revision: "new-branch",
});
assert.equal(await content?.text(), "file content");
} finally {
await deleteRepo({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
}
});
it("should create an empty branch", async () => {
const repoName = `${TEST_USER}/TEST-${insecureRandomString()}`;
const repo = { type: "model", name: repoName } satisfies RepoId;
try {
await createRepo({
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
repo,
});
await uploadFile({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
file: {
path: "file.txt",
content: new Blob(["file content"]),
},
});
await createBranch({
repo,
branch: "empty-branch",
empty: true,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
const content = await downloadFile({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
path: "file.txt",
revision: "empty-branch",
});
assert.equal(content, null);
} finally {
await deleteRepo({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
}
});
it("should overwrite an existing branch", async () => {
const repoName = `${TEST_USER}/TEST-${insecureRandomString()}`;
const repo = { type: "model", name: repoName } satisfies RepoId;
try {
await createRepo({
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
repo,
});
await uploadFile({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
file: {
path: "file.txt",
content: new Blob(["file content"]),
},
});
await createBranch({
repo,
branch: "overwrite-branch",
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
await createBranch({
repo,
branch: "overwrite-branch",
overwrite: true,
empty: true,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
const content = await downloadFile({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
path: "file.txt",
revision: "overwrite-branch",
});
assert.equal(content, null);
} finally {
await deleteRepo({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
});
}
});
});
|