mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
364 lines
10 KiB
PHP
364 lines
10 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Expense;
|
|
use Tests\TestCase;
|
|
use App\Models\Invoice;
|
|
use App\Models\Quote;
|
|
use Tests\MockAccountData;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
/**
|
|
* @test
|
|
* @covers App\Http\Controllers\ProjectController
|
|
*/
|
|
class ProjectApiTest extends TestCase
|
|
{
|
|
use MakesHash;
|
|
use DatabaseTransactions;
|
|
use MockAccountData;
|
|
|
|
protected $faker;
|
|
|
|
protected function setUp() :void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->makeTestData();
|
|
|
|
Session::start();
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
Model::reguard();
|
|
}
|
|
|
|
public function testProjectIncludesZeroCount()
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->putJson("/api/v1/projects/{$this->project->hashed_id}?include=expenses,invoices,quotes");
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertEquals(0, count($arr['data']['invoices']));
|
|
$this->assertEquals(0, count($arr['data']['expenses']));
|
|
$this->assertEquals(0, count($arr['data']['quotes']));
|
|
|
|
}
|
|
|
|
public function testProjectIncludes()
|
|
{
|
|
$i = Invoice::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
'company_id' => $this->company->id,
|
|
'client_id' => $this->project->client_id,
|
|
'project_id' => $this->project->id,
|
|
]);
|
|
|
|
|
|
$e = Expense::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
'company_id' => $this->company->id,
|
|
'client_id' => $this->project->client_id,
|
|
'project_id' => $this->project->id,
|
|
]);
|
|
|
|
|
|
$q = Quote::factory()->create([
|
|
'user_id' => $this->user->id,
|
|
'company_id' => $this->company->id,
|
|
'client_id' => $this->project->client_id,
|
|
'project_id' => $this->project->id,
|
|
]);
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->putJson("/api/v1/projects/{$this->project->hashed_id}?include=expenses,invoices,quotes");
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertEquals(1, count($arr['data']['invoices']));
|
|
$this->assertEquals(1, count($arr['data']['expenses']));
|
|
$this->assertEquals(1, count($arr['data']['quotes']));
|
|
|
|
}
|
|
|
|
public function testProjectValidationForBudgetedHoursPut()
|
|
{
|
|
|
|
$data = $this->project->toArray();
|
|
$data['budgeted_hours'] = "aa";
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->putJson("/api/v1/projects/{$this->project->hashed_id}", $data);
|
|
|
|
$response->assertStatus(422);
|
|
|
|
}
|
|
|
|
public function testProjectValidationForBudgetedHoursPutNull()
|
|
{
|
|
|
|
$data = $this->project->toArray();
|
|
$data['budgeted_hours'] = null;
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->putJson("/api/v1/projects/{$this->project->hashed_id}", $data);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
public function testProjectValidationForBudgetedHoursPutEmpty()
|
|
{
|
|
|
|
$data = $this->project->toArray();
|
|
$data['budgeted_hours'] = "";
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->putJson("/api/v1/projects/{$this->project->hashed_id}", $data);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
public function testProjectValidationForBudgetedHours()
|
|
{
|
|
|
|
$data = [
|
|
'name' => $this->faker->firstName(),
|
|
'client_id' => $this->client->hashed_id,
|
|
'number' => 'duplicate',
|
|
'budgeted_hours' => null
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->postJson('/api/v1/projects', $data);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
public function testProjectValidationForBudgetedHours2()
|
|
{
|
|
|
|
$data = [
|
|
'name' => $this->faker->firstName(),
|
|
'client_id' => $this->client->hashed_id,
|
|
'number' => 'duplicate',
|
|
'budgeted_hours' => "a"
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->postJson('/api/v1/projects', $data);
|
|
|
|
$response->assertStatus(422);
|
|
|
|
}
|
|
|
|
public function testProjectValidationForBudgetedHours3()
|
|
{
|
|
|
|
$data = [
|
|
'name' => $this->faker->firstName(),
|
|
'client_id' => $this->client->hashed_id,
|
|
'number' => 'duplicate',
|
|
'budgeted_hours' => ""
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->postJson('/api/v1/projects', $data);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
public function testProjectGetFilter()
|
|
{
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/projects?filter=xx');
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
public function testProjectGet()
|
|
{
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/projects/'.$this->encodePrimaryKey($this->project->id));
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
public function testProjectPost()
|
|
{
|
|
$data = [
|
|
'name' => $this->faker->firstName(),
|
|
'client_id' => $this->client->hashed_id,
|
|
'number' => 'duplicate',
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/projects', $data);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$arr = $response->json();
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->put('/api/v1/projects/'.$arr['data']['id'], $data)->assertStatus(200);
|
|
|
|
try {
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/projects', $data);
|
|
} catch (ValidationException $e) {
|
|
$response->assertStatus(302);
|
|
}
|
|
}
|
|
|
|
public function testProjectPostFilters()
|
|
{
|
|
$data = [
|
|
'name' => 'Sherlock',
|
|
'client_id' => $this->client->hashed_id,
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/projects', $data);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/projects?filter=Sherlock');
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertEquals(1, count($arr['data']));
|
|
}
|
|
|
|
public function testProjectPut()
|
|
{
|
|
$data = [
|
|
'name' => $this->faker->firstName(),
|
|
'public_notes' => 'Coolio',
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->put('/api/v1/projects/'.$this->encodePrimaryKey($this->project->id), $data);
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
public function testProjectNotArchived()
|
|
{
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/projects/'.$this->encodePrimaryKey($this->project->id));
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertEquals(0, $arr['data']['archived_at']);
|
|
}
|
|
|
|
public function testProjectArchived()
|
|
{
|
|
$data = [
|
|
'ids' => [$this->encodePrimaryKey($this->project->id)],
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/projects/bulk?action=archive', $data);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertNotNull($arr['data'][0]['archived_at']);
|
|
}
|
|
|
|
public function testProjectRestored()
|
|
{
|
|
$data = [
|
|
'ids' => [$this->encodePrimaryKey($this->project->id)],
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/projects/bulk?action=restore', $data);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertEquals(0, $arr['data'][0]['archived_at']);
|
|
}
|
|
|
|
public function testProjectDeleted()
|
|
{
|
|
$data = [
|
|
'ids' => [$this->encodePrimaryKey($this->project->id)],
|
|
];
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/projects/bulk?action=delete', $data);
|
|
|
|
$arr = $response->json();
|
|
|
|
$this->assertTrue($arr['data'][0]['is_deleted']);
|
|
}
|
|
}
|