-
Notifications
You must be signed in to change notification settings - Fork 696
Expand file tree
/
Copy pathrevparse.js
More file actions
66 lines (55 loc) · 1.72 KB
/
revparse.js
File metadata and controls
66 lines (55 loc) · 1.72 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
var assert = require("assert");
var path = require("path");
var local = path.join.bind(path, __dirname);
describe("Revparse", function() {
var NodeGit = require("../../");
var Repository = NodeGit.Repository;
var Revparse = NodeGit.Revparse;
var reposPath = local("../repos/workdir");
beforeEach(function() {
var test = this;
return Repository.open(reposPath)
.then(function(repository) {
test.repository = repository;
return test.repository.getHeadCommit();
})
.then(function(commit) {
test.commit = commit;
});
});
it("can revparse HEAD commit with single method", function() {
var test = this;
return Revparse.single(this.repository, "HEAD")
.then(function(headCommit) {
assert.ok(headCommit.isCommit());
assert.equal(headCommit.id().toString(), test.commit.id().toString());
});
});
it("will fail on invalid spec", function() {
return Revparse.single(this.repository, "INVALID")
.then(function() {
})
.catch(function(error) {
assert.ok(error instanceof Error);
assert.equal(error.message, "revspec 'INVALID' not found");
});
});
it("will fail without repo", function() {
return Revparse.single("", "INVALID")
.then(function() {
})
.catch(function(error) {
assert.ok(error instanceof Error);
assert.equal(error.message, "Repository repo is required.");
});
});
it("will fail without spec", function() {
return Revparse.single(this.repository)
.then(function() {
})
.catch(function(error) {
assert.ok(error instanceof Error);
assert.equal(error.message, "String spec is required.");
});
});
});