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']); } }