1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/tests/Feature/LiveDesignTest.php

82 lines
1.9 KiB
PHP
Raw Normal View History

2023-01-27 12:04:02 +01: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)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace Tests\Feature;
use Tests\TestCase;
use App\Models\Design;
use Tests\MockAccountData;
use Illuminate\Routing\Middleware\ThrottleRequests;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2023-01-27 12:04:02 +01:00
/**
* @test
* @covers App\Http\Controllers\PreviewController
*/
class LiveDesignTest extends TestCase
{
use DatabaseTransactions;
use MockAccountData;
protected function setUp() :void
{
parent::setUp();
$this->makeTestData();
$this->withoutMiddleware(
ThrottleRequests::class
);
2023-01-27 12:10:55 +01:00
if (config('ninja.testvars.travis') !== false) {
$this->markTestSkipped('Skip test for Travis');
}
2023-01-27 12:04:02 +01:00
}
public function testDesignRoute200()
{
2023-02-16 02:36:09 +01:00
$data = [
2023-02-22 20:42:09 +01:00
'entity_type' => 'invoice',
2023-02-16 02:36:09 +01:00
'settings_type' => 'company',
'settings' => (array)$this->company->settings,
];
2023-01-27 12:04:02 +01:00
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/live_design/', $data);
$response->assertStatus(200);
}
public function testDesignWithCustomDesign()
{
$d = Design::find(1);
$data = [
'entity_type' => 'invoice',
'settings_type' => 'company',
'settings' => (array)$this->company->settings,
'design' => (array)$d->design,
];
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post('/api/v1/live_design/', $data);
$response->assertStatus(200);
}
2023-01-27 12:04:02 +01:00
}