forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefs.js
More file actions
78 lines (61 loc) · 2.1 KB
/
refs.js
File metadata and controls
78 lines (61 loc) · 2.1 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 local = path.join.bind(path, __dirname);
var exec = require("../../utils/execPromise");
describe("Reference", function() {
var NodeGit = require("../../");
var Repository = NodeGit.Repository;
var Reference = NodeGit.Reference;
var reposPath = local("../repos/workdir");
var refName = "refs/heads/master";
before(function() {
var test = this;
return exec("git reset --hard origin/master", {cwd: reposPath})
.then(function() {
return Repository.open(reposPath);
})
.then(function(repository) {
test.repository = repository;
return repository.getReference(refName);
})
.then(function(reference) {
test.reference = reference;
});
});
it("can look up a reference", function() {
assert.ok(this.reference instanceof Reference);
});
it("can determine if the reference is symbolic", function() {
assert.equal(this.reference.isSymbolic(), false);
});
it("can determine if the reference is not symbolic", function() {
assert.ok(this.reference.isConcrete());
});
it("can check that reference is valid", function() {
assert.ok(this.reference.isValid());
});
it("can return refName when casting toString", function() {
assert.equal(this.reference.toString(), refName);
});
it("can compare two identical references", function() {
assert.equal(this.reference.cmp(this.reference), 0);
});
it("can compare two different references", function() {
var ref = this.reference;
return this.repository.getReference("checkout-test")
.then(function(otherRef) {
assert.notEqual(ref.cmp(otherRef), 0);
});
});
it("will return undefined looking up the symbolic target if not symbolic",
function() {
assert(this.reference.symbolicTarget() === undefined);
});
it("can look up the HEAD sha", function() {
return Reference.nameToId(this.repository, "HEAD")
.then(function(oid) {
var sha = oid.allocfmt();
assert.equal(sha, "32789a79e71fbc9e04d3eff7425e1771eb595150");
});
});
});