|
|
|
@ -22,45 +22,62 @@ class websitePagesTest extends TestCase
|
|
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test_products()
|
|
|
|
|
{
|
|
|
|
|
$response = $this->get(route('products'));
|
|
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test_posts()
|
|
|
|
|
{
|
|
|
|
|
$response = $this->get(route('posts'));
|
|
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test_single_post()
|
|
|
|
|
{
|
|
|
|
|
$response = $this->get(route('post',Post::inRandomOrder()->first()->slug));
|
|
|
|
|
if (Post::count() > 0) {
|
|
|
|
|
$response = $this->get(route('post', Post::inRandomOrder()->first()->slug));
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
} else {
|
|
|
|
|
$this->assertTrue(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test_single_product()
|
|
|
|
|
{
|
|
|
|
|
$response = $this->get(route('product',Product::inRandomOrder()->first()->slug));
|
|
|
|
|
if (Product::count() > 0) {
|
|
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
$response = $this->get(route('product', Product::inRandomOrder()->first()->slug));
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
} else {
|
|
|
|
|
$this->assertTrue(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test_single_product_category()
|
|
|
|
|
{
|
|
|
|
|
$response = $this->get(route('cat',Cat::inRandomOrder()->first()->slug));
|
|
|
|
|
$response = $this->get(route('cat', Cat::inRandomOrder()->first()->slug));
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function test_card_empty(){
|
|
|
|
|
public function test_card_empty()
|
|
|
|
|
{
|
|
|
|
|
$this->get(route('reset'));
|
|
|
|
|
$response = $this->get(route('card.show'));
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|
public function test_card_with_products(){
|
|
|
|
|
$this->get(route('card.add',Product::inRandomOrder()->first()->slug));
|
|
|
|
|
$this->get(route('card.add',Product::inRandomOrder()->first()->slug));
|
|
|
|
|
|
|
|
|
|
public function test_card_with_products()
|
|
|
|
|
{
|
|
|
|
|
if (Product::count() > 0) {
|
|
|
|
|
$this->get(route('card.add', Product::inRandomOrder()->first()->slug));
|
|
|
|
|
$this->get(route('card.add', Product::inRandomOrder()->first()->slug));
|
|
|
|
|
}
|
|
|
|
|
$response = $this->get(route('card.show'));
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
}
|
|
|
|
|