1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
<?php
class Swift_Transport_Esmtp_AuthHandlerTest extends \SwiftMailerTestCase
{
private $agent;
protected function setUp(): void
{
$this->agent = $this->getMockery('Swift_Transport_SmtpAgent')->shouldIgnoreMissing();
}
public function testKeywordIsAuth()
{
$auth = $this->createHandler([]);
$this->assertEquals('AUTH', $auth->getHandledKeyword());
}
public function testUsernameCanBeSetAndFetched()
{
$auth = $this->createHandler([]);
$auth->setUsername('jack');
$this->assertEquals('jack', $auth->getUsername());
}
public function testPasswordCanBeSetAndFetched()
{
$auth = $this->createHandler([]);
$auth->setPassword('pass');
$this->assertEquals('pass', $auth->getPassword());
}
public function testAuthModeCanBeSetAndFetched()
{
$auth = $this->createHandler([]);
$auth->setAuthMode('PLAIN');
$this->assertEquals('PLAIN', $auth->getAuthMode());
}
public function testMixinMethods()
{
$auth = $this->createHandler([]);
$mixins = $auth->exposeMixinMethods();
$this->assertTrue(\in_array('getUsername', $mixins),
'%s: getUsername() should be accessible via mixin'
);
$this->assertTrue(\in_array('setUsername', $mixins),
'%s: setUsername() should be accessible via mixin'
);
$this->assertTrue(\in_array('getPassword', $mixins),
'%s: getPassword() should be accessible via mixin'
);
$this->assertTrue(\in_array('setPassword', $mixins),
'%s: setPassword() should be accessible via mixin'
);
$this->assertTrue(\in_array('setAuthMode', $mixins),
'%s: setAuthMode() should be accessible via mixin'
);
$this->assertTrue(\in_array('getAuthMode', $mixins),
'%s: getAuthMode() should be accessible via mixin'
);
}
public function testAuthenticatorsAreCalledAccordingToParamsAfterEhlo()
{
$a1 = $this->createMockAuthenticator('PLAIN');
$a2 = $this->createMockAuthenticator('LOGIN');
$a1->shouldReceive('authenticate')
->never()
->with($this->agent, 'jack', 'pass');
$a2->shouldReceive('authenticate')
->once()
->with($this->agent, 'jack', 'pass')
->andReturn(true);
$auth = $this->createHandler([$a1, $a2]);
$auth->setUsername('jack');
$auth->setPassword('pass');
$auth->setKeywordParams(['CRAM-MD5', 'LOGIN']);
$auth->afterEhlo($this->agent);
}
public function testAuthenticatorsAreNotUsedIfNoUsernameSet()
{
$a1 = $this->createMockAuthenticator('PLAIN');
$a2 = $this->createMockAuthenticator('LOGIN');
$a1->shouldReceive('authenticate')
->never()
->with($this->agent, 'jack', 'pass');
$a2->shouldReceive('authenticate')
->never()
->with($this->agent, 'jack', 'pass')
->andReturn(true);
$auth = $this->createHandler([$a1, $a2]);
$auth->setKeywordParams(['CRAM-MD5', 'LOGIN']);
$auth->afterEhlo($this->agent);
}
public function testSeveralAuthenticatorsAreTriedIfNeeded()
{
$a1 = $this->createMockAuthenticator('PLAIN');
$a2 = $this->createMockAuthenticator('LOGIN');
$a1->shouldReceive('authenticate')
->once()
->with($this->agent, 'jack', 'pass')
->andReturn(false);
$a2->shouldReceive('authenticate')
->once()
->with($this->agent, 'jack', 'pass')
->andReturn(true);
$auth = $this->createHandler([$a1, $a2]);
$auth->setUsername('jack');
$auth->setPassword('pass');
$auth->setKeywordParams(['PLAIN', 'LOGIN']);
$auth->afterEhlo($this->agent);
}
public function testFirstAuthenticatorToPassBreaksChain()
{
$a1 = $this->createMockAuthenticator('PLAIN');
$a2 = $this->createMockAuthenticator('LOGIN');
$a3 = $this->createMockAuthenticator('CRAM-MD5');
$a1->shouldReceive('authenticate')
->once()
->with($this->agent, 'jack', 'pass')
->andReturn(false);
$a2->shouldReceive('authenticate')
->once()
->with($this->agent, 'jack', 'pass')
->andReturn(true);
$a3->shouldReceive('authenticate')
->never()
->with($this->agent, 'jack', 'pass');
$auth = $this->createHandler([$a1, $a2]);
$auth->setUsername('jack');
$auth->setPassword('pass');
$auth->setKeywordParams(['PLAIN', 'LOGIN', 'CRAM-MD5']);
$auth->afterEhlo($this->agent);
}
private function createHandler($authenticators)
{
return new Swift_Transport_Esmtp_AuthHandler($authenticators);
}
private function createMockAuthenticator($type)
{
$authenticator = $this->getMockery('Swift_Transport_Esmtp_Authenticator')->shouldIgnoreMissing();
$authenticator->shouldReceive('getAuthKeyword')
->zeroOrMoreTimes()
->andReturn($type);
return $authenticator;
}
}
|