prepareDatabase([ 'groups' => [ $this->hiddenGroup(), ], ]); } /** * @test */ public function shows_limited_index_for_guest() { $response = $this->send( $this->request('GET', '/api/groups') ); $this->assertEquals(200, $response->getStatusCode()); $data = json_decode($response->getBody()->getContents(), true); // The four default groups created by the installer $this->assertEquals(['1', '2', '3', '4'], Arr::pluck($data['data'], 'id')); } /** * @test */ public function shows_index_for_admin() { $response = $this->send( $this->request('GET', '/api/groups', [ 'authenticatedAs' => 1, ]) ); $this->assertEquals(200, $response->getStatusCode()); $data = json_decode($response->getBody()->getContents(), true); // The four default groups created by the installer and our hidden group $this->assertEquals(['1', '2', '3', '4', '10'], Arr::pluck($data['data'], 'id')); } protected function hiddenGroup(): array { return [ 'id' => 10, 'name_singular' => 'Hidden', 'name_plural' => 'Ninjas', 'color' => null, 'icon' => 'fas fa-wrench', 'is_hidden' => 1 ]; } }