forked from dotnet/sourcelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTranslateRepositoryUrlsTests.cs
64 lines (58 loc) · 4.04 KB
/
TranslateRepositoryUrlsTests.cs
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
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Linq;
using TestUtilities;
using Xunit;
using static TestUtilities.KeyValuePairUtils;
namespace Microsoft.SourceLink.AzureRepos.Git.UnitTests
{
public class TranslateRepositoryUrlsTests
{
[Fact]
public void Translate()
{
var engine = new MockEngine();
var task = new TranslateRepositoryUrls()
{
BuildEngine = engine,
RepositoryUrl = "ssh://[email protected]/project/team/_ssh/repo",
IsSingleProvider = true,
SourceRoots = new[]
{
new MockItem("/1/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/_ssh/repo")), // ok
new MockItem("/2/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/_ssh/repo")), // ok
new MockItem("/3/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/v3/account/project/team/repo")), // ok
new MockItem("/4/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]/_ssh/repo")), // ok
new MockItem("/5/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/_ssh/repo")), // ok
new MockItem("/6/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]/v3/account/project/team/repo")), // ok
new MockItem("/7/", KVP("SourceControl", "tfvc"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/_ssh/repo")), // different source control
new MockItem("/8/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/_ssh/repo")), // no "vs-ssh." prefix
new MockItem("/9/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/_ssh/repo")), // known host, but not visualstudio.com
new MockItem("/A/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/_ssh/repo")), // unknown host
new MockItem("/B/", KVP("SourceControl", "git"), KVP("ScmRepositoryUrl", "ssh://[email protected]:22/project/team/ZZZ/repo")), // bad format
},
Hosts = new[]
{
new MockItem("contoso.com")
}
};
bool result = task.Execute();
AssertEx.AssertEqualToleratingWhitespaceDifferences("", engine.Log);
AssertEx.AreEqual("https://account.visualstudio.com/project/team/_git/repo", task.TranslatedRepositoryUrl);
AssertEx.Equal(new[]
{
"https://account.visualstudio.com/project/team/_git/repo",
"https://test.visualstudio.com/project/_git/repo",
"https://account.visualstudio.com/project/team/_git/repo",
"https://account.visualstudio.com/_git/repo",
"https://contoso.com/account/project/team/_git/repo",
"https://contoso.com/account/project/team/_git/repo",
"ssh://[email protected]:22/project/team/_ssh/repo",
"ssh://[email protected]:22/project/team/_ssh/repo",
"ssh://[email protected]:22/project/team/_ssh/repo",
"ssh://[email protected]:22/project/team/_ssh/repo",
"ssh://[email protected]:22/project/team/ZZZ/repo"
}, task.TranslatedSourceRoots.Select(r => r.GetMetadata("ScmRepositoryUrl")));
Assert.True(result);
}
}
}