1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/tests/Feature/TaskApiTest.php

274 lines
7.2 KiB
PHP
Raw Normal View History

2020-10-12 22:42:02 +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-12 22:42:02 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-10-12 22:42:02 +02:00
*/
2020-10-12 22:42:02 +02:00
namespace Tests\Feature;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Support\Facades\Session;
2021-03-20 01:25:44 +01:00
use Illuminate\Validation\ValidationException;
2020-10-12 22:42:02 +02:00
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
* @covers App\Http\Controllers\TaskController
*/
class TaskApiTest extends TestCase
{
use MakesHash;
use DatabaseTransactions;
use MockAccountData;
protected function setUp() :void
2020-10-12 22:42:02 +02:00
{
parent::setUp();
$this->makeTestData();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
}
2022-03-10 07:17:40 +01:00
public function testStartTask()
{
$log = [
[2, 1],
[10, 20],
2022-03-10 07:17:40 +01:00
];
$last = end($log);
$this->assertEquals(10, $last[0]);
$this->assertEquals(20, $last[1]);
$new = [time(), 0];
array_push($log, $new);
$this->assertEquals(3, count($log));
//test task is started
$last = end($log);
$this->assertTrue($last[1] === 0);
//stop task
$last = end($log);
$last[1] = time();
2022-03-10 07:18:17 +01:00
$this->assertTrue($last[1] !== 0);
2022-03-10 07:17:40 +01:00
}
2020-10-12 22:42:02 +02:00
public function testTaskPost()
{
$data = [
'description' => $this->faker->firstName(),
'number' => 'taskynumber',
2020-10-12 22:42:02 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks', $data);
2020-10-12 22:42:02 +02:00
2020-10-29 11:44:05 +01:00
$arr = $response->json();
2020-10-12 22:42:02 +02:00
$response->assertStatus(200);
2020-10-29 11:44:05 +01:00
2021-03-20 01:25:44 +01:00
$this->assertEquals('taskynumber', $arr['data']['number']);
2022-03-30 04:54:40 +02:00
$this->assertLessThan(5, strlen($arr['data']['time_log']));
2021-03-20 01:25:44 +01:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/tasks/'.$arr['data']['id'], $data);
2021-03-20 01:25:44 +01:00
$response->assertStatus(200);
try {
$response = $this->withHeaders([
2021-03-20 01:25:44 +01:00
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks', $data);
$arr = $response->json();
} catch (ValidationException $e) {
2021-03-20 01:25:44 +01:00
$response->assertStatus(302);
}
2020-10-29 11:44:05 +01:00
$this->assertNotEmpty($arr['data']['number']);
}
2022-03-30 04:54:40 +02:00
public function testTaskPostNoDefinedTaskNumber()
{
$data = [
'description' => $this->faker->firstName(),
2022-03-30 04:54:40 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks', $data);
2022-03-30 04:54:40 +02:00
$arr = $response->json();
$response->assertStatus(200);
$this->assertNotEmpty($arr['data']['number']);
}
2020-10-29 11:44:05 +01:00
public function testTaskPostWithActionStart()
{
$data = [
'description' => $this->faker->firstName(),
2020-10-29 11:44:05 +01:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks?action=start', $data);
2020-10-29 11:44:05 +01:00
$arr = $response->json();
$response->assertStatus(200);
2020-10-12 22:42:02 +02:00
}
public function testTaskPut()
{
$data = [
'description' => $this->faker->firstName(),
2020-10-12 22:42:02 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/tasks/'.$this->encodePrimaryKey($this->task->id), $data);
2020-10-12 22:42:02 +02:00
$response->assertStatus(200);
}
2020-10-29 10:40:13 +01:00
public function testTasksGet()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tasks');
2020-10-29 10:40:13 +01:00
$response->assertStatus(200);
}
2020-10-12 22:42:02 +02:00
public function testTaskGet()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tasks/'.$this->encodePrimaryKey($this->task->id));
2020-10-12 22:42:02 +02:00
$response->assertStatus(200);
}
public function testTaskNotArchived()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/tasks/'.$this->encodePrimaryKey($this->task->id));
2020-10-12 22:42:02 +02:00
$arr = $response->json();
$this->assertEquals(0, $arr['data']['archived_at']);
}
public function testTaskArchived()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->task->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks/bulk?action=archive', $data);
2020-10-12 22:42:02 +02:00
$arr = $response->json();
$this->assertNotNull($arr['data'][0]['archived_at']);
}
public function testTaskRestored()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->task->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks/bulk?action=restore', $data);
2020-10-12 22:42:02 +02:00
$arr = $response->json();
$this->assertEquals(0, $arr['data'][0]['archived_at']);
}
public function testTaskDeleted()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->task->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks/bulk?action=delete', $data);
2020-10-12 22:42:02 +02:00
$arr = $response->json();
$this->assertTrue($arr['data'][0]['is_deleted']);
}
2022-03-30 04:54:40 +02:00
public function testTaskPostWithStartAction()
{
$data = [
'description' => $this->faker->firstName(),
'number' => 'taskynumber2',
2022-03-30 04:54:40 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks?start=true', $data);
2022-03-30 04:54:40 +02:00
$arr = $response->json();
$response->assertStatus(200);
$this->assertEquals('taskynumber2', $arr['data']['number']);
$this->assertGreaterThan(5, strlen($arr['data']['time_log']));
}
public function testTaskPostWithStopAction()
{
$data = [
'description' => $this->faker->firstName(),
2022-03-30 04:54:40 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/tasks?stop=true', $data);
2022-03-30 04:54:40 +02:00
$arr = $response->json();
$response->assertStatus(200);
$this->assertLessThan(5, strlen($arr['data']['time_log']));
}
2020-10-12 22:42:02 +02:00
}