forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathremote.js
More file actions
125 lines (99 loc) · 3.23 KB
/
Copy pathremote.js
File metadata and controls
125 lines (99 loc) · 3.23 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
var assert = require("assert");
var path = require("path");
describe("Remote", function() {
var reposPath = path.resolve("test/repos/workdir/.git");
var NodeGit = require("../../");
var Repository = require("../../lib/repository");
var Remote = require("../../lib/remote");
function removeOrigins(repository) {
return Remote.load(repository, "origin1").then(function(remote) {
remote.delete();
return Remote.load(repository, "origin2").then(function(remote) {
remote.delete();
});
}).catch(function() {});
}
before(function() {
var test = this;
return Repository.open(reposPath).then(function(repository) {
test.repository = repository;
return Remote.load(repository, "origin").then(function(remote) {
test.remote = remote;
return removeOrigins(repository);
});
});
});
after(function() {
return removeOrigins(this.repository);
});
it("can load a remote", function() {
assert.ok(this.remote instanceof Remote);
});
it("can read the remote url", function() {
assert.equal(
this.remote.url().replace(".git", ""),
"https://github.com/nodegit/test");
});
it("can push a remote", function() {
assert.equal(this.remote.pushurl(), undefined);
});
it("can set a remote", function() {
var repository = this.repository;
var url = "https://github.com/nodegit/nodegit";
return Remote.create(repository, "origin1", url).then(function(remote) {
return remote.setPushurl("https://google.com/", function() {
assert(remote.pushurl(), "https://google.com/");
});
});
});
it("can read the remote name", function() {
assert.equal(this.remote.name(), "origin");
});
it("can create a new remote", function() {
var repository = this.repository;
var url = "https://github.com/nodegit/test";
return Remote.create(repository, "origin2", url).then(function() {
return Remote.load(repository, "origin2").then(function(remote) {
assert(remote.url(), "https://github.com/nodegit/test");
});
});
});
it("can delete a remote", function() {
var repository = this.repository;
var url = "https://github.com/nodegit/test";
return Remote.create(repository, "origin3", url).then(function() {
return Remote.load(repository, "origin3").then(function(remote) {
remote.delete();
});
});
});
it("can download from a remote", function() {
var repo = this.repository;
return Remote.load(repo, "origin")
.then(function(remote) {
remote.connect(NodeGit.Enums.DIRECTION.FETCH);
return remote.download();
})
.then(function() {
assert(true);
}, function() {
assert(false);
});
});
it("can fetch from a remote", function() {
return this.repository.fetch("origin", {
credentials: function(url, userName) {
return NodeGit.Cred.sshKeyFromAgent(userName);
}
}, true);
});
it("can fetch from all remotes", function() {
// Set a reasonable timeout here for the fetchAll test
this.timeout(15000);
return this.repository.fetchAll({
credentials: function(url, userName) {
return NodeGit.Cred.sshKeyFromAgent(userName);
}
}, true);
});
});