initial commit
This commit is contained in:
		
							
								
								
									
										55
									
								
								tests/Feature/InviteTeamMemberTest.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								tests/Feature/InviteTeamMemberTest.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,55 @@ | ||||
| <?php | ||||
| 
 | ||||
| namespace Tests\Feature; | ||||
| 
 | ||||
| use App\Models\User; | ||||
| use Illuminate\Foundation\Testing\RefreshDatabase; | ||||
| use Illuminate\Support\Facades\Mail; | ||||
| use Laravel\Jetstream\Features; | ||||
| use Laravel\Jetstream\Mail\TeamInvitation; | ||||
| use Tests\TestCase; | ||||
| 
 | ||||
| class InviteTeamMemberTest extends TestCase | ||||
| { | ||||
|     use RefreshDatabase; | ||||
| 
 | ||||
|     public function test_team_members_can_be_invited_to_team() | ||||
|     { | ||||
|         if (! Features::sendsTeamInvitations()) { | ||||
|             return $this->markTestSkipped('Team invitations not enabled.'); | ||||
|         } | ||||
| 
 | ||||
|         Mail::fake(); | ||||
| 
 | ||||
|         $this->actingAs($user = User::factory()->withPersonalTeam()->create()); | ||||
| 
 | ||||
|         $response = $this->post('/teams/'.$user->currentTeam->id.'/members', [ | ||||
|             'email' => 'test@example.com', | ||||
|             'role' => 'admin', | ||||
|         ]); | ||||
| 
 | ||||
|         Mail::assertSent(TeamInvitation::class); | ||||
| 
 | ||||
|         $this->assertCount(1, $user->currentTeam->fresh()->teamInvitations); | ||||
|     } | ||||
| 
 | ||||
|     public function test_team_member_invitations_can_be_cancelled() | ||||
|     { | ||||
|         if (! Features::sendsTeamInvitations()) { | ||||
|             return $this->markTestSkipped('Team invitations not enabled.'); | ||||
|         } | ||||
| 
 | ||||
|         Mail::fake(); | ||||
| 
 | ||||
|         $this->actingAs($user = User::factory()->withPersonalTeam()->create()); | ||||
| 
 | ||||
|         $invitation = $user->currentTeam->teamInvitations()->create([ | ||||
|             'email' => 'test@example.com', | ||||
|             'role' => 'admin', | ||||
|         ]); | ||||
| 
 | ||||
|         $response = $this->delete('/team-invitations/'.$invitation->id); | ||||
| 
 | ||||
|         $this->assertCount(0, $user->currentTeam->fresh()->teamInvitations); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user