whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
tests
/
Feature
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/tests/Feature/ExpenseCategoryApiTest.php
<?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 App\Utils\Traits\MakesHash; use Illuminate\Database\Eloquent\Model; use Illuminate\Foundation\Testing\DatabaseTransactions; use Illuminate\Support\Facades\Session; use Tests\MockAccountData; use Tests\TestCase; /** * * App\Http\Controllers\ExpenseCategoryController */ class ExpenseCategoryApiTest extends TestCase { use MakesHash; use DatabaseTransactions; use MockAccountData; protected function setUp(): void { parent::setUp(); $this->makeTestData(); Session::start(); $this->faker = \Faker\Factory::create(); Model::reguard(); } public function testExpenseCategoryPost() { $data = [ 'name' => $this->faker->firstName(), ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/expense_categories', $data); $response->assertStatus(200); } public function testExpenseCategoryPut() { $data = [ 'name' => $this->faker->firstName(), ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->put('/api/v1/expense_categories/'.$this->encodePrimaryKey($this->expense_category->id), $data); $response->assertStatus(200); } public function testExpenseCategoryGet() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/expense_categories/'.$this->encodePrimaryKey($this->expense_category->id)); $response->assertStatus(200); } public function testExpenseCategoryNotArchived() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/expense_categories/'.$this->encodePrimaryKey($this->expense_category->id)); $arr = $response->json(); $this->assertEquals(0, $arr['data']['archived_at']); } public function testExpenseCategoryArchived() { $data = [ 'ids' => [$this->encodePrimaryKey($this->expense_category->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/expense_categories/bulk?action=archive', $data); $arr = $response->json(); $this->assertNotNull($arr['data'][0]['archived_at']); } public function testExpenseCategoryRestored() { $data = [ 'ids' => [$this->encodePrimaryKey($this->expense_category->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/expense_categories/bulk?action=restore', $data); $arr = $response->json(); $this->assertEquals(0, $arr['data'][0]['archived_at']); } public function testExpenseCategoryDeleted() { $data = [ 'ids' => [$this->encodePrimaryKey($this->expense_category->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/expense_categories/bulk?action=delete', $data); $arr = $response->json(); $this->assertTrue($arr['data'][0]['is_deleted']); } }
Copyright ©2021 || Defacer Indonesia