12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace Tests\Api\v1\Controllers;
- use Illuminate\Foundation\Testing\WithoutMiddleware;
- use Illuminate\Http\UploadedFile;
- use Tests\FeatureTestCase;
- /**
- * @covers \App\Api\v1\Controllers\IconController
- */
- class IconControllerTest extends FeatureTestCase
- {
- use WithoutMiddleware;
- /**
- * @test
- */
- public function test_upload_icon_returns_filename()
- {
- $file = UploadedFile::fake()->image('testIcon.jpg');
- $response = $this->json('POST', '/api/v1/icons', [
- 'icon' => $file,
- ])
- ->assertCreated()
- ->assertJsonStructure([
- 'filename',
- ]);
- }
- /**
- * @test
- */
- public function test_upload_with_invalid_data_returns_validation_error()
- {
- $response = $this->json('POST', '/api/v1/icons', [
- 'icon' => null,
- ])
- ->assertStatus(422);
- }
- /**
- * @test
- */
- public function test_fetch_logo_returns_filename()
- {
- $response = $this->json('POST', '/api/v1/icons/default', [
- 'service' => 'twitter',
- ])
- ->assertStatus(201)
- ->assertJsonStructure([
- 'filename',
- ]);
- }
- /**
- * @test
- */
- public function test_fetch_unknown_logo_returns_nothing()
- {
- $response = $this->json('POST', '/api/v1/icons/default', [
- 'service' => 'unknown_company',
- ])
- ->assertNoContent();
- }
- /**
- * @test
- */
- public function test_delete_icon_returns_success()
- {
- $response = $this->json('DELETE', '/api/v1/icons/testIcon.jpg')
- ->assertNoContent(204);
- }
- /**
- * @test
- */
- public function test_delete_invalid_icon_returns_success()
- {
- $response = $this->json('DELETE', '/api/v1/icons/null')
- ->assertNoContent(204);
- }
- }
|