forked from dillenmeister/Trello.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoardTests.cs
401 lines (315 loc) · 13 KB
/
BoardTests.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
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
using System;
using System.Collections.Generic;
using System.Linq;
using ExpectedObjects;
using NUnit.Framework;
namespace TrelloNet.Tests
{
[TestFixture]
public class BoardTests : TrelloTestBase
{
private readonly IBoardId _welcomeBoardWritable = new BoardId("4f41e4803374646b5c74bd69");
[Test]
public void WithId_TheWelcomeBoard_ReturnsExpectedWelcomeBoard()
{
var expectedBoard = CreateExpectedWelcomeBoard();
var actualBoard = _trelloReadOnly.Boards.WithId(Constants.WelcomeBoardId);
expectedBoard.ShouldMatch(actualBoard);
Assert.That(actualBoard.LabelNames, Is.EquivalentTo(CreateExpectedWelcomeBoardLabels()));
}
[Test]
public void WithId_AClosedBoard_ClosedIsTrue()
{
var board = _trelloReadOnly.Boards.WithId(Constants.AClosedBoardId);
Assert.That(board.Closed, Is.True);
}
[Test]
public void WithId_AnUnpinnedBoard_PinnedIsFalse()
{
var board = _trelloReadOnly.Boards.WithId(Constants.AnUnpinnedBoard);
Assert.That(board.Pinned, Is.False);
}
// Ok, don't know if "owners" is replaced by "admins" in Prefs.Invitations. Let's keep both in the enum.
[Test]
public void WithId_ABoardWithInvitationPermissionSetToAdmins_InvitationPermissionIsAdmins()
{
var board = _trelloReadOnly.Boards.WithId(Constants.ABoardWithInvitationPermissionSetToOwnerId);
Assert.That(board.Prefs.Invitations, Is.EqualTo(InvitationPermission.Admins));
}
[Test]
public void WithId_Null_Throws()
{
Assert.That(() => _trelloReadOnly.Boards.WithId(null),
Throws.TypeOf<ArgumentNullException>().With.Matches<ArgumentNullException>(e => e.ParamName == "id"));
}
[Test]
public void ForMember_Me_ReturnsTheWelcomeBoard()
{
var boards = _trelloReadOnly.Boards.ForMember(new Me());
Assert.That(boards, Has.Some.Matches<Board>(b => b.Name == "Welcome Board"));
}
[Test]
public void ForMe_Always_ReturnsTheWelcomeBoard()
{
var boards = _trelloReadOnly.Boards.ForMe();
Assert.That(boards, Has.Some.Matches<Board>(b => b.Name == "Welcome Board"));
}
[Test]
public void ForMember_Me_AllFieldsOfBoardAreMapped()
{
var expectedBoard = CreateExpectedWelcomeBoard();
var actualBoard = _trelloReadOnly.Boards.ForMember(new Me()).Single(b => b.Id == Constants.WelcomeBoardId);
expectedBoard.ShouldMatch(actualBoard);
Assert.That(actualBoard.LabelNames, Is.EquivalentTo(CreateExpectedWelcomeBoardLabels()));
}
[Test]
public void ForMember_MeAndClosed_ReturnsTheClosedBoard()
{
var boards = _trelloReadOnly.Boards.ForMember(new Me(), BoardFilter.Closed);
Assert.That(boards, Has.Count.EqualTo(2));
Assert.That(boards, Has.Some.Matches<Board>(b => b.Name == "A closed board"));
}
[Test]
public void ForMember_Null_Throws()
{
Assert.That(() => _trelloReadOnly.Boards.ForMember(null),
Throws.TypeOf<ArgumentNullException>().With.Matches<ArgumentNullException>(e => e.ParamName == "member"));
}
[Test]
public void ForCard_TheWelcomeCard_ReturnsTheWelcomeBoard()
{
var expectedBoard = CreateExpectedWelcomeBoard();
var board = _trelloReadOnly.Boards.ForCard(new CardId(Constants.WelcomeCardOfTheWelcomeBoardId));
expectedBoard.ShouldMatch(board);
Assert.That(board.LabelNames, Is.EquivalentTo(CreateExpectedWelcomeBoardLabels()));
}
[Test]
public void ForCard_Null_Throws()
{
Assert.That(() => _trelloReadOnly.Boards.ForCard(null),
Throws.TypeOf<ArgumentNullException>().With.Matches<ArgumentNullException>(e => e.ParamName == "card"));
}
[Test]
public void ForChecklist_TheChecklistInTheLastCardOfTheBasicsList_ReturnsTheWelcomeBoard()
{
var expectedBoard = CreateExpectedWelcomeBoard();
var board = _trelloReadOnly.Boards.ForChecklist(new ChecklistId("4f2b8b4d4f2cb9d16d3684c7"));
expectedBoard.ShouldMatch(board);
Assert.That(board.LabelNames, Is.EquivalentTo(CreateExpectedWelcomeBoardLabels()));
}
[Test]
public void ForChecklist_Null_Throws()
{
Assert.That(() => _trelloReadOnly.Boards.ForChecklist(null),
Throws.TypeOf<ArgumentNullException>().With.Matches<ArgumentNullException>(e => e.ParamName == "checklist"));
}
[Test]
public void ForList_TheWelcomeBoardBasicsList_ReturnsTheWelcomeBoard()
{
var expectedBoard = CreateExpectedWelcomeBoard();
var board = _trelloReadOnly.Boards.ForList(new ListId(Constants.WelcomeBoardBasicsListId));
expectedBoard.ShouldMatch(board);
Assert.That(board.LabelNames, Is.EquivalentTo(CreateExpectedWelcomeBoardLabels()));
}
[Test]
public void ForList_Null_Throws()
{
Assert.That(() => _trelloReadOnly.Boards.ForList(null),
Throws.TypeOf<ArgumentNullException>().With.Matches<ArgumentNullException>(e => e.ParamName == "list"));
}
[Test]
public void ForOrganization_TestOrganization_ReturnsTheWelcomeBoard()
{
var expectedBoard = CreateExpectedWelcomeBoard();
var boards = _trelloReadOnly.Boards.ForOrganization(new OrganizationId(Constants.TestOrganizationId));
Assert.That(boards.Count(), Is.EqualTo(1));
expectedBoard.ShouldMatch(boards.First());
Assert.That(boards.First().LabelNames, Is.EquivalentTo(CreateExpectedWelcomeBoardLabels()));
}
[Test]
public void ForOrganization_TestOrganizationAndClosed_ReturnsNoBoards()
{
var boards = _trelloReadOnly.Boards.ForOrganization(new OrganizationId(Constants.TestOrganizationId), BoardFilter.Closed);
Assert.That(boards.Count(), Is.EqualTo(0));
}
[Test]
public void ForOrganization_Null_Throws()
{
Assert.That(() => _trelloReadOnly.Boards.ForOrganization(null),
Throws.TypeOf<ArgumentNullException>().With.Matches<ArgumentNullException>(e => e.ParamName == "organization"));
}
[Test]
public void Scenario_AddAndClose()
{
var newBoard = _trelloReadWrite.Boards.Add(new NewBoard("A new board") { Desc = "the description" });
Assert.That(newBoard, Is.Not.Null);
Assert.That(newBoard.Name, Is.EqualTo("A new board"));
Assert.That(newBoard.Desc, Is.EqualTo("the description"));
_trelloReadWrite.Boards.Close(newBoard);
var closedBoard = _trelloReadWrite.Boards.WithId(newBoard.Id);
Assert.That(closedBoard.Closed, Is.True);
}
[Test]
public void Scenario_CloseAndReOpen()
{
_trelloReadWrite.Boards.Close(_welcomeBoardWritable);
var closedBoard = _trelloReadWrite.Boards.WithId(_welcomeBoardWritable.GetBoardId());
Assert.That(closedBoard.Closed, Is.True);
_trelloReadWrite.Boards.ReOpen(closedBoard);
var reopenedBoard = _trelloReadWrite.Boards.WithId(_welcomeBoardWritable.GetBoardId());
Assert.That(reopenedBoard.Closed, Is.False);
}
[Test]
public void Scenario_ChangeName()
{
_trelloReadWrite.Boards.ChangeName(_welcomeBoardWritable, "A new name");
var boardwithChangedName = _trelloReadWrite.Boards.WithId(_welcomeBoardWritable.GetBoardId());
Assert.That(boardwithChangedName.Name, Is.EqualTo("A new name"));
_trelloReadWrite.Boards.ChangeName(_welcomeBoardWritable, "Welcome Board");
}
[Test]
public void Scenario_ChangeDescription()
{
_trelloReadWrite.Boards.ChangeDescription(_welcomeBoardWritable, "A new description");
var boardwithChangedDescription = _trelloReadWrite.Boards.WithId(_welcomeBoardWritable.GetBoardId());
Assert.That(boardwithChangedDescription.Desc, Is.EqualTo("A new description"));
_trelloReadWrite.Boards.ChangeDescription(_welcomeBoardWritable, "");
}
[Test]
public void Scenario_UpdateNameDescriptionAndClosed()
{
var board = _trelloReadWrite.Boards.WithId("4f41e4803374646b5c74bd69");
board.Name = "Updated name";
board.Desc = "Updated description";
board.Closed = true;
_trelloReadWrite.Boards.Update(board);
var boardAfterUpdate = _trelloReadWrite.Boards.WithId(board.Id);
board.Name = "Welcome Board";
board.Desc = "";
board.Closed = false;
_trelloReadWrite.Boards.Update(board);
Assert.That(boardAfterUpdate.Name, Is.EqualTo("Updated name"));
Assert.That(boardAfterUpdate.Desc, Is.EqualTo("Updated description"));
Assert.That(boardAfterUpdate.Closed, Is.EqualTo(true));
}
[Test]
public void Scenario_ChangePermissionLevel()
{
_trelloReadWrite.Boards.ChangePermissionLevel(_welcomeBoardWritable, PermissionLevel.Public);
var boardAfterUpdate = _trelloReadWrite.Boards.WithId(_welcomeBoardWritable.GetBoardId());
_trelloReadWrite.Boards.ChangePermissionLevel(_welcomeBoardWritable, PermissionLevel.Private);
Assert.That(boardAfterUpdate.Prefs.PermissionLevel, Is.EqualTo(PermissionLevel.Public));
}
[Test]
public void Scenario_AddAndRemoveMember()
{
var member = new MemberId(Constants.MeId);
_trelloReadWrite.Boards.AddMember(_welcomeBoardWritable, member);
var membersAfterAddMember = _trelloReadWrite.Members.ForBoard(_welcomeBoardWritable);
_trelloReadWrite.Boards.RemoveMember(_welcomeBoardWritable, member);
var membersAfterRemoveMember = _trelloReadWrite.Members.ForBoard(_welcomeBoardWritable);
Assert.That(membersAfterAddMember.Any(x => x.Id.Equals(Constants.MeId)));
Assert.That(!membersAfterRemoveMember.Any(x => x.Id.Equals(Constants.MeId)));
}
[Test]
public void Scenario_ChangeLabelName()
{
var board = _welcomeBoardWritable;
_trelloReadWrite.Boards.ChangeLabelName(board, Color.Red, "Bug");
var boardAfterChange = _trelloReadWrite.Boards.WithId(board.GetBoardId());
_trelloReadWrite.Boards.ChangeLabelName(board, Color.Red, null);
Assert.That(boardAfterChange.LabelNames[Color.Red], Is.EqualTo("Bug"));
}
[Test]
public void ToString_EqualsName()
{
var board = new Board { Name = "a name" };
Assert.That(board.ToString(), Is.EqualTo("a name"));
}
[TestCase("")]
[TestCase(null)]
public void Add_NameIsInvalid_Throws(string boardName)
{
Assert.That(() => _trelloReadWrite.Boards.Add(new NewBoard(boardName)),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "name"));
}
[Test]
public void Add_DescriptionIsTooLong_Throws()
{
Assert.That(() => _trelloReadWrite.Boards.Add(new NewBoard("dummy") { Desc = new string('x', 16385) }),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "desc"));
}
[TestCase("")]
[TestCase(null)]
public void AddOverload_NameIsInvalid_Throws(string boardName)
{
Assert.That(() => _trelloReadWrite.Boards.Add(boardName),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "name"));
}
[Test]
public void Add_NameIsTooLong_Throws()
{
Assert.That(() => _trelloReadWrite.Boards.Add(new NewBoard(new string('x', 16385))),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "name"));
}
[TestCase("")]
[TestCase(null)]
public void ChangeName_NameIsInvalid_Throws(string boardName)
{
Assert.That(() => _trelloReadWrite.Boards.ChangeName(new BoardId("dummy"), boardName),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "name"));
}
[Test]
public void ChangeName_NameIsTooLong_Throws()
{
Assert.That(() => _trelloReadWrite.Boards.ChangeName(new BoardId("dummy"), new string('x', 16385)),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "name"));
}
[Test]
public void ChangeDescription_DescriptionIsTooLong_Throws()
{
Assert.That(() => _trelloReadWrite.Boards.ChangeDescription(new BoardId("dummy"), new string('x', 16385)),
Throws.InstanceOf<ArgumentException>().With.Matches<ArgumentException>(e => e.ParamName == "desc"));
}
[Test]
public void Bug_Issue38_CantReadPublicBoardWithoutAuthentication()
{
_trelloReadOnly.Deauthorize();
var board = _trelloReadOnly.Boards.WithId("d6EXlALH");
Assert.That(board.Id, Is.EqualTo("5249174dc46a77795e002728"));
Assert.That(board.Name, Is.EqualTo("Public Board"));
}
private static ExpectedObject CreateExpectedWelcomeBoard()
{
return new
{
Closed = false,
Name = "Welcome Board",
Desc = "A test description",
IdOrganization = Constants.TestOrganizationId,
Pinned = true,
Url = "https://trello.com/b/J9JUdoYV/welcome-board",
Id = Constants.WelcomeBoardId,
Prefs = new BoardPreferences
{
Comments = CommentPermission.Members,
Invitations = InvitationPermission.Members,
PermissionLevel = PermissionLevel.Private,
Voting = VotingPermission.Members
}
}.ToExpectedObject();
}
private static Dictionary<Color, string> CreateExpectedWelcomeBoardLabels()
{
return new Dictionary<Color, string>
{
{ Color.Yellow, "" },
{ Color.Red, "" },
{ Color.Purple, "" },
{ Color.Orange, "" },
{ Color.Green, "label name" },
{ Color.Blue, "" },
};
}
}
}