-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
74330ce
commit 6358f4c
Showing
3 changed files
with
139 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<?php | ||
|
||
namespace Tests\Feature; | ||
|
||
use Tests\TestCase; | ||
use App\Models\User; | ||
use App\Models\Topic; | ||
use Tests\Traits\ActingJWTUser; | ||
use Illuminate\Foundation\Testing\WithFaker; | ||
use Illuminate\Foundation\Testing\RefreshDatabase; | ||
|
||
class TopicApiTest extends TestCase | ||
{ | ||
use RefreshDatabase; | ||
use ActingJWTUser; | ||
|
||
protected $user; | ||
|
||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->user = factory(User::class)->create(); | ||
} | ||
|
||
public function testStoreTopic() | ||
{ | ||
$data = ['category_id' => 1, 'body' => 'test body', 'title' => 'test title']; | ||
|
||
$response = $this->JWTActingAs($this->user) | ||
->json('POST', '/api/v1/topics', $data); | ||
|
||
$assertData = [ | ||
'category_id' => 1, | ||
'user_id' => $this->user->id, | ||
'title' => 'test title', | ||
'body' => clean('test body', 'user_topic_body'), | ||
]; | ||
|
||
$response->assertStatus(201) | ||
->assertJsonFragment($assertData); | ||
} | ||
|
||
public function testUpdateTopic() | ||
{ | ||
$topic = $this->makeTopic(); | ||
|
||
$editData = ['category_id' => 2, 'body' => 'edit body', 'title' => 'edit title']; | ||
|
||
$response = $this->JWTActingAs($this->user) | ||
->json('PATCH', '/api/v1/topics/'.$topic->id, $editData); | ||
|
||
$assertData= [ | ||
'category_id' => 2, | ||
'user_id' => $this->user->id, | ||
'title' => 'edit title', | ||
'body' => clean('edit body', 'user_topic_body'), | ||
]; | ||
|
||
$response->assertStatus(200) | ||
->assertJsonFragment($assertData); | ||
} | ||
|
||
protected function makeTopic() | ||
{ | ||
return factory(Topic::class)->create([ | ||
'user_id' => $this->user->id, | ||
'category_id' => 1, | ||
]); | ||
} | ||
|
||
public function testShowTopic() | ||
{ | ||
$topic = $this->makeTopic(); | ||
$response = $this->json('GET', '/api/v1/topics/'.$topic->id); | ||
|
||
$assertData= [ | ||
'category_id' => $topic->category_id, | ||
'user_id' => $topic->user_id, | ||
'title' => $topic->title, | ||
'body' => $topic->body, | ||
]; | ||
|
||
$response->assertStatus(200) | ||
->assertJsonFragment($assertData); | ||
} | ||
|
||
public function testIndexTopic() | ||
{ | ||
$response = $this->json('GET', '/api/v1/topics'); | ||
|
||
$response->assertStatus(200) | ||
->assertJsonStructure(['data', 'meta']); | ||
} | ||
|
||
public function testDeleteTopic() | ||
{ | ||
$topic = $this->makeTopic(); | ||
$response = $this->JWTActingAs($this->user) | ||
->json('DELETE', '/api/v1/topics/'.$topic->id); | ||
$response->assertStatus(204); | ||
|
||
$response = $this->json('GET', '/api/v1/topics/'.$topic->id); | ||
$response->assertStatus(404); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Tests\Traits; | ||
|
||
use App\Models\User; | ||
|
||
trait ActingJWTUser | ||
{ | ||
public function JWTActingAs(User $user) | ||
{ | ||
$token = auth('api')->fromUser($user); | ||
$this->withHeaders(['Authorization' => 'Bearer '.$token]); | ||
|
||
return $this; | ||
} | ||
} |