mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 11:14:06 +00:00
190 lines
6.4 KiB
PHP
190 lines
6.4 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use App\Order;
|
|
use App\Ticket;
|
|
use App\Concert;
|
|
use Carbon\Carbon;
|
|
use Tests\TestCase;
|
|
use App\Exceptions\NotEnoughTicketsException;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
|
|
class ConcertTest extends TestCase
|
|
{
|
|
use DatabaseMigrations;
|
|
|
|
/** @test */
|
|
function can_get_formatted_date()
|
|
{
|
|
$concert = factory(Concert::class)->make([
|
|
'date' => Carbon::parse('2016-12-01 8:00pm'),
|
|
]);
|
|
|
|
$this->assertEquals('December 1, 2016', $concert->formatted_date);
|
|
}
|
|
|
|
/** @test */
|
|
function can_get_formatted_start_time()
|
|
{
|
|
$concert = factory(Concert::class)->make([
|
|
'date' => Carbon::parse('2016-12-01 17:00:00'),
|
|
]);
|
|
|
|
$this->assertEquals('5:00pm', $concert->formatted_start_time);
|
|
}
|
|
|
|
/** @test */
|
|
function can_get_ticket_price_in_dollars()
|
|
{
|
|
$concert = factory(Concert::class)->make([
|
|
'ticket_price' => 6750,
|
|
]);
|
|
|
|
$this->assertEquals('67.50', $concert->ticket_price_in_dollars);
|
|
}
|
|
|
|
/** @test */
|
|
function concerts_with_a_published_at_date_are_published()
|
|
{
|
|
$publishedConcertA = factory(Concert::class)->create(['published_at' => Carbon::parse('-1 week')]);
|
|
$publishedConcertB = factory(Concert::class)->create(['published_at' => Carbon::parse('-1 week')]);
|
|
$unpublishedConcert = factory(Concert::class)->create(['published_at' => null]);
|
|
|
|
$publishedConcerts = Concert::published()->get();
|
|
|
|
$this->assertTrue($publishedConcerts->contains($publishedConcertA));
|
|
$this->assertTrue($publishedConcerts->contains($publishedConcertB));
|
|
$this->assertFalse($publishedConcerts->contains($unpublishedConcert));
|
|
}
|
|
|
|
/** @test */
|
|
function concerts_can_be_published()
|
|
{
|
|
$concert = factory(Concert::class)->create([
|
|
'published_at' => null,
|
|
'ticket_quantity' => 5,
|
|
]);
|
|
$this->assertFalse($concert->isPublished());
|
|
$this->assertEquals(0, $concert->ticketsRemaining());
|
|
|
|
$concert->publish();
|
|
|
|
$this->assertTrue($concert->isPublished());
|
|
$this->assertEquals(5, $concert->ticketsRemaining());
|
|
}
|
|
|
|
/** @test */
|
|
function tickets_remaining_does_not_include_tickets_associated_with_an_order()
|
|
{
|
|
$concert = factory(Concert::class)->create();
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 3)->create(['order_id' => 1]));
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 2)->create(['order_id' => null]));
|
|
|
|
$this->assertEquals(2, $concert->ticketsRemaining());
|
|
}
|
|
|
|
/** @test */
|
|
function tickets_sold_only_includes_tickets_associated_with_an_order()
|
|
{
|
|
$concert = factory(Concert::class)->create();
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 3)->create(['order_id' => 1]));
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 2)->create(['order_id' => null]));
|
|
|
|
$this->assertEquals(3, $concert->ticketsSold());
|
|
}
|
|
|
|
/** @test */
|
|
function total_tickets_includes_all_tickets()
|
|
{
|
|
$concert = factory(Concert::class)->create();
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 3)->create(['order_id' => 1]));
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 2)->create(['order_id' => null]));
|
|
|
|
$this->assertEquals(5, $concert->totalTickets());
|
|
}
|
|
|
|
/** @test */
|
|
function calculating_the_percentage_of_tickets_sold()
|
|
{
|
|
$concert = factory(Concert::class)->create();
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 2)->create(['order_id' => 1]));
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 5)->create(['order_id' => null]));
|
|
|
|
$this->assertEquals(28.57, $concert->percentSoldOut());
|
|
}
|
|
|
|
/** @test */
|
|
function calculating_the_revenue_in_dollars()
|
|
{
|
|
$concert = factory(Concert::class)->create();
|
|
$orderA = factory(Order::class)->create(['amount' => 3850]);
|
|
$orderB = factory(Order::class)->create(['amount' => 9625]);
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 2)->create(['order_id' => $orderA->id]));
|
|
$concert->tickets()->saveMany(factory(Ticket::class, 5)->create(['order_id' => $orderB->id]));
|
|
|
|
$this->assertEquals(134.75, $concert->revenueInDollars());
|
|
}
|
|
|
|
/** @test */
|
|
function trying_to_reserve_more_tickets_than_remain_throws_an_exception()
|
|
{
|
|
$concert = \ConcertFactory::createPublished(['ticket_quantity' => 10]);
|
|
|
|
try {
|
|
$reservation = $concert->reserveTickets(11, 'john@example.com');
|
|
} catch (NotEnoughTicketsException $e) {
|
|
$this->assertEquals(10, $concert->ticketsRemaining());
|
|
return;
|
|
}
|
|
|
|
$this->fail("Order succeeded even though there were not enough tickets remaining.");
|
|
}
|
|
|
|
/** @test */
|
|
function can_reserve_available_tickets()
|
|
{
|
|
$concert = \ConcertFactory::createPublished(['ticket_quantity' => 3]);
|
|
$this->assertEquals(3, $concert->ticketsRemaining());
|
|
|
|
$reservation = $concert->reserveTickets(2, 'john@example.com');
|
|
|
|
$this->assertCount(2, $reservation->tickets());
|
|
$this->assertEquals('john@example.com', $reservation->email());
|
|
$this->assertEquals(1, $concert->ticketsRemaining());
|
|
}
|
|
|
|
/** @test */
|
|
function cannot_reserve_tickets_that_have_already_been_purchased()
|
|
{
|
|
$concert = \ConcertFactory::createPublished(['ticket_quantity' => 3]);
|
|
$order = factory(Order::class)->create();
|
|
$order->tickets()->saveMany($concert->tickets->take(2));
|
|
|
|
try {
|
|
$concert->reserveTickets(2, 'john@example.com');
|
|
} catch (NotEnoughTicketsException $e) {
|
|
$this->assertEquals(1, $concert->ticketsRemaining());
|
|
return;
|
|
}
|
|
|
|
$this->fail("Reserving tickets succeeded even though the tickets were already sold.");
|
|
}
|
|
|
|
/** @test */
|
|
function cannot_reserve_tickets_that_have_already_been_reserved()
|
|
{
|
|
$concert = \ConcertFactory::createPublished(['ticket_quantity' => 3]);
|
|
$concert->reserveTickets(2, 'jane@example.com');
|
|
|
|
try {
|
|
$concert->reserveTickets(2, 'john@example.com');
|
|
} catch (NotEnoughTicketsException $e) {
|
|
$this->assertEquals(1, $concert->ticketsRemaining());
|
|
return;
|
|
}
|
|
|
|
$this->fail("Reserving tickets succeeded even though the tickets were already reserved.");
|
|
}
|
|
}
|