forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepository.js
More file actions
78 lines (63 loc) · 2.19 KB
/
Copy pathrepository.js
File metadata and controls
78 lines (63 loc) · 2.19 KB
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
var assert = require("assert");
var path = require("path");
var promisify = require("promisify-node");
var fse = promisify(require("fs-extra"));
describe("Repository", function() {
var reposPath = path.resolve("test/repos/workdir/.git");
var newRepo = path.resolve("test/repos/newrepo");
var Repository = require("../../lib/repository");
var Index = require("../../lib/index");
var Signature = require("../../lib/signature");
before(function() {
var test = this;
return Repository.open(reposPath).then(function(repository) {
test.repository = repository;
});
});
it("can open a valid repository", function() {
assert.ok(this.repository instanceof Repository);
});
it("cannot open an invalid repository", function() {
return Repository.open("repos/nonrepo").then(null, function(err) {
assert.ok(err instanceof Error);
});
});
it("does not try to open paths that don't exist", function() {
var missingPath = "/surely/this/directory/does/not/exist/on/this/machine";
return Repository.open(missingPath).then(null, function(err) {
assert.ok(err instanceof Error);
});
});
it("can initialize a repository into a folder", function() {
return Repository.init(newRepo, 1).then(function(path, isBare) {
return Repository.open(newRepo);
});
});
it("can utilize repository init options", function() {
return fse.remove(newRepo).then(function() {
return Repository.initExt(newRepo, {
flags: Repository.INIT_FLAG.MKPATH
});
});
});
it("can read the index", function() {
return this.repository.index().then(function(index) {
assert.ok(index instanceof Index);
});
});
it("can list remotes", function() {
return this.repository.getRemotes().then(function(remotes) {
assert.equal(remotes.length, 1);
assert.equal(remotes[0], "origin");
});
});
it("can get the current branch", function() {
return this.repository.getCurrentBranch().then(function(branch) {
assert.equal(branch.shorthand(), "master");
});
});
it("can get the default signature", function() {
var sig = this.repository.defaultSignature();
assert(sig instanceof Signature);
});
});