2020-08-05 04:21:26 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-08-05 04:21:26 +02:00
|
|
|
namespace Tests\Unit\Shop;
|
|
|
|
|
|
|
|
use App\Factory\InvoiceFactory;
|
|
|
|
use App\Factory\InvoiceItemFactory;
|
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
use Tests\MockAccountData;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers \App\Http\Controllers\Shop\ProfileController
|
|
|
|
*/
|
|
|
|
class ShopProfileTest extends TestCase
|
|
|
|
{
|
|
|
|
use MockAccountData;
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-08-05 04:21:26 +02:00
|
|
|
$this->makeTestData();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testProfileDisplays()
|
|
|
|
{
|
|
|
|
$this->company->enable_shop_api = true;
|
|
|
|
$this->company->save();
|
|
|
|
|
|
|
|
$response = $this->withHeaders([
|
|
|
|
'X-API-SECRET' => config('ninja.api_secret'),
|
2020-09-06 11:38:10 +02:00
|
|
|
'X-API-COMPANY-KEY' => $this->company->company_key,
|
2020-08-05 04:21:26 +02:00
|
|
|
])->get('/api/v1/shop/profile');
|
|
|
|
|
|
|
|
$response->assertStatus(200);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-08-05 04:21:26 +02:00
|
|
|
$arr = $response->json();
|
|
|
|
|
|
|
|
$this->assertArrayHasKey('custom_value1', $arr['data']['settings']);
|
|
|
|
$this->assertEquals($this->company->company_key, $arr['data']['company_key']);
|
|
|
|
}
|
|
|
|
}
|