faker = \Faker\Factory::create(); Model::reguard(); $this->withoutMiddleware( ThrottleRequests::class ); $this->makeTestData(); } public function testRecurringQuoteList() { RecurringQuote::factory()->create(['user_id' => $this->user->id, 'company_id' => $this->company->id, 'client_id' => $this->client->id]); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/recurring_quotes'); $response->assertStatus(200); } public function testRecurringQuoteRESTEndPoints() { RecurringQuote::factory()->create(['user_id' => $this->user->id, 'company_id' => $this->company->id, 'client_id' => $this->client->id]); $RecurringQuote = RecurringQuote::where('user_id', $this->user->id)->first(); $RecurringQuote->save(); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/recurring_quotes/'.$this->encodePrimaryKey($RecurringQuote->id)); $response->assertStatus(200); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/recurring_quotes/'.$this->encodePrimaryKey($RecurringQuote->id).'/edit'); $response->assertStatus(200); $RecurringQuote_update = [ 'status_id' => RecurringQuote::STATUS_DRAFT, 'client_id' => $RecurringQuote->client_id, ]; $this->assertNotNull($RecurringQuote); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->put('/api/v1/recurring_quotes/'.$this->encodePrimaryKey($RecurringQuote->id), $RecurringQuote_update) ->assertStatus(200); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->delete('/api/v1/recurring_quotes/'.$this->encodePrimaryKey($RecurringQuote->id)); $response->assertStatus(200); } }