2019-05-02 13:24:00 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2019-05-02 13:24:00 +02:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
|
|
|
use App\Models\Client;
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Models\ClientContact;
|
2022-08-15 05:49:47 +02:00
|
|
|
use App\Models\Project;
|
2019-05-02 13:24:00 +02:00
|
|
|
use App\Models\Quote;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2020-02-29 22:03:43 +01:00
|
|
|
use Illuminate\Routing\Middleware\ThrottleRequests;
|
2019-05-02 13:24:00 +02:00
|
|
|
use Illuminate\Support\Facades\Session;
|
2020-02-19 21:44:12 +01:00
|
|
|
use Tests\MockAccountData;
|
2019-05-02 13:24:00 +02:00
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Http\Controllers\QuoteController
|
|
|
|
*/
|
|
|
|
class QuoteTest extends TestCase
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use DatabaseTransactions;
|
2020-02-19 21:44:12 +01:00
|
|
|
use MockAccountData;
|
2019-05-02 13:24:00 +02:00
|
|
|
|
2022-06-21 12:00:57 +02:00
|
|
|
protected function setUp() :void
|
2019-05-02 13:24:00 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
Session::start();
|
|
|
|
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
|
|
|
|
Model::reguard();
|
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
$this->makeTestData();
|
2019-05-02 13:24:00 +02:00
|
|
|
|
2020-02-29 22:03:43 +01:00
|
|
|
$this->withoutMiddleware(
|
|
|
|
ThrottleRequests::class
|
|
|
|
);
|
2019-05-02 13:24:00 +02:00
|
|
|
}
|
|
|
|
|
2023-01-19 01:52:07 +01:00
|
|
|
public function testQuoteListApproved()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/quotes?client_status=approved');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
2022-08-15 05:49:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
public function testQuoteConvertToProject()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/quotes/bulk',['action' => 'convert_to_project', 'ids' => [$this->quote->hashed_id]]);
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$res = $response->json();
|
|
|
|
|
|
|
|
$this->assertNotNull($res['data'][0]['project_id']);
|
|
|
|
|
|
|
|
$project = Project::find($this->decodePrimaryKey($res['data'][0]['project_id']));
|
|
|
|
|
|
|
|
$this->assertEquals($project->name, ctrans('texts.quote_number_short') . " " . $this->quote->number);
|
|
|
|
}
|
|
|
|
|
2019-05-02 13:24:00 +02:00
|
|
|
public function testQuoteList()
|
|
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/quotes');
|
2019-05-02 13:24:00 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testQuoteRESTEndPoints()
|
|
|
|
{
|
2020-02-29 22:03:43 +01:00
|
|
|
$response = null;
|
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
try {
|
2020-02-29 22:03:43 +01:00
|
|
|
$response = $this->withHeaders([
|
2019-05-02 13:24:00 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-02-19 21:44:12 +01:00
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id));
|
2020-03-21 06:37:30 +01:00
|
|
|
} catch (ValidationException $e) {
|
|
|
|
$message = json_decode($e->validator->getMessageBag(), 1);
|
2020-02-29 22:03:43 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-21 06:37:30 +01:00
|
|
|
if ($response) {
|
2020-02-29 22:03:43 +01:00
|
|
|
$response->assertStatus(200);
|
2020-03-21 06:37:30 +01:00
|
|
|
}
|
2020-02-29 22:03:43 +01:00
|
|
|
|
|
|
|
$this->assertNotNull($response);
|
2019-05-02 13:24:00 +02:00
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->get('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id).'/edit');
|
2019-05-02 13:24:00 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$quote_update = [
|
2019-07-05 00:36:40 +02:00
|
|
|
'status_id' => Quote::STATUS_APPROVED,
|
2021-03-20 01:21:50 +01:00
|
|
|
'client_id' => $this->encodePrimaryKey($this->quote->client_id),
|
|
|
|
'number' => 'Rando',
|
2019-05-02 13:24:00 +02:00
|
|
|
];
|
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
$this->assertNotNull($this->quote);
|
2019-05-02 13:24:00 +02:00
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->put('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id), $quote_update);
|
2019-11-16 04:12:29 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
2019-05-02 13:24:00 +02:00
|
|
|
|
2021-03-20 01:21:50 +01:00
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->put('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id), $quote_update);
|
2021-03-20 01:21:50 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/quotes/', $quote_update);
|
2021-03-20 01:21:50 +01:00
|
|
|
|
|
|
|
$response->assertStatus(302);
|
|
|
|
|
2019-05-02 13:24:00 +02:00
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->delete('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id));
|
2019-05-02 13:24:00 +02:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
|
|
|
|
2020-02-19 21:44:12 +01:00
|
|
|
$client_contact = ClientContact::whereClientId($this->client->id)->first();
|
2019-12-17 23:40:15 +01:00
|
|
|
|
|
|
|
$data = [
|
2020-02-19 21:44:12 +01:00
|
|
|
'client_id' => $this->encodePrimaryKey($this->client->id),
|
2020-09-06 11:38:10 +02:00
|
|
|
'date' => '2019-12-14',
|
2019-12-17 23:40:15 +01:00
|
|
|
'line_items' => [],
|
|
|
|
'invitations' => [
|
2020-09-06 11:38:10 +02:00
|
|
|
['client_contact_id' => $this->encodePrimaryKey($client_contact->id)],
|
2019-12-17 23:40:15 +01:00
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
2022-06-21 11:57:17 +02:00
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
|
|
'X-API-TOKEN' => $this->token,
|
|
|
|
])->post('/api/v1/quotes', $data);
|
2019-12-17 23:40:15 +01:00
|
|
|
|
|
|
|
$response->assertStatus(200);
|
2019-05-02 13:24:00 +02:00
|
|
|
}
|
2022-08-15 05:49:47 +02:00
|
|
|
|
2019-05-02 13:24:00 +02:00
|
|
|
}
|