-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppTests.cs
144 lines (118 loc) · 3.83 KB
/
AppTests.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
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
using System.Text;
using NSubstitute;
using Octokit;
using Spectre.Console;
using Xunit;
using Repository = GitHubLabelSync.Tests.Stubs.Repository;
namespace GitHubLabelSync.Tests;
public class AppTests
{
private static readonly Action<string> NoOp = _ => { };
[Fact]
public async Task SyncsAllReposFound()
{
//arrange
var sync = Substitute.For<ISynchronizer>();
sync.ValidateAccess().Returns(ValidationResult.Success());
sync.ValidateUser(Arg.Any<Account>()).Returns(ValidationResult.Success());
sync.GetRepositories(Arg.Any<Account>()).Returns(new[] { new Repository("test1"), new Repository("test2"), new Repository("test3") });
var app = new App(sync, NoOp, NoOp);
var settings = new Settings { Name = "ecoAPM" };
//act
await app.Run(settings);
//assert
await sync.Received().GetAccount("ecoAPM");
await sync.Received(3).SyncRepo(Arg.Any<Repository>(), settings, Arg.Any<IReadOnlyList<Label>>());
}
[Fact]
public async Task SyncsFilteredRepos()
{
//arrange
var sync = Substitute.For<ISynchronizer>();
sync.ValidateAccess().Returns(ValidationResult.Success());
sync.ValidateUser(Arg.Any<Account>()).Returns(ValidationResult.Success());
sync.GetRepositories(Arg.Any<Account>()).Returns(new[]
{
new Repository("other1"),
new Repository("test-abc1"),
new Repository("test-abc2"),
new Repository("def"),
new Repository("other22"),
});
var app = new App(sync, NoOp, NoOp);
var settings = new Settings
{
Name = "ecoAPM",
Filters = new[] { "abc", "def" }
};
//act
await app.Run(settings);
//assert
await sync.Received().GetAccount("ecoAPM");
await sync.Received(3).SyncRepo(Arg.Any<Repository>(), settings, Arg.Any<IReadOnlyList<Label>>());
}
[Fact]
public async Task SkipsArchivedRepos()
{
//arrange
var sync = Substitute.For<ISynchronizer>();
sync.ValidateAccess().Returns(ValidationResult.Success());
sync.ValidateUser(Arg.Any<Account>()).Returns(ValidationResult.Success());
sync.GetRepositories(Arg.Any<Account>()).Returns(new[]
{
new Repository("test1"),
new Repository("test2", true),
new Repository("test3")
});
var app = new App(sync, NoOp, NoOp);
var settings = new Settings { Name = "ecoAPM" };
//act
await app.Run(settings);
//assert
await sync.Received(2).SyncRepo(Arg.Any<Repository>(), settings, Arg.Any<IReadOnlyList<Label>>());
}
[Fact]
public async Task ShowsMessageWhenNoRepos()
{
//arrange
var sync = Substitute.For<ISynchronizer>();
sync.ValidateAccess().Returns(ValidationResult.Success());
sync.ValidateUser(Arg.Any<Account>()).Returns(ValidationResult.Success());
sync.GetRepositories(Arg.Any<Account>()).Returns(Array.Empty<Repository>());
var output = new StringBuilder();
var app = new App(sync, NoOp, s => output.AppendLine(s));
var settings = new Settings { Name = "ecoAPM" };
//act
await app.Run(settings);
//assert
Assert.Contains("no repositories to sync", output.ToString());
}
[Fact]
public async Task ThrowsOnAccessValidationFailure()
{
//arrange
var sync = Substitute.For<ISynchronizer>();
sync.ValidateAccess().Returns(ValidationResult.Error(":("));
sync.ValidateUser(Arg.Any<Account>()).Returns(ValidationResult.Success());
var app = new App(sync, NoOp, NoOp);
var settings = new Settings { Name = "ecoAPM" };
//act
async Task task() => await app.Run(settings);
//assert
await Assert.ThrowsAnyAsync<Exception>(task);
}
[Fact]
public async Task ThrowsOnUserValidationFailure()
{
//arrange
var sync = Substitute.For<ISynchronizer>();
sync.ValidateAccess().Returns(ValidationResult.Success());
sync.ValidateUser(Arg.Any<Account>()).Returns(ValidationResult.Error(":("));
var app = new App(sync, NoOp, NoOp);
var settings = new Settings { Name = "ecoAPM" };
//act
async Task task() => await app.Run(settings);
//assert
await Assert.ThrowsAnyAsync<Exception>(task);
}
}