Skip to content

Commit

Permalink
Merge pull request #598 from vanadium23/new-test-revparse
Browse files Browse the repository at this point in the history
Add test for RevParse object
  • Loading branch information
johnhaley81 committed Jun 8, 2015
2 parents 1ee3663 + 60db40d commit 5be0869
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions test/tests/revparse.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.");
});
});

});

0 comments on commit 5be0869

Please sign in to comment.