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

299 lines
8.0 KiB
PHP
Raw Normal View History

2020-09-23 02:16:19 +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-09-23 02:16:19 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-23 02:16:19 +02:00
*/
2020-09-23 02:16:19 +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:28:39 +01:00
use Illuminate\Validation\ValidationException;
2020-09-23 02:16:19 +02:00
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
* @covers App\Http\Controllers\VendorController
*/
class VendorApiTest extends TestCase
{
use MakesHash;
use DatabaseTransactions;
use MockAccountData;
protected function setUp() :void
2020-09-23 02:16:19 +02:00
{
parent::setUp();
$this->makeTestData();
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
}
public function testAddVendorToInvoice()
{
$data = [
'name' => $this->faker->firstName(),
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors', $data);
$response->assertStatus(200);
$arr = $response->json();
$vendor_id = $arr['data']['id'];
$data = [
'vendor_id' => $vendor_id,
'client_id' => $this->client->hashed_id,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/invoices', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['vendor_id'], $vendor_id);
}
public function testAddVendorToRecurringInvoice()
{
$data = [
'name' => $this->faker->firstName(),
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors', $data);
$response->assertStatus(200);
$arr = $response->json();
$vendor_id = $arr['data']['id'];
$data = [
'vendor_id' => $vendor_id,
'client_id' => $this->client->hashed_id,
'frequency_id' => 1,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/recurring_invoices', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['vendor_id'], $vendor_id);
}
public function testAddVendorToQuote()
{
$data = [
'name' => $this->faker->firstName(),
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors', $data);
$response->assertStatus(200);
$arr = $response->json();
$vendor_id = $arr['data']['id'];
$data = [
'vendor_id' => $vendor_id,
'client_id' => $this->client->hashed_id,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/quotes', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['vendor_id'], $vendor_id);
}
public function testAddVendorToCredit()
{
$data = [
'name' => $this->faker->firstName(),
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors', $data);
$response->assertStatus(200);
$arr = $response->json();
$vendor_id = $arr['data']['id'];
$data = [
'vendor_id' => $vendor_id,
'client_id' => $this->client->hashed_id,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/credits', $data);
$response->assertStatus(200);
$arr = $response->json();
$this->assertEquals($arr['data']['vendor_id'], $vendor_id);
}
2020-09-23 02:16:19 +02:00
public function testVendorPost()
{
$data = [
'name' => $this->faker->firstName(),
2020-09-23 02:16:19 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors', $data);
2020-09-23 02:16:19 +02:00
$response->assertStatus(200);
}
public function testVendorPut()
{
$data = [
'name' => $this->faker->firstName(),
2020-09-23 02:16:19 +02:00
'id_number' => 'Coolio',
'number' => 'wiggles',
2020-09-23 02:16:19 +02:00
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/vendors/'.$this->encodePrimaryKey($this->vendor->id), $data);
2020-09-23 02:16:19 +02:00
$response->assertStatus(200);
2021-03-20 01:28:39 +01:00
$arr = $response->json();
$this->assertEquals('Coolio', $arr['data']['id_number']);
$this->assertEquals('wiggles', $arr['data']['number']);
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->put('/api/v1/vendors/'.$this->encodePrimaryKey($this->vendor->id), $data);
2021-03-20 01:28:39 +01:00
$response->assertStatus(200);
try {
2021-03-20 01:28:39 +01:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors/', $data);
} catch (ValidationException $e) {
2021-03-20 01:28:39 +01:00
$response->assertStatus(302);
}
2020-09-23 02:16:19 +02:00
}
public function testVendorGet()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/vendors/'.$this->encodePrimaryKey($this->vendor->id));
2020-09-23 02:16:19 +02:00
$response->assertStatus(200);
}
public function testVendorNotArchived()
{
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->get('/api/v1/vendors/'.$this->encodePrimaryKey($this->vendor->id));
2020-09-23 02:16:19 +02:00
$arr = $response->json();
$this->assertEquals(0, $arr['data']['archived_at']);
}
public function testVendorArchived()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->vendor->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors/bulk?action=archive', $data);
2020-09-23 02:16:19 +02:00
$arr = $response->json();
$this->assertNotNull($arr['data'][0]['archived_at']);
}
public function testVendorRestored()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->vendor->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors/bulk?action=restore', $data);
2020-09-23 02:16:19 +02:00
$arr = $response->json();
$this->assertEquals(0, $arr['data'][0]['archived_at']);
}
public function testVendorDeleted()
{
$data = [
'ids' => [$this->encodePrimaryKey($this->vendor->id)],
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/vendors/bulk?action=delete', $data);
2020-09-23 02:16:19 +02:00
$arr = $response->json();
$this->assertTrue($arr['data'][0]['is_deleted']);
}
}