97 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Mailgateway;
 | |
| 
 | |
| use App\Mailgateway\Types\LocalType;
 | |
| use App\Mailgateway\Types\MailmanType;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Phake;
 | |
| use Tests\RequestFactories\MailgatewayRequestFactory;
 | |
| use Tests\RequestFactories\MailmanTypeRequest;
 | |
| use Tests\TestCase;
 | |
| 
 | |
| class StoreTest extends TestCase
 | |
| {
 | |
|     use DatabaseTransactions;
 | |
| 
 | |
|     public function setUp(): void
 | |
|     {
 | |
|         parent::setUp();
 | |
| 
 | |
|         $this->login()->loginNami();
 | |
|     }
 | |
| 
 | |
|     public function testItCanStoreALocalGateway(): void
 | |
|     {
 | |
|         $response = $this->postJson('/api/mailgateway', MailgatewayRequestFactory::new()->name('lala')->type(LocalType::class, [])->domain('example.com')->create());
 | |
| 
 | |
|         $response->assertOk();
 | |
| 
 | |
|         $this->assertDatabaseHas('mailgateways', [
 | |
|             'domain' => 'example.com',
 | |
|             'name' => 'lala',
 | |
|             'type' => json_encode([
 | |
|                 'cls' => LocalType::class,
 | |
|                 'params' => [],
 | |
|             ]),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function testItCanStoreAMailmanGateway(): void
 | |
|     {
 | |
|         $typeParams = ['url' => 'https://example.com', 'user' => 'user', 'password' => 'secret', 'owner' => 'owner@example.com'];
 | |
|         $this->stubIo(MailmanType::class, function ($mock) use ($typeParams) {
 | |
|             Phake::when($mock)->setParams($typeParams)->thenReturn($mock);
 | |
|             Phake::when($mock)->works()->thenReturn(true);
 | |
|             Phake::when($mock)->setOwner('owner@example.com')->thenReturn($mock);
 | |
|         });
 | |
|         $this->postJson('/api/mailgateway', MailgatewayRequestFactory::new()->type(MailmanType::class, MailmanTypeRequest::new()->create($typeParams))->create());
 | |
| 
 | |
|         $this->assertDatabaseHas('mailgateways', [
 | |
|             'type' => json_encode([
 | |
|                 'cls' => MailmanType::class,
 | |
|                 'params' => $typeParams,
 | |
|             ]),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function testItThrowsErrorWhenMailmanConnectionFailed(): void
 | |
|     {
 | |
|         $typeParams = ['url' => 'https://example.com', 'user' => 'user', 'password' => 'secret', 'owner' => 'owner@example.com'];
 | |
|         $this->stubIo(MailmanType::class, function ($mock) use ($typeParams) {
 | |
|             Phake::when($mock)->setParams($typeParams)->thenReturn($mock);
 | |
|             Phake::when($mock)->works()->thenReturn(false);
 | |
|             Phake::when($mock)->setOwner('owner@example.com')->thenReturn($mock);
 | |
|         });
 | |
|         $this->postJson('/api/mailgateway', MailgatewayRequestFactory::new()->type(MailmanType::class, MailmanTypeRequest::new()->create($typeParams))->create())
 | |
|              ->assertJsonValidationErrors('connection');
 | |
|     }
 | |
| 
 | |
|     public function testItValidatesCustomFields(): void
 | |
|     {
 | |
|         $typeParams = ['url' => 'https://example.com', 'user' => '', 'password' => 'secret', 'owner' => 'aaaa'];
 | |
|         $this->stubIo(MailmanType::class, function ($mock) use ($typeParams) {
 | |
|             Phake::when($mock)->setParams($typeParams)->thenReturn($mock);
 | |
|             Phake::when($mock)->works()->thenReturn(false);
 | |
|         });
 | |
|         $this->postJson('/api/mailgateway', MailgatewayRequestFactory::new()->type(MailmanType::class, MailmanTypeRequest::new()->create($typeParams))->create())
 | |
|              ->assertJsonValidationErrors([
 | |
|                  'type.params.user' => 'Benutzer ist erforderlich.',
 | |
|                  'type.params.owner' => 'E-Mail-Adresse des Eigentümers muss eine gültige E-Mail-Adresse sein.',
 | |
|              ]);
 | |
|     }
 | |
| 
 | |
|     public function testItValidatesType(): void
 | |
|     {
 | |
|         $this->postJson('/api/mailgateway', MailgatewayRequestFactory::new()->missingType()->create())
 | |
|             ->assertJsonValidationErrors('type.cls');
 | |
|     }
 | |
| 
 | |
|     public function testItValidatesNameAndDomain(): void
 | |
|     {
 | |
|         $this->postJson('/api/mailgateway', MailgatewayRequestFactory::new()->withoutName()->withoutDomain()->create())
 | |
|             ->assertJsonValidationErrors('domain')
 | |
|             ->assertJsonValidationErrors('name');
 | |
|     }
 | |
| }
 |