File size: 7,398 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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
import { assert, it, describe } from "vitest";
import { TEST_HUB_URL, TEST_ACCESS_TOKEN, TEST_USER } from "../test/consts";
import type { RepoId } from "../types/public";
import type { CommitFile } from "./commit";
import { commit } from "./commit";
import { createRepo } from "./create-repo";
import { deleteRepo } from "./delete-repo";
import { downloadFile } from "./download-file";
import { fileDownloadInfo } from "./file-download-info";
import { insecureRandomString } from "../utils/insecureRandomString";
import { isFrontend } from "../utils/isFrontend";
const lfsContent = "O123456789".repeat(100_000);
describe("commit", () => {
it("should commit to a repo with blobs", async function () {
const tokenizerJsonUrl = new URL(
"https://huggingface.co/spaces/aschen/push-model-from-web/raw/main/mobilenet/model.json"
);
const repoName = `${TEST_USER}/TEST-${insecureRandomString()}`;
const repo: RepoId = {
name: repoName,
type: "model",
};
await createRepo({
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
repo,
license: "mit",
});
try {
const readme1 = await downloadFile({ repo, path: "README.md", hubUrl: TEST_HUB_URL });
assert(readme1, "Readme doesn't exist");
const nodeOperation: CommitFile[] = isFrontend
? []
: [
{
operation: "addOrUpdate",
path: "tsconfig.json",
content: (await import("node:url")).pathToFileURL("./tsconfig.json") as URL,
},
];
await commit({
repo,
title: "Some commit",
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
operations: [
{
operation: "addOrUpdate",
content: new Blob(["This is me"]),
path: "test.txt",
},
{
operation: "addOrUpdate",
content: new Blob([lfsContent]),
path: "test.lfs.txt",
},
...nodeOperation,
{
operation: "addOrUpdate",
content: tokenizerJsonUrl,
path: "lamaral.json",
},
{
operation: "delete",
path: "README.md",
},
],
// To test web workers in the front-end
useWebWorkers: { minSize: 5_000 },
});
const fileContent = await downloadFile({ repo, path: "test.txt", hubUrl: TEST_HUB_URL });
assert.strictEqual(await fileContent?.text(), "This is me");
const lfsFileContent = await downloadFile({ repo, path: "test.lfs.txt", hubUrl: TEST_HUB_URL });
assert.strictEqual(await lfsFileContent?.text(), lfsContent);
const lfsFileUrl = `${TEST_HUB_URL}/${repoName}/raw/main/test.lfs.txt`;
const lfsFilePointer = await fetch(lfsFileUrl);
assert.strictEqual(lfsFilePointer.status, 200);
assert.strictEqual(
(await lfsFilePointer.text()).trim(),
`
version https://git-lfs.github.com/spec/v1
oid sha256:a3bbce7ee1df7233d85b5f4d60faa3755f93f537804f8b540c72b0739239ddf8
size ${lfsContent.length}
`.trim()
);
if (!isFrontend) {
const fileUrlContent = await downloadFile({ repo, path: "tsconfig.json", hubUrl: TEST_HUB_URL });
assert.strictEqual(
await fileUrlContent?.text(),
(await import("node:fs")).readFileSync("./tsconfig.json", "utf-8")
);
}
const webResourceContent = await downloadFile({ repo, path: "lamaral.json", hubUrl: TEST_HUB_URL });
assert.strictEqual(await webResourceContent?.text(), await (await fetch(tokenizerJsonUrl)).text());
const readme2 = await downloadFile({ repo, path: "README.md", hubUrl: TEST_HUB_URL });
assert.strictEqual(readme2, null);
} finally {
await deleteRepo({
repo: {
name: repoName,
type: "model",
},
hubUrl: TEST_HUB_URL,
credentials: { accessToken: TEST_ACCESS_TOKEN },
});
}
}, 60_000);
it("should commit a full repo from HF with web urls", async function () {
const repoName = `${TEST_USER}/TEST-${insecureRandomString()}`;
const repo: RepoId = {
name: repoName,
type: "model",
};
await createRepo({
accessToken: TEST_ACCESS_TOKEN,
repo,
hubUrl: TEST_HUB_URL,
});
try {
const FILES_TO_UPLOAD = [
`https://huggingface.co/spaces/huggingfacejs/push-model-from-web/resolve/main/mobilenet/model.json`,
`https://huggingface.co/spaces/huggingfacejs/push-model-from-web/resolve/main/mobilenet/group1-shard1of2`,
`https://huggingface.co/spaces/huggingfacejs/push-model-from-web/resolve/main/mobilenet/group1-shard2of2`,
`https://huggingface.co/spaces/huggingfacejs/push-model-from-web/resolve/main/mobilenet/coffee.jpg`,
`https://huggingface.co/spaces/huggingfacejs/push-model-from-web/resolve/main/mobilenet/README.md`,
];
const operations: CommitFile[] = await Promise.all(
FILES_TO_UPLOAD.map(async (file) => {
return {
operation: "addOrUpdate",
path: file.slice(file.indexOf("main/") + "main/".length),
// upload remote file
content: new URL(file),
};
})
);
await commit({
repo,
accessToken: TEST_ACCESS_TOKEN,
hubUrl: TEST_HUB_URL,
title: "upload model",
operations,
});
const LFSSize = (await fileDownloadInfo({ repo, path: "mobilenet/group1-shard1of2", hubUrl: TEST_HUB_URL }))
?.size;
assert.strictEqual(LFSSize, 4_194_304);
const pointerFile = await downloadFile({
repo,
path: "mobilenet/group1-shard1of2",
raw: true,
hubUrl: TEST_HUB_URL,
});
// Make sure SHA is computed properly as well
assert.strictEqual(
(await pointerFile?.text())?.trim(),
`
version https://git-lfs.github.com/spec/v1
oid sha256:3fb621eb9b37478239504ee083042d5b18699e8b8618e569478b03b119a85a69
size 4194304
`.trim()
);
} finally {
await deleteRepo({
repo: {
name: repoName,
type: "model",
},
hubUrl: TEST_HUB_URL,
credentials: { accessToken: TEST_ACCESS_TOKEN },
});
}
// https://huggingfacejs-push-model-from-web.hf.space/
}, 60_000);
it("should be able to create a PR and then commit to it", async function () {
const repoName = `${TEST_USER}/TEST-${insecureRandomString()}`;
const repo: RepoId = {
name: repoName,
type: "model",
};
await createRepo({
credentials: {
accessToken: TEST_ACCESS_TOKEN,
},
repo,
hubUrl: TEST_HUB_URL,
});
try {
const pr = await commit({
repo,
credentials: {
accessToken: TEST_ACCESS_TOKEN,
},
hubUrl: TEST_HUB_URL,
title: "Create PR",
isPullRequest: true,
operations: [
{
operation: "addOrUpdate",
content: new Blob(["This is me"]),
path: "test.txt",
},
],
});
if (!pr) {
throw new Error("PR creation failed");
}
if (!pr.pullRequestUrl) {
throw new Error("No pull request url");
}
const prNumber = pr.pullRequestUrl.split("/").pop();
const prRef = `refs/pr/${prNumber}`;
await commit({
repo,
credentials: {
accessToken: TEST_ACCESS_TOKEN,
},
hubUrl: TEST_HUB_URL,
branch: prRef,
title: "Some commit",
operations: [
{
operation: "addOrUpdate",
content: new URL(
`https://huggingface.co/spaces/huggingfacejs/push-model-from-web/resolve/main/mobilenet/group1-shard1of2`
),
path: "mobilenet/group1-shard1of2",
},
],
});
assert(commit, "PR commit failed");
} finally {
await deleteRepo({
repo: {
name: repoName,
type: "model",
},
hubUrl: TEST_HUB_URL,
credentials: { accessToken: TEST_ACCESS_TOKEN },
});
}
}, 60_000);
});
|