mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
141 lines
3.8 KiB
PHP
141 lines
3.8 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://opensource.org/licenses/AAL
|
||
|
*/
|
||
|
namespace Tests\Feature;
|
||
|
|
||
|
use App\Utils\Traits\MakesHash;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||
|
use Illuminate\Support\Facades\Session;
|
||
|
use Tests\MockAccountData;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
* @covers App\Http\Controllers\TaskStatusController
|
||
|
*/
|
||
|
class TaskStatusApiTest extends TestCase
|
||
|
{
|
||
|
use MakesHash;
|
||
|
use DatabaseTransactions;
|
||
|
use MockAccountData;
|
||
|
|
||
|
public function setUp() :void
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->makeTestData();
|
||
|
|
||
|
Session::start();
|
||
|
|
||
|
$this->faker = \Faker\Factory::create();
|
||
|
|
||
|
Model::reguard();
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusPost()
|
||
|
{
|
||
|
$data = [
|
||
|
'name' => $this->faker->firstName,
|
||
|
];
|
||
|
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->post('/api/v1/task_statuses', $data);
|
||
|
|
||
|
$response->assertStatus(200);
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusPut()
|
||
|
{
|
||
|
$data = [
|
||
|
'name' => $this->faker->firstName,
|
||
|
];
|
||
|
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->put('/api/v1/task_statuses/'.$this->encodePrimaryKey($this->task_status->id), $data);
|
||
|
|
||
|
$response->assertStatus(200);
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusGet()
|
||
|
{
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->get('/api/v1/task_statuses/'.$this->encodePrimaryKey($this->task_status->id));
|
||
|
|
||
|
$response->assertStatus(200);
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusNotArchived()
|
||
|
{
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->get('/api/v1/task_statuses/'.$this->encodePrimaryKey($this->task_status->id));
|
||
|
|
||
|
$arr = $response->json();
|
||
|
|
||
|
$this->assertEquals(0, $arr['data']['archived_at']);
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusArchived()
|
||
|
{
|
||
|
$data = [
|
||
|
'ids' => [$this->encodePrimaryKey($this->task_status->id)],
|
||
|
];
|
||
|
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->post('/api/v1/task_statuses/bulk?action=archive', $data);
|
||
|
|
||
|
$arr = $response->json();
|
||
|
|
||
|
$this->assertNotNull($arr['data'][0]['archived_at']);
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusRestored()
|
||
|
{
|
||
|
$data = [
|
||
|
'ids' => [$this->encodePrimaryKey($this->task_status->id)],
|
||
|
];
|
||
|
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->post('/api/v1/task_statuses/bulk?action=restore', $data);
|
||
|
|
||
|
$arr = $response->json();
|
||
|
|
||
|
$this->assertEquals(0, $arr['data'][0]['archived_at']);
|
||
|
}
|
||
|
|
||
|
public function testTaskStatusDeleted()
|
||
|
{
|
||
|
$data = [
|
||
|
'ids' => [$this->encodePrimaryKey($this->task_status->id)],
|
||
|
];
|
||
|
|
||
|
$response = $this->withHeaders([
|
||
|
'X-API-SECRET' => config('ninja.api_secret'),
|
||
|
'X-API-TOKEN' => $this->token,
|
||
|
])->post('/api/v1/task_statuses/bulk?action=delete', $data);
|
||
|
|
||
|
$arr = $response->json();
|
||
|
|
||
|
$this->assertTrue($arr['data'][0]['is_deleted']);
|
||
|
}
|
||
|
}
|