blob: 1f664354784e9de26ef0bc9ca5d155fd04aa4c8b (
plain)
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
|
import { Repository } from "server/src/git/repository";
import { Tree } from "server/src/git/tree";
import { TreeEntry } from "server/src/git/tree_entry";
import { BaseError } from "server/src/git/error";
import { EnvironmentVariables } from "../util";
const env = process.env as EnvironmentVariables;
describe("Tree", () => {
it("Should get the tree of a repository", async () => {
expect.assertions(2);
const tree = await Tree.ofRepository(await Repository.open(env.BASE_DIR, env.AVAIL_REPO));
expect(tree).toBeDefined();
expect(tree).toBeInstanceOf(Tree);
});
describe("Methods", () => {
let tree: Tree;
beforeAll(async () => {
tree = await Tree.ofRepository(await Repository.open(env.BASE_DIR, env.AVAIL_REPO));
});
it("Should get the entries", () => {
expect.hasAssertions();
const entries = tree.entries();
expect(entries).toBeDefined();
for(const entry of entries) {
expect(entry).toBeDefined();
expect(entry).toBeInstanceOf(TreeEntry);
}
});
it("Should return the entry of a path", async () => {
expect.assertions(2);
const entry = await tree.find("packages/server");
expect(entry).toBeDefined();
expect(entry).toBeInstanceOf(Tree);
});
it("Should fail to return the entry of a nonexistent path", async () => {
expect.assertions(1);
await expect(tree.find("dependencies/libstd++")).rejects.toBeInstanceOf(BaseError);
});
it("Should find out if an existent path exists and return true", async () => {
expect.assertions(1);
await expect(tree.findExists("packages/shared_types/package.json")).resolves.toBeTruthy();
});
it("Should find out if a nonexistent path exists and return false", async () => {
expect.assertions(1);
await expect(tree.findExists("packages/core/main.js")).resolves.toBeFalsy();
});
});
});
|