mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
9e9cd37b87
* Working on Quotes * Naming refactor for Quotes * Quote Actions * Quote Pdfs * Quote PDFs * Refunds in Stripe * Fixes tests * Company Ledger work
121 lines
3.2 KiB
PHP
121 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\DataMapper\ClientSettings;
|
|
use App\DataMapper\CompanySettings;
|
|
use App\Models\Account;
|
|
use App\Models\Client;
|
|
use App\Models\ClientContact;
|
|
use App\Models\Quote;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Support\Facades\Session;
|
|
use Tests\MockAccountData;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
* @covers App\Http\Controllers\QuoteController
|
|
*/
|
|
|
|
class QuoteTest extends TestCase
|
|
{
|
|
|
|
use MakesHash;
|
|
use DatabaseTransactions;
|
|
use MockAccountData;
|
|
|
|
public function setUp() :void
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
Session::start();
|
|
|
|
$this->faker = \Faker\Factory::create();
|
|
|
|
Model::reguard();
|
|
|
|
$this->makeTestData();
|
|
|
|
}
|
|
|
|
public function testQuoteList()
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/quotes');
|
|
|
|
$response->assertStatus(200);
|
|
|
|
}
|
|
|
|
public function testQuoteRESTEndPoints()
|
|
{
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id));
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->get('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id).'/edit');
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$quote_update = [
|
|
'status_id' => Quote::STATUS_APPROVED,
|
|
// 'client_id' => $this->encodePrimaryKey($quote->client_id),
|
|
];
|
|
|
|
$this->assertNotNull($this->quote);
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->put('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id), $quote_update);
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->delete('/api/v1/quotes/'.$this->encodePrimaryKey($this->quote->id));
|
|
|
|
$response->assertStatus(200);
|
|
|
|
$client_contact = ClientContact::whereClientId($this->client->id)->first();
|
|
|
|
$data = [
|
|
'client_id' => $this->encodePrimaryKey($this->client->id),
|
|
'date' => "2019-12-14",
|
|
'line_items' => [],
|
|
'invitations' => [
|
|
['client_contact_id' => $this->encodePrimaryKey($client_contact->id)]
|
|
],
|
|
];
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
|
'X-API-TOKEN' => $this->token,
|
|
])->post('/api/v1/quotes', $data);
|
|
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
}
|
|
|
|
|