koel/tests/Feature/TestCase.php

92 lines
2.2 KiB
PHP
Raw Normal View History

2017-02-14 14:53:02 +08:00
<?php
2017-08-05 17:56:11 +01:00
namespace Tests\Feature;
2017-02-14 14:53:02 +08:00
use App\Models\Album;
use App\Models\Artist;
use App\Models\Song;
use App\Models\User;
2018-08-19 11:05:33 +02:00
use Exception;
2017-02-14 14:53:02 +08:00
use JWTAuth;
2017-08-05 17:56:11 +01:00
use Laravel\BrowserKitTesting\DatabaseTransactions;
use Laravel\BrowserKitTesting\TestCase as BaseTestCase;
use Tests\CreatesApplication;
2018-08-19 11:05:33 +02:00
use Tests\Traits\InteractsWithIoc;
2017-02-14 14:53:02 +08:00
2017-08-05 17:56:11 +01:00
abstract class TestCase extends BaseTestCase
2017-02-14 14:53:02 +08:00
{
2018-08-19 11:05:33 +02:00
use CreatesApplication, DatabaseTransactions, InteractsWithIoc;
2017-02-14 14:53:02 +08:00
public function setUp()
{
parent::setUp();
$this->prepareForTests();
}
2017-08-05 19:55:53 +01:00
/**
2017-02-14 14:53:02 +08:00
* Create a sample media set, with a complete artist+album+song trio.
2018-08-19 11:05:33 +02:00
* @throws Exception
2017-02-14 14:53:02 +08:00
*/
protected function createSampleMediaSet()
{
$artist = factory(Artist::class)->create();
// Sample 3 albums
$albums = factory(Album::class, 3)->create([
'artist_id' => $artist->id,
]);
// 7-15 songs per albums
foreach ($albums as $album) {
factory(Song::class, random_int(7, 15))->create([
'album_id' => $album->id,
'artist_id' => $artist->id,
2017-02-14 14:53:02 +08:00
]);
}
}
protected function getAsUser($url, $user = null)
{
if (!$user) {
$user = factory(User::class)->create();
}
return $this->get($url, [
'Authorization' => 'Bearer '.JWTAuth::fromUser($user),
]);
}
protected function deleteAsUser($url, $data = [], $user = null)
{
if (!$user) {
$user = factory(User::class)->create();
}
return $this->delete($url, $data, [
'Authorization' => 'Bearer '.JWTAuth::fromUser($user),
]);
}
protected function postAsUser($url, $data, $user = null)
{
if (!$user) {
$user = factory(User::class)->create();
}
return $this->post($url, $data, [
'Authorization' => 'Bearer '.JWTAuth::fromUser($user),
]);
}
protected function putAsUser($url, $data, $user = null)
{
if (!$user) {
$user = factory(User::class)->create();
}
return $this->put($url, $data, [
'Authorization' => 'Bearer '.JWTAuth::fromUser($user),
]);
}
}