makeTestData(); Session::start(); $this->faker = \Faker\Factory::create(); Model::reguard(); } public function testTaxRatesGetFilter() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/tax_rates?filter=gst'); $response->assertStatus(200); } public function testTaxRatePost() { $rate_name = $this->faker->firstName(); $data = [ 'name' => $rate_name, 'rate' => 10, ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/tax_rates', $data); $arr = $response->json(); $response->assertStatus(200); $this->assertEquals($rate_name, $arr['data']['name']); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->put('/api/v1/tax_rates/'.$arr['data']['id'], $data); $response->assertStatus(200); try { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/tax_rates', $data); $arr = $response->json(); } catch (ValidationException $e) { $response->assertStatus(302); } $this->assertNotEmpty($arr['data']['name']); } public function testTaxRatePostWithActionStart() { $data = [ 'name' => $this->faker->firstName(), 'rate' => rand(1, 20), ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/tax_rates', $data); $arr = $response->json(); $response->assertStatus(200); } public function testTaxRatePut() { $data = [ 'name' => $this->faker->firstName(), ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->put('/api/v1/tax_rates/'.$this->encodePrimaryKey($this->tax_rate->id), $data); $response->assertStatus(200); } public function testTaxRatesGet() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/tax_rates'); $response->assertStatus(200); } public function testTaxRateGet() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/tax_rates/'.$this->encodePrimaryKey($this->tax_rate->id)); $response->assertStatus(200); } public function testTaxRateNotArchived() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/tax_rates/'.$this->encodePrimaryKey($this->tax_rate->id)); $arr = $response->json(); $this->assertEquals(0, $arr['data']['archived_at']); } public function testTaxRateArchived() { $data = [ 'ids' => [$this->encodePrimaryKey($this->tax_rate->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/tax_rates/bulk?action=archive', $data); $arr = $response->json(); $this->assertNotNull($arr['data'][0]['archived_at']); } public function testTaxRateRestored() { $data = [ 'ids' => [$this->encodePrimaryKey($this->tax_rate->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/tax_rates/bulk?action=restore', $data); $arr = $response->json(); $this->assertEquals(0, $arr['data'][0]['archived_at']); } public function testTaxRateDeleted() { $data = [ 'ids' => [$this->encodePrimaryKey($this->tax_rate->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/tax_rates/bulk?action=delete', $data); $arr = $response->json(); $this->assertTrue($arr['data'][0]['is_deleted']); } }