1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/tests/Feature/TaskStatusApiTest.php

204 lines
5.5 KiB
PHP
Raw Normal View History

2020-10-20 01:01:59 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-20 01:01:59 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-10-20 01:01:59 +02:00
*/
2020-10-20 01:01:59 +02:00
namespace Tests\Feature;
2023-05-18 01:12:12 +02:00
use App\Models\TaskStatus;
2020-10-20 01:01:59 +02:00
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;
2023-05-18 01:12:12 +02:00
public $faker;
protected function setUp() :void
2020-10-20 01:01:59 +02:00
{
parent::setUp();
$this->makeTestData();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
}
2023-05-18 01:12:12 +02:00
public function testSorting()
{
TaskStatus::factory()->count(5)->create([
'company_id' => $this->company->id,
'user_id' => $this->user->id
]);
$t = TaskStatus::where('company_id', '=', $this->company->id)->orderBy('id', 'desc');
$this->assertEquals(10, $t->count());
$task_status = $t->first();
$id = $task_status->id;
nlog("setting {$id} to index 1");
$data = [
'status_order' => 1,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/task_statuses/'.$task_status->hashed_id, $data);
$t = TaskStatus::where('company_id', '=', $this->company->id)->orderBy('status_order', 'asc')->first();
$this->assertEquals($id, $t->id);
}
2023-01-19 01:52:07 +01:00
public function testTaskStatusGetFilter()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/task_statuses?filter=xx');
$response->assertStatus(200);
}
2020-10-20 01:01:59 +02:00
public function testTaskStatusPost()
{
$data = [
'name' => $this->faker->firstName(),
2020-10-20 01:01:59 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/task_statuses', $data);
2020-10-20 01:01:59 +02:00
$response->assertStatus(200);
}
public function testTaskStatusPut()
{
$data = [
'name' => $this->faker->firstName(),
2020-10-20 01:01:59 +02:00
];
$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);
2020-10-20 01:01:59 +02:00
$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));
2020-10-20 01:01:59 +02:00
$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));
2020-10-20 01:01:59 +02:00
$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);
2020-10-20 01:01:59 +02:00
$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);
2020-10-20 01:01:59 +02:00
$arr = $response->json();
$this->assertEquals(0, $arr['data'][0]['archived_at']);
}
2021-04-18 11:50:06 +02:00
public function testTaskStatusDeletedFromDELETEROute()
{
2021-07-08 12:29:41 +02:00
// $data = [
// 'ids' => [$this->encodePrimaryKey($this->task_status->id)],
// ];
2021-04-18 11:50:06 +02:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->delete('/api/v1/task_statuses/'.$this->encodePrimaryKey($this->task_status->id));
2021-04-18 11:50:06 +02:00
$arr = $response->json();
// nlog($arr);
2021-04-18 11:50:06 +02:00
$this->assertTrue($arr['data']['is_deleted']);
}
2020-10-20 01:01:59 +02:00
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);
2020-10-20 01:01:59 +02:00
$arr = $response->json();
$this->assertTrue($arr['data'][0]['is_deleted']);
}
}