faker = \Faker\Factory::create(); Model::reguard(); $this->withoutMiddleware( ThrottleRequests::class ); $this->makeTestData(); $this->withoutExceptionHandling(); } public function testSetTaxId() { $p = Product::factory()->create([ 'user_id' => $this->user->id, 'company_id' => $this->company->id ]); $this->assertEquals(1, $p->tax_id); $update = [ 'ids' => [$p->hashed_id], 'action' => 'set_tax_id', 'tax_id' => 6, ]; $response = false; try { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/products/bulk', $update) ->assertStatus(200); } catch(\Exception $e){ } $p = $p->fresh(); $this->assertEquals(6, $p->tax_id); } public function testProductGetProductKeyFilter() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/products?product_key=xx') ->assertStatus(200); } public function testProductList() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/products'); $response->assertStatus(200); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post( '/api/v1/products/', [ 'product_key' => 'a-new-product-key', 'notes' => 'Product Notes', 'cost' => 10, 'qty' => 10, 'tax_name1' => 'GST', 'tax_rate1' => 10, 'tax_name2' => 'VAT', 'tax_rate2' => 17.5, 'custom_value1' => 'custom', 'custom_value2' => 'custom', 'custom_value3' => 'custom', 'custom_value4' => 'custom', 'is_deleted' => 0, ] ) ->assertStatus(200); $arr = $response->json(); $product = Product::find($this->decodePrimaryKey($arr['data']['id'])); $product_update = [ 'notes' => 'CHANGE', ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->put('/api/v1/products/'.$this->encodePrimaryKey($product->id), $product_update) ->assertStatus(200); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->delete('/api/v1/products/'.$this->encodePrimaryKey($product->id)) ->assertStatus(200); } }