signIn(); $contact = factory(Contact::class)->create([ 'account_id' => $user->account_id, ]); return [$user, $contact]; } public function test_user_sees_empty_state_when_no_activities_are_available() { list($user, $contact) = $this->fetchUser(); $response = $this->get('/people/'.$contact->id); $response->assertStatus(200); // is the default blank state present? $response->assertSee( 'Add an activity' ); // is the button to add a note present? $response->assertSee('Add activity'); } public function test_user_sees_add_activity_screen() { list($user, $contact) = $this->fetchUser(); $response = $this->get('/people/'.$contact->id.'/activities/add'); $response->assertStatus(200); $response->assertSee( 'What did you do with John?' ); } public function test_user_can_add_an_activity() { list($user, $contact) = $this->fetchUser(); $activityTitle = 'This is the title'; $activityDate = \Carbon\Carbon::now(); $params = [ 'summary' => $activityTitle, 'date_it_happened' => $activityDate, ]; $response = $this->post('/people/'.$contact->id.'/activities/store', $params); $response->assertRedirect('/people/'.$contact->id); // Assert the note has been added for the correct user. $params['account_id'] = $user->account_id; $params['contact_id'] = $contact->id; $params['summary'] = $activityTitle; $params['date_it_happened'] = $activityDate; $this->assertDatabaseHas('activities', $params); // Check that the Contact view contains the newly created note $response = $this->get('people/'.$contact->id); $response->assertSee($activityTitle); // Make sure an event has been created for this action $eventParams['account_id'] = $user->account_id; $eventParams['contact_id'] = $contact->id; $eventParams['object_type'] = 'activity'; $eventParams['nature_of_operation'] = 'create'; $this->assertDatabaseHas('events', $eventParams); // Visit the dashboard and checks that the note event appears on the // dashboard $response = $this->get('/dashboard'); $response->assertSee('An activity about John Doe has been added'); $response->assertSee('id.'" id="activity_update_'.$activity->id.'">'); } public function test_user_can_delete_an_activity() { list($user, $contact) = $this->fetchUser(); $activity = factory(\App\Activity::class)->create([ 'contact_id' => $contact->id, 'account_id' => $user->account_id, 'summary' => 'This is the title', 'date_it_happened' => \Carbon\Carbon::now(), ]); $response = $this->get('/people/'.$contact->id); // make sure the link to delete the note is on the page $response->assertSee( 'people/'.$contact->id.'/activities/'.$activity->id.'/delete' ); $response = $this->get('/people/'.$contact->id.'/activities/'.$activity->id.'/delete'); $response->assertStatus(302); $params['id'] = $activity->id; $this->assertDatabaseMissing('activities', $params); // make sure an event has been created for this action $eventParams['account_id'] = $user->account_id; $eventParams['contact_id'] = $contact->id; $eventParams['object_id'] = $activity->id; $this->assertDatabaseMissing('events', $eventParams); } }