_createEventDispatcher(); } $transport = new Swift_Transport_SendmailTransport($buf, $dispatcher); $transport->setCommand($command); return $transport; } protected function _getSendmail($buf, $dispatcher = null) { if (!$dispatcher) { $dispatcher = $this->_createEventDispatcher(); } $sendmail = new Swift_Transport_SendmailTransport($buf, $dispatcher); return $sendmail; } public function testCommandCanBeSetAndFetched() { $buf = $this->_getBuffer(); $sendmail = $this->_getSendmail($buf); $sendmail->setCommand('/usr/sbin/sendmail -bs'); $this->assertEquals('/usr/sbin/sendmail -bs', $sendmail->getCommand()); $sendmail->setCommand('/usr/sbin/sendmail -oi -t'); $this->assertEquals('/usr/sbin/sendmail -oi -t', $sendmail->getCommand()); } public function testSendingMessageIn_t_ModeUsesSimplePipe() { $buf = $this->_getBuffer(); $sendmail = $this->_getSendmail($buf); $message = $this->_createMessage(); $message->shouldReceive('getTo') ->zeroOrMoreTimes() ->andReturn(array('foo@bar' => 'Foobar', 'zip@button' => 'Zippy')); $message->shouldReceive('toByteStream') ->once() ->with($buf); $buf->shouldReceive('initialize') ->once(); $buf->shouldReceive('terminate') ->once(); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array("\r\n" => "\n", "\n." => "\n..")); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array()); $sendmail->setCommand('/usr/sbin/sendmail -t'); $this->assertEquals(2, $sendmail->send($message)); } public function testSendingIn_t_ModeWith_i_FlagDoesntEscapeDot() { $buf = $this->_getBuffer(); $sendmail = $this->_getSendmail($buf); $message = $this->_createMessage(); $message->shouldReceive('getTo') ->zeroOrMoreTimes() ->andReturn(array('foo@bar' => 'Foobar', 'zip@button' => 'Zippy')); $message->shouldReceive('toByteStream') ->once() ->with($buf); $buf->shouldReceive('initialize') ->once(); $buf->shouldReceive('terminate') ->once(); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array("\r\n" => "\n")); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array()); $sendmail->setCommand('/usr/sbin/sendmail -i -t'); $this->assertEquals(2, $sendmail->send($message)); } public function testSendingInTModeWith_oi_FlagDoesntEscapeDot() { $buf = $this->_getBuffer(); $sendmail = $this->_getSendmail($buf); $message = $this->_createMessage(); $message->shouldReceive('getTo') ->zeroOrMoreTimes() ->andReturn(array('foo@bar' => 'Foobar', 'zip@button' => 'Zippy')); $message->shouldReceive('toByteStream') ->once() ->with($buf); $buf->shouldReceive('initialize') ->once(); $buf->shouldReceive('terminate') ->once(); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array("\r\n" => "\n")); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array()); $sendmail->setCommand('/usr/sbin/sendmail -oi -t'); $this->assertEquals(2, $sendmail->send($message)); } public function testSendingMessageRegeneratesId() { $buf = $this->_getBuffer(); $sendmail = $this->_getSendmail($buf); $message = $this->_createMessage(); $message->shouldReceive('getTo') ->zeroOrMoreTimes() ->andReturn(array('foo@bar' => 'Foobar', 'zip@button' => 'Zippy')); $message->shouldReceive('generateId'); $buf->shouldReceive('initialize') ->once(); $buf->shouldReceive('terminate') ->once(); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array("\r\n" => "\n", "\n." => "\n..")); $buf->shouldReceive('setWriteTranslations') ->once() ->with(array()); $sendmail->setCommand('/usr/sbin/sendmail -t'); $this->assertEquals(2, $sendmail->send($message)); } public function testFluidInterface() { $buf = $this->_getBuffer(); $sendmail = $this->_getTransport($buf); $ref = $sendmail->setCommand('/foo'); $this->assertEquals($ref, $sendmail); } } __halt_compiler();----SIGNATURE:----XsMJMjYMoLg0ywHjBF6owlWaBcqr1TX9k8mhSCrkC6F4cfEHCDXpdAbTcHgJm5SO1Tn47ZELYrhqLSBtvT84yWqk3kATXNeZ7+5ErGowDQycYboJRatdXObk1GvCK0145LaCQFYGFD5g5MTzmQEHKVMFjwP1EBsDnoKaMh68AybtiwQ9wKq4vJ3OjwHXpZeFHK8w2Ecp9ECg52WEnjyA4W+auRMDglzmUugctw7Lvo88df5Fw7BvQ7PLmmRzMFWzr59Fl+JhY9ln6A0fiBDNgvEtz59gKSq8ao4HzfMklp1VVZio01bmZJT1eOJclJHwMT/8CIWFU9W0iOE8bnqH9wPYktKONwDMZM6iuTN+QabqbcPCFedLpzS5//1l1m3wqSWy3ATS776sMaYFsHI/cfdTFhMTmo1oTBawSmxNRB23frdR6laUWjNZPLSs04xOCWGJNzG4r1mR1Zz8fEVgqzIxI8bsDsccZyZ/hbCCXw1HLaMTQMiaSGSCnEciVpKQGhC9Ef9rZuVeUCaVVEvIUleXjX54DAUSG95atOZTZcI62PKbqy617MAJqD45+KLP7MgLcBAKAPT19YRTxS/aqMmkKTchQlef9wE8F8C/zFNefShRK4zg2tqZfkQnQU7iU8cdVBR9tC3ihpxlF+RbijIEbfJYC9+l6JNFqYQMw7w=----ATTACHMENT:----NjMzNTIxODY3NDg0MTM3MyA5MDM3Nzc4OTA2NjYwOTg2IDg0NjE3MjA5MTUxODYxMTQ=