-
Notifications
You must be signed in to change notification settings - Fork 925
Expand file tree
/
Copy pathSmartSubtransportFixture.cs
More file actions
424 lines (345 loc) · 16.5 KB
/
SmartSubtransportFixture.cs
File metadata and controls
424 lines (345 loc) · 16.5 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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Security;
using LibGit2Sharp.Tests.TestHelpers;
using Xunit;
namespace LibGit2Sharp.Tests
{
public class SmartSubtransportFixture : BaseFixture
{
// Warning: this certification validation callback will accept *all*
// SSL certificates without validation. This is *only* for testing.
// Do *NOT* enable this in production.
private readonly RemoteCertificateValidationCallback certificateValidationCallback =
(sender, certificate, chain, errors) => { return true; };
[Theory]
[InlineData("http", "http://github.com/libgit2/TestGitRepository")]
[InlineData("https", "https://github.com/libgit2/TestGitRepository")]
public void CustomSmartSubtransportTest(string scheme, string url)
{
string remoteName = "testRemote";
var scd = BuildSelfCleaningDirectory();
var repoPath = Repository.Init(scd.RootedDirectoryPath);
SmartSubtransportRegistration<MockSmartSubtransport> registration = null;
try
{
// Disable server certificate validation for testing.
// Do *NOT* enable this in production.
ServicePointManager.ServerCertificateValidationCallback = certificateValidationCallback;
registration = GlobalSettings.RegisterSmartSubtransport<MockSmartSubtransport>(scheme);
Assert.NotNull(registration);
using (var repo = new Repository(repoPath))
{
repo.Network.Remotes.Add(remoteName, url);
// Set up structures for the expected results
// and verifying the RemoteUpdateTips callback.
TestRemoteInfo expectedResults = TestRemoteInfo.TestRemoteInstance;
ExpectedFetchState expectedFetchState = new ExpectedFetchState(remoteName);
// Add expected branch objects
foreach (KeyValuePair<string, ObjectId> kvp in expectedResults.BranchTips)
{
expectedFetchState.AddExpectedBranch(kvp.Key, ObjectId.Zero, kvp.Value);
}
// Add the expected tags
string[] expectedTagNames = { "blob", "commit_tree", "annotated_tag" };
foreach (string tagName in expectedTagNames)
{
TestRemoteInfo.ExpectedTagInfo expectedTagInfo = expectedResults.Tags[tagName];
expectedFetchState.AddExpectedTag(tagName, ObjectId.Zero, expectedTagInfo);
}
// Perform the actual fetch
Commands.Fetch(repo, remoteName, Array.Empty<string>(),
new FetchOptions { OnUpdateTips = expectedFetchState.RemoteUpdateTipsHandler, TagFetchMode = TagFetchMode.Auto },
null);
// Verify the expected
expectedFetchState.CheckUpdatedReferences(repo);
}
}
finally
{
GlobalSettings.UnregisterSmartSubtransport(registration);
ServicePointManager.ServerCertificateValidationCallback -= certificateValidationCallback;
}
}
[Fact]
public void ExceptionPropogationTest()
{
var scd = BuildSelfCleaningDirectory();
var url = "https://github.com/libgit2/TestGitRepository";
SmartSubtransportRegistration<FailingSmartSubtransport> registration = null;
try
{
registration = GlobalSettings.RegisterSmartSubtransport<FailingSmartSubtransport>("https");
Assert.NotNull(registration);
var thrownException = Assert.Throws<LibGit2SharpException>(() => Repository.Clone(url, scd.RootedDirectoryPath));
Assert.True(thrownException.Message.Contains("This is a Read Exception"), "Exception message did not contain expected reference.");
}
finally
{
GlobalSettings.UnregisterSmartSubtransport(registration);
}
}
//[Theory]
//[InlineData("https", "https://bitbucket.org/libgit2/testgitrepository.git", "libgit3", "libgit3")]
//public void CanUseCredentials(string scheme, string url, string user, string pass)
//{
// string remoteName = "testRemote";
// var scd = BuildSelfCleaningDirectory();
// Repository.Init(scd.RootedDirectoryPath);
// SmartSubtransportRegistration<MockSmartSubtransport> registration = null;
// try
// {
// // Disable server certificate validation for testing.
// // Do *NOT* enable this in production.
// ServicePointManager.ServerCertificateValidationCallback = certificateValidationCallback;
// registration = GlobalSettings.RegisterSmartSubtransport<MockSmartSubtransport>(scheme);
// Assert.NotNull(registration);
// using (var repo = new Repository(scd.DirectoryPath))
// {
// repo.Network.Remotes.Add(remoteName, url);
// // Set up structures for the expected results
// // and verifying the RemoteUpdateTips callback.
// TestRemoteInfo expectedResults = TestRemoteInfo.TestRemoteInstance;
// ExpectedFetchState expectedFetchState = new ExpectedFetchState(remoteName);
// // Add expected branch objects
// foreach (KeyValuePair<string, ObjectId> kvp in expectedResults.BranchTips)
// {
// expectedFetchState.AddExpectedBranch(kvp.Key, ObjectId.Zero, kvp.Value);
// }
// // Perform the actual fetch
// Commands.Fetch(repo, remoteName, new string[0], new FetchOptions {
// OnUpdateTips = expectedFetchState.RemoteUpdateTipsHandler, TagFetchMode = TagFetchMode.Auto,
// CredentialsProvider = (_user, _valid, _hostname) => new UsernamePasswordCredentials() { Username = user, Password = pass },
// }, null);
// // Verify the expected
// expectedFetchState.CheckUpdatedReferences(repo);
// }
// }
// finally
// {
// GlobalSettings.UnregisterSmartSubtransport(registration);
// ServicePointManager.ServerCertificateValidationCallback -= certificateValidationCallback;
// }
//}
[Fact]
public void CannotReregisterScheme()
{
SmartSubtransportRegistration<MockSmartSubtransport> httpRegistration =
GlobalSettings.RegisterSmartSubtransport<MockSmartSubtransport>("http");
try
{
Assert.Throws<EntryExistsException>(() =>
GlobalSettings.RegisterSmartSubtransport<MockSmartSubtransport>("http"));
}
finally
{
GlobalSettings.UnregisterSmartSubtransport(httpRegistration);
}
}
[Fact]
public void CannotUnregisterTwice()
{
SmartSubtransportRegistration<MockSmartSubtransport> httpRegistration =
GlobalSettings.RegisterSmartSubtransport<MockSmartSubtransport>("http");
GlobalSettings.UnregisterSmartSubtransport(httpRegistration);
Assert.Throws<NotFoundException>(() =>
GlobalSettings.UnregisterSmartSubtransport(httpRegistration));
}
private class FailingSmartSubtransport : RpcSmartSubtransport
{
protected override SmartSubtransportStream Action(string url, GitSmartSubtransportAction action)
{
return new FailingSmartSubtransportStream(this);
}
private class FailingSmartSubtransportStream : SmartSubtransportStream
{
public FailingSmartSubtransportStream(FailingSmartSubtransport parent)
: base(parent)
{
}
public override int Read(Stream dataStream, long length, out long bytesRead)
{
throw new Exception("This is a Read Exception");
}
public override int Write(Stream dataStream, long length)
{
throw new NotImplementedException();
}
}
}
private class MockSmartSubtransport : RpcSmartSubtransport
{
protected override SmartSubtransportStream Action(string url, GitSmartSubtransportAction action)
{
string endpointUrl, contentType = null;
bool isPost = false;
switch (action)
{
case GitSmartSubtransportAction.UploadPackList:
endpointUrl = string.Concat(url, "/info/refs?service=git-upload-pack");
break;
case GitSmartSubtransportAction.UploadPack:
endpointUrl = string.Concat(url, "/git-upload-pack");
contentType = "application/x-git-upload-pack-request";
isPost = true;
break;
case GitSmartSubtransportAction.ReceivePackList:
endpointUrl = string.Concat(url, "/info/refs?service=git-receive-pack");
break;
case GitSmartSubtransportAction.ReceivePack:
endpointUrl = string.Concat(url, "/git-receive-pack");
contentType = "application/x-git-receive-pack-request";
isPost = true;
break;
default:
throw new InvalidOperationException();
}
return new MockSmartSubtransportStream(this, endpointUrl, isPost, contentType);
}
private class MockSmartSubtransportStream : SmartSubtransportStream
{
private static int MAX_REDIRECTS = 5;
private MemoryStream postBuffer = new MemoryStream();
private Stream responseStream;
public MockSmartSubtransportStream(MockSmartSubtransport parent, string endpointUrl, bool isPost, string contentType)
: base(parent)
{
EndpointUrl = endpointUrl;
IsPost = isPost;
ContentType = contentType;
}
private string EndpointUrl
{
get;
set;
}
private bool IsPost
{
get;
set;
}
private string ContentType
{
get;
set;
}
public override int Write(Stream dataStream, long length)
{
byte[] buffer = new byte[4096];
long writeTotal = 0;
while (length > 0)
{
int readLen = dataStream.Read(buffer, 0, (int)Math.Min(buffer.Length, length));
if (readLen == 0)
{
break;
}
postBuffer.Write(buffer, 0, readLen);
length -= readLen;
writeTotal += readLen;
}
if (writeTotal < length)
{
throw new EndOfStreamException("Could not write buffer (short read)");
}
return 0;
}
private static HttpWebRequest CreateWebRequest(string endpointUrl, bool isPost, string contentType)
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
HttpWebRequest webRequest = (HttpWebRequest)HttpWebRequest.Create(endpointUrl);
webRequest.UserAgent = "git/1.0 (libgit2 custom transport)";
webRequest.ServicePoint.Expect100Continue = false;
webRequest.AllowAutoRedirect = false;
if (isPost)
{
webRequest.Method = "POST";
webRequest.ContentType = contentType;
}
return webRequest;
}
private HttpWebResponse GetResponseWithRedirects()
{
HttpWebRequest request = CreateWebRequest(EndpointUrl, IsPost, ContentType);
HttpWebResponse response = null;
for (int i = 0; i < MAX_REDIRECTS; i++)
{
if (IsPost && postBuffer.Length > 0)
{
postBuffer.Seek(0, SeekOrigin.Begin);
using (Stream requestStream = request.GetRequestStream())
{
postBuffer.WriteTo(requestStream);
}
}
try
{
response = (HttpWebResponse)request.GetResponse();
}
catch (WebException ex)
{
response = ex.Response as HttpWebResponse;
if (response.StatusCode == HttpStatusCode.Unauthorized)
{
Credentials cred;
int ret = SmartTransport.AcquireCredentials(out cred, null, typeof(UsernamePasswordCredentials));
if (ret != 0)
{
throw new InvalidOperationException("dunno");
}
request = CreateWebRequest(EndpointUrl, IsPost, ContentType);
UsernamePasswordCredentials userpass = (UsernamePasswordCredentials)cred;
request.Credentials = new NetworkCredential(userpass.Username, userpass.Password);
continue;
}
// rethrow if it's not 401
throw;
}
if (response.StatusCode == HttpStatusCode.Moved || response.StatusCode == HttpStatusCode.Redirect)
{
request = CreateWebRequest(response.Headers["Location"], IsPost, ContentType);
continue;
}
break;
}
if (response == null)
{
throw new Exception("Too many redirects");
}
return response;
}
public override int Read(Stream dataStream, long length, out long readTotal)
{
byte[] buffer = new byte[4096];
readTotal = 0;
if (responseStream == null)
{
HttpWebResponse response = GetResponseWithRedirects();
responseStream = response.GetResponseStream();
}
while (length > 0)
{
int readLen = responseStream.Read(buffer, 0, (int)Math.Min(buffer.Length, length));
if (readLen == 0)
break;
dataStream.Write(buffer, 0, readLen);
readTotal += readLen;
length -= readLen;
}
return 0;
}
protected override void Free()
{
if (responseStream != null)
{
responseStream.Dispose();
responseStream = null;
}
base.Free();
}
}
}
}
}