mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 15:01:28 +00:00
Complete test cases
This commit is contained in:
parent
5b6d211066
commit
a2798f44de
@ -16,6 +16,11 @@ final class GildedRose
|
||||
$this->items = $items;
|
||||
}
|
||||
|
||||
public function getItems(): array
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
|
||||
public function updateQuality(): void
|
||||
{
|
||||
foreach ($this->items as $item) {
|
||||
|
||||
@ -10,11 +10,145 @@ use PHPUnit\Framework\TestCase;
|
||||
|
||||
class GildedRoseTest extends TestCase
|
||||
{
|
||||
public function testFoo(): void
|
||||
public function testQualityNeverIsNegative(): void
|
||||
{
|
||||
$items = [new Item('foo', 0, 0)];
|
||||
$gildedRose = new GildedRose($items);
|
||||
$gildedRose->updateQuality();
|
||||
$this->assertSame('fixme', $items[0]->name);
|
||||
$items = [new Item("foo", 0, 0)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(0, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testSulfurasCouldNotBeSold(): void
|
||||
{
|
||||
$items = [new Item("Sulfuras, Hand of Ragnaros", 10, 0)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(10, $app->getItems()[0]->sellIn);
|
||||
}
|
||||
|
||||
public function testSulfurasCouldNotDecreaseQuality(): void
|
||||
{
|
||||
$items = [new Item("Sulfuras, Hand of Ragnaros", 10, 10)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(10, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testQualityCouldNotBeMoreThanFifty(): void
|
||||
{
|
||||
$items = [new Item("Aged Brie", 10, 50)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(50, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testItemWithDatePassedQualityDecreaseByTwice(): void
|
||||
{
|
||||
$items = [new Item("foo", -1, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(38, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testAgedBrieIncreaseQualityWhenItGetsOlder(): void
|
||||
{
|
||||
$items = [new Item("Aged Brie", 1, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(41, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testAgedBrieIncreaseByTwoQualityWhenDatePassed(): void
|
||||
{
|
||||
$items = [new Item("Aged Brie", -1, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(42, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testAgedBrieIncreaseByTwoQualityWhenDatePassedAndNotMoreThanFifty() {
|
||||
$items = [new Item("Aged Brie", -1, 50)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(50, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesIncreaseQualityByTwoWhenSelinLessThanTen() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 10, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(42, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesIncreaseQualityByTwoWhenSellinLessThanSix() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 6, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(42, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesIncreaseQualityByThreeWhenSellinLessThanFive() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 5, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(43, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesIncreaseQualityByTwoWhenSellinLessThanSixAndNotMoreThanFifty() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 6, 49)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(50, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesIncreaseQualityByThreeWhenSellinLessThanFiveAndNotMoreThanFifty() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 5, 48)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(50, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesQualityDropsToZeroAfterConcert() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 0, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(0, $app->getItems()[0]->quality);
|
||||
}
|
||||
|
||||
public function testBackstagePassesQualityIncreaseQualityByOneWhenDateIsMoreThanTen() {
|
||||
$items = [new Item("Backstage passes to a TAFKAL80ETC concert", 11, 40)];
|
||||
$app = new GildedRose($items);
|
||||
|
||||
$app->updateQuality();
|
||||
|
||||
$this->assertSame(41, $app->getItems()[0]->quality);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user