89 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\EndToEnd\Maildispatcher;
 | |
| 
 | |
| use App\Maildispatcher\Actions\ResyncAction;
 | |
| use App\Maildispatcher\Models\Maildispatcher;
 | |
| use Modules\Mailgateway\Models\Mailgateway;
 | |
| use Modules\Mailgateway\Types\LocalType;
 | |
| use App\Member\FilterScope;
 | |
| use App\Member\Member;
 | |
| use Tests\EndToEndTestCase;
 | |
| 
 | |
| class UpdateTest extends EndToEndTestCase
 | |
| {
 | |
|     public function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->login()->loginNami();
 | |
|     }
 | |
| 
 | |
|     public function testItCanUpdateFilters(): void
 | |
|     {
 | |
|         $this->withoutExceptionHandling();
 | |
|         $dispatcher = Maildispatcher::factory()
 | |
|             ->for(Mailgateway::factory()->type(LocalType::class, [])->domain('example.com'), 'gateway')
 | |
|             ->filter(FilterScope::from([]))
 | |
|             ->create();
 | |
|         Member::factory()->defaults()->create(['email' => 'to@example.com']);
 | |
| 
 | |
|         sleep(1);
 | |
|         $this->patchJson("/maildispatcher/{$dispatcher->id}", [
 | |
|             'name' => 'test',
 | |
|             'gateway_id' => $dispatcher->gateway->id,
 | |
|             'filter' => [],
 | |
|         ]);
 | |
| 
 | |
|         $this->assertDatabaseHas('localmaildispatchers', [
 | |
|             'from' => 'test@example.com',
 | |
|             'to' => 'to@example.com',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function testItUpdatesCurrentMails(): void
 | |
|     {
 | |
|         $dispatcher = Maildispatcher::factory()
 | |
|             ->for(Mailgateway::factory()->type(LocalType::class, [])->domain('example.com'), 'gateway')
 | |
|             ->filter(FilterScope::from([]))
 | |
|             ->create();
 | |
|         Member::factory()->defaults()->create(['email' => 'to@example.com']);
 | |
|         ResyncAction::run();
 | |
| 
 | |
|         sleep(1);
 | |
|         $response = $this->patchJson("/maildispatcher/{$dispatcher->id}", [
 | |
|             'name' => 'testa',
 | |
|             'gateway_id' => $dispatcher->gateway->id,
 | |
|             'filter' => [],
 | |
|         ]);
 | |
| 
 | |
|         $this->assertDatabaseMissing('localmaildispatchers', [
 | |
|             'from' => 'test@example.com',
 | |
|         ]);
 | |
|         $this->assertDatabaseHas('localmaildispatchers', [
 | |
|             'from' => 'testa@example.com',
 | |
|             'to' => 'to@example.com',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function testItDeletesOldEmailAddresses(): void
 | |
|     {
 | |
|         $dispatcher = Maildispatcher::factory()
 | |
|             ->for(Mailgateway::factory()->type(LocalType::class, [])->domain('example.com'), 'gateway')
 | |
|             ->filter(FilterScope::from([]))
 | |
|             ->create();
 | |
|         $member = Member::factory()->defaults()->create(['email' => 'to@example.com']);
 | |
|         sleep(1);
 | |
|         ResyncAction::run();
 | |
|         $member->update(['email' => 'to2@example.com']);
 | |
|         ResyncAction::run();
 | |
| 
 | |
|         $this->assertDatabaseMissing('localmaildispatchers', [
 | |
|             'to' => 'to@example.com',
 | |
|         ]);
 | |
|         $this->assertDatabaseHas('localmaildispatchers', [
 | |
|             'to' => 'to2@example.com',
 | |
|         ]);
 | |
|     }
 | |
| }
 |