mirror of
https://github.com/nothingworksinc/ticketbeast.git
synced 2026-01-26 03:04:05 +00:00
52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
|
|
use App\Concert;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class ViewConcertListingTest extends TestCase
|
|
{
|
|
use DatabaseMigrations;
|
|
|
|
/** @test */
|
|
function user_can_view_a_published_concert_listing()
|
|
{
|
|
$concert = factory(Concert::class)->states('published')->create([
|
|
'title' => 'The Red Chord',
|
|
'subtitle' => 'with Animosity and Lethargy',
|
|
'date' => Carbon::parse('December 13, 2016 8:00pm'),
|
|
'ticket_price' => 3250,
|
|
'venue' => 'The Mosh Pit',
|
|
'venue_address' => '123 Example Lane',
|
|
'city' => 'Laraville',
|
|
'state' => 'ON',
|
|
'zip' => '17916',
|
|
'additional_information' => 'For tickets, call (555) 555-5555.',
|
|
]);
|
|
|
|
$this->visit('/concerts/'.$concert->id);
|
|
|
|
$this->see('The Red Chord');
|
|
$this->see('with Animosity and Lethargy');
|
|
$this->see('December 13, 2016');
|
|
$this->see('8:00pm');
|
|
$this->see('32.50');
|
|
$this->see('The Mosh Pit');
|
|
$this->see('123 Example Lane');
|
|
$this->see('Laraville, ON 17916');
|
|
$this->see('For tickets, call (555) 555-5555.');
|
|
}
|
|
|
|
/** @test */
|
|
function user_cannot_view_unpublished_concert_listings()
|
|
{
|
|
$concert = factory(Concert::class)->states('unpublished')->create();
|
|
|
|
$this->get('/concerts/'.$concert->id);
|
|
|
|
$this->assertResponseStatus(404);
|
|
}
|
|
}
|