-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGildedRoseShould.cs
163 lines (122 loc) · 4.29 KB
/
GildedRoseShould.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
using Xunit;
using FluentAssertions;
using System.Collections.Generic;
using System.Linq;
namespace csharp
{
public class GildedRoseShould
{
[Fact]
public void DecrementQuality_WhenQualityGreaterThanZero()
{
var item = SetupItemHelper("+5 Dexterity Vest", 10, 20);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(19);
}
[Fact]
public void NotDecrementQuality_WhenItemNameIs_AgedBrie()
{
var item = SetupItemHelper("Aged Brie", 2, 1);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().NotBe(0);
}
[Fact]
public void NotDecrementQuality_WhenItemNameIs_Concert()
{
var item = SetupItemHelper("Backstage passes to a TAFKAL80ETC concert", 10, 20);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().NotBe(0);
}
[Fact]
public void NotDecrementQuality_WhenItemNameIs_Sulfuras()
{
var item = SetupItemHelper("Sulfuras, Hand of Ragnaros", 0, 80);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().NotBe(19);
}
[Fact]
public void DecrementQuality_TwiceAsFastWhenSellByDateHasPassed()
{
var item = SetupItemHelper("Elixir of the Mongoose", 0, 7);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(5);
}
[Fact]
public void NotDecrementQuality_BeyondZero()
{
var item = SetupItemHelper("Elixir of the Mongoose", 5, 0);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(0);
}
[Fact]
public void IncrementQuality_OfAgedBrie_AsItAges()
{
var item = SetupItemHelper("Aged Brie", 5, 10);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(11);
}
[Fact]
public void Decrement_SellIn_Daily()
{
var item = SetupItemHelper("+5 Dexterity Vest", 10, 20);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().SellIn.Should().Be(9);
}
[Fact]
public void NotDecrementSellIn_ForSulfuras()
{
var item = SetupItemHelper("Sulfuras, Hand of Ragnaros", 10, 80);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().SellIn.Should().Be(10);
}
[Fact]
public void EnsureConcertTicketsQuality_IsZero_AfterConcert()
{
var item = SetupItemHelper("Backstage passes to a TAFKAL80ETC concert", 0, 10);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(0);
}
[Fact]
public void DecrementQualityTwiceAsFast_ForConjuredItems()
{
var item = SetupItemHelper("Conjured Mana Cake", 3, 6);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(4);
}
[Fact]
public void IncrementConcertByTwo_IfLessThan10Days()
{
var item = SetupItemHelper("Backstage passes to a TAFKAL80ETC concert", 10, 26);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(28);
}
private static IList<Item> SetupItemHelper(string name, int days, int quality)
{
IList<Item> items = new List<Item>
{
new Item {Name = name, SellIn = days, Quality = quality},
};
return items;
}
[Fact]
public void ResetConcertTicketsQualityIfAboveMax()
{
var item = SetupItemHelper("Backstage passes to a TAFKAL80ETC concert", 3, 100);
var app = new GildedRose(item);
app.UpdateQuality();
item.First().Quality.Should().Be(50);
}
}
}