makeTestData(); Session::start(); $this->faker = \Faker\Factory::create(); Model::reguard(); } public function testBankTransactionGetClientStatus() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/bank_transactions?client_status=unmatched'.$this->encodePrimaryKey($this->bank_transaction->id)); $response->assertStatus(200); } public function testBankTransactionGet() { $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->get('/api/v1/bank_transactions/'.$this->encodePrimaryKey($this->bank_transaction->id)); $response->assertStatus(200); } public function testBankTransactionArchived() { $data = [ 'ids' => [$this->encodePrimaryKey($this->bank_transaction->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/bank_transactions/bulk?action=archive', $data); $arr = $response->json(); $this->assertNotNull($arr['data'][0]['archived_at']); } public function testBankTransactionRestored() { $data = [ 'ids' => [$this->encodePrimaryKey($this->bank_transaction->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/bank_transactions/bulk?action=restore', $data); $arr = $response->json(); $this->assertEquals(0, $arr['data'][0]['archived_at']); } public function testBankTransactionDeleted() { $data = [ 'ids' => [$this->encodePrimaryKey($this->bank_transaction->id)], ]; $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->token, ])->post('/api/v1/bank_transactions/bulk?action=delete', $data); $arr = $response->json(); $this->assertTrue($arr['data'][0]['is_deleted']); } }