Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
260 lines (239 loc) · 7.82 KB

File metadata and controls

260 lines (239 loc) · 7.82 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
var assert = require("assert");
var path = require("path");
var fse = require("fs-extra");
var local = path.join.bind(path, __dirname);
describe("Stash", function() {
var NodeGit = require("../../");
var Repository = NodeGit.Repository;
var Stash = NodeGit.Stash;
var reposPath = local("../repos/workdir");
before(function() {
var test = this;
return Repository.open(reposPath)
.then(function(repository) {
test.repository = repository;
});
});
it("gets no stashes on clean working directory", function() {
var stashes = [];
var stashCb = function(index, message, oid) {
stashes.push({index: index, message: message, oid: oid});
};
return Stash.foreach(this.repository, stashCb)
.then(function() {
assert.equal(stashes.length, 0);
});
});
function saveDropStash(repo, stashMessage) {
const fileName = "README.md";
const fileContent = "Cha-cha-cha-chaaaaaangessssss";
const filePath = path.join(repo.workdir(), fileName);
let oldContent;
let stashes = [];
let stashOid;
return fse.readFile(filePath)
.then((content) => {
oldContent = content;
return fse.writeFile(filePath, fileContent);
})
.then(() => repo.defaultSignature())
.then((signature) => {
return Stash.save(repo, signature, stashMessage, 0);
})
.then((oid) => {
stashOid = oid;
var stashCb = function(index, message, oid) {
stashes.push({index: index, message: message, oid: oid});
};
return Stash.foreach(repo, stashCb);
})
.then(() => {
assert.equal(stashes.length, 1);
assert.equal(stashes[0].index, 0);
const expectedMessage = !stashMessage ?
"WIP on master: 32789a7 Fixes EJS not being installed via NPM" :
"On master: " + stashMessage;
assert.equal(stashes[0].message, expectedMessage);
assert.equal(stashes[0].oid.toString(), stashOid.toString());
return Stash.drop(repo, 0);
})
.then(() => {
stashes = [];
var stashCb = (index, message, oid) => {
stashes.push({index: index, message: message, oid: oid});
};
return Stash.foreach(repo, stashCb);
})
.then(() => {
assert.equal(stashes.length, 0);
})
.catch((e) => {
return fse.writeFile(filePath, oldContent)
.then(() => {
return Promise.reject(e);
});
});
}
it("can save and drop a stash", function() {
return saveDropStash(this.repository, "stash test");
});
it("can save a stash with no message and drop it", function() {
return saveDropStash(this.repository, null);
});
it("can save and pop a stash", function() {
const fileNameA = "README.md";
const fileNameB = "install.js";
let oldContentA;
let oldContentB;
const fileContent = "Cha-cha-cha-chaaaaaangessssss";
const repo = this.repository;
const filePathA = path.join(repo.workdir(), fileNameA);
const filePathB = path.join(repo.workdir(), fileNameB);
const stashMessage = "stash test";
return fse.readFile(filePathA, "utf-8")
.then((content) => {
oldContentA = content;
return fse.writeFile(filePathA, fileContent);
})
.then(() => {
return fse.readFile(filePathB, "utf-8");
})
.then((content) => {
oldContentB = content;
return fse.writeFile(filePathB, fileContent);
})
.then(() => repo.defaultSignature())
.then((signature) => {
return Stash.save(repo, signature, stashMessage, 0);
})
.then(() => {
return fse.readFile(filePathA, "utf-8");
})
.then((content) => {
assert.equal(oldContentA, content);
return fse.readFile(filePathB, "utf-8");
})
.then((content) => {
assert.equal(oldContentB, content);
return Stash.pop(repo, 0);
})
.then(() => {
return fse.readFile(filePathA, "utf-8");
})
.then((content) => {
assert.equal(fileContent, content);
return fse.readFile(filePathB, "utf-8");
})
.then((content) => {
assert.equal(fileContent, content);
});
});
it("can save a stash, change files, and fail to pop stash", function() {
const fileName = "README.md";
const fileContent = "Cha-cha-cha-chaaaaaangessssss";
const fileContent2 = "Somewhere over the repo, changes were made.";
const repo = this.repository;
const filePath = path.join(repo.workdir(), fileName);
let oldContent;
const stashMessage = "stash test";
return fse.readFile(filePath)
.then((content) => {
oldContent = content;
return fse.writeFile(filePath, fileContent);
})
.then(() => repo.defaultSignature())
.then((signature) => {
return Stash.save(repo, signature, stashMessage, 0);
})
.then(() => {
return fse.writeFile(filePath, fileContent2);
})
.then(() => {
return Stash.pop(repo, 0);
})
.catch((reason) => {
if (reason.message !== "1 conflict prevents checkout") {
throw reason;
} else {
return Promise.resolve();
}
});
});
it("can save, apply, then drop the stash", function() {
const fileName = "README.md";
const fileContent = "Cha-cha-cha-chaaaaaangessssss";
const repo = this.repository;
const filePath = path.join(repo.workdir(), fileName);
let oldContent;
const stashMessage = "stash test";
return fse.readFile(filePath)
.then((content) => {
oldContent = content;
return fse.writeFile(filePath, fileContent);
})
.then(() => repo.defaultSignature())
.then((signature) => {
return Stash.save(repo, signature, stashMessage, 0);
})
.then(() => {
return Stash.apply(repo, 0);
})
.then(() => {
return Stash.drop(repo, 0);
}, () => {
throw new Error("Unable to drop stash after apply.");
})
.then(() => {
return Stash.drop(repo, 0);
})
.catch((reason) => {
if (reason.message !== "reference 'refs/stash' not found") {
throw reason;
}
});
});
it("can save multiple stashes and pop an arbitrary stash", function() {
const fileName = "README.md";
const fileContentA = "Hi. It's me. I'm the dog. My name is the dog.";
const fileContentB = "Everyone likes me. I'm cute.";
const fileContentC =
"I think I will bark at nothing now. Ba. Ba. Baba Baba.";
const repo = this.repository;
const filePath = path.join(repo.workdir(), fileName);
let oldContent;
const stashMessageA = "stash test A";
const stashMessageB = "stash test B";
const stashMessageC = "stash test C";
const writeAndStash = (path, content, message) => {
return fse.writeFile(path, content)
.then(() => repo.defaultSignature())
.then((signature) => {
return Stash.save(repo, signature, message, 0);
});
};
return fse.readFile(filePath, "utf-8")
.then((content) => {
oldContent = content;
return writeAndStash(filePath, fileContentA, stashMessageA);
})
.then(() => {
return writeAndStash(filePath, fileContentB, stashMessageB);
})
.then(() => {
return writeAndStash(filePath, fileContentC, stashMessageC);
})
.then(() => {
return fse.readFile(filePath, "utf-8");
})
.then((content) => {
assert.equal(oldContent, content);
return Stash.pop(repo, 1);
})
.then(() => {
return fse.readFile(filePath, "utf-8");
})
.then((content) => {
assert.equal(fileContentB, content);
});
});
});
Morty Proxy This is a proxified and sanitized view of the page, visit original site.