mirror of
https://git.d3data.de/3rdParty/captcha-module.git
synced 2024-11-01 12:54:37 +01:00
151 lines
5.5 KiB
PHP
151 lines
5.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
|
||
|
*/
|
||
|
|
||
|
require_once __DIR__ . '/../CaptchaTestCase.php';
|
||
|
|
||
|
/**
|
||
|
* Testing details class
|
||
|
*/
|
||
|
class Unit_contactTest extends CaptchaTestCase
|
||
|
{
|
||
|
/**
|
||
|
* Test if send mail is not executed if CAPTCHA image is not entered
|
||
|
* and warning message is displayed
|
||
|
*/
|
||
|
public function testSaveWithoutCaptcha()
|
||
|
{
|
||
|
oxRegistry::getSession()->deleteVariable('Errors');
|
||
|
|
||
|
$params['oxuser__oxusername'] = 'aaaa@aaa.com';
|
||
|
$this->setRequestParameter('editval', $params);
|
||
|
$contact = oxNew('Contact');
|
||
|
|
||
|
$this->assertFalse($contact->send());
|
||
|
|
||
|
//checking if warning was added to errors list
|
||
|
$message = oxRegistry::getLang()->translateString('MESSAGE_WRONG_VERIFICATION_CODE');
|
||
|
$errors = oxRegistry::getSession()->getVariable('Errors');
|
||
|
$error = unserialize($errors['default'][0]);
|
||
|
|
||
|
$this->assertEquals($message, $error->getOxMessage());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test if send mail is not executed if user data is not entered
|
||
|
* and warning message is displayed
|
||
|
*/
|
||
|
public function testSaveWithoutUserData()
|
||
|
{
|
||
|
oxRegistry::getSession()->deleteVariable('Errors');
|
||
|
oxTestModules::addFunction('oeCaptcha', 'pass', '{return true;}');
|
||
|
|
||
|
$params['oxuser__oxusername'] = 'aaaa@aaa.com';
|
||
|
$this->setRequestParameter('editval', $params);
|
||
|
$contact = oxNew('Contact');
|
||
|
|
||
|
$this->assertFalse($contact->send());
|
||
|
|
||
|
//checking if warning was added to errors list
|
||
|
$message = oxRegistry::getLang()->translateString('ERROR_MESSAGE_INPUT_NOTALLFIELDS');
|
||
|
$errors = oxRegistry::getSession()->getVariable('Errors');
|
||
|
$error = unserialize($errors['default'][0]);
|
||
|
|
||
|
$this->assertEquals($message, $error->getOxMessage());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test send mail
|
||
|
*/
|
||
|
public function testSave()
|
||
|
{
|
||
|
oxTestModules::addFunction('oeCaptcha', 'pass', '{return true;}');
|
||
|
oxTestModules::addFunction('oxemail', 'sendContactMail', '{return true;}');
|
||
|
|
||
|
$params['oxuser__oxusername'] = 'aaaa@aaa.com';
|
||
|
$params['oxuser__oxfname'] = 'first name';
|
||
|
$params['oxuser__oxlname'] = 'last name';
|
||
|
$this->setRequestParameter('editval', $params);
|
||
|
$this->setRequestParameter('c_subject', 'testSubject');
|
||
|
$contact = $this->getProxyClass('Contact');
|
||
|
$contact->send();
|
||
|
|
||
|
$this->assertEquals(1, $contact->getNonPublicVar('_blContactSendStatus'));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test getting object for handling CAPTCHA image
|
||
|
*/
|
||
|
public function testGetCaptcha()
|
||
|
{
|
||
|
$contact = oxNew('Contact');
|
||
|
$this->assertEquals(oxNew('oeCaptcha'), $contact->getCaptcha());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Test case for bug #0002065: Contact-Mail shows MR or MRS instead of localized salutation
|
||
|
*/
|
||
|
public function testSendForBugtrackEntry0002065()
|
||
|
{
|
||
|
$params = array(
|
||
|
'oxuser__oxusername' => 'info@oxid-esales.com',
|
||
|
'oxuser__oxfname' => 'admin',
|
||
|
'oxuser__oxlname' => 'admin',
|
||
|
'oxuser__oxsal' => 'MR'
|
||
|
);
|
||
|
|
||
|
$this->setRequestParameter('editval', $params);
|
||
|
$this->setRequestParameter('c_message', 'message');
|
||
|
$this->setRequestParameter('c_subject', 'subject');
|
||
|
|
||
|
$language = oxRegistry::getLang();
|
||
|
$message = $language->translateString('MESSAGE_FROM') . ' ' . $language->translateString('MR') .
|
||
|
' admin admin(info@oxid-esales.com)<br /><br />message';
|
||
|
|
||
|
$email = $this->getMock('oxemail', array('sendContactMail'));
|
||
|
$email->expects($this->once())->method('sendContactMail')->with($this->equalTo('info@oxid-esales.com'),
|
||
|
$this->equalTo('subject'), $this->equalTo($message))->will($this->returnValue(true));
|
||
|
oxTestModules::addModuleObject('oxemail', $email);
|
||
|
|
||
|
$captcha = $this->getMock('oeCaptcha', array('passCaptcha'));
|
||
|
$captcha->expects($this->once())->method('passCaptcha')->will($this->returnValue(true));
|
||
|
|
||
|
$contact = $this->getMock('oecaptchacontact', array('getCaptcha'));
|
||
|
$contact->expects($this->once())->method('getCaptcha')->will($this->returnValue($captcha));
|
||
|
$contact->send();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Testing method send()
|
||
|
*/
|
||
|
public function testSendEmailNotSend()
|
||
|
{
|
||
|
$utils = $this->getMock('oxUtilsView', array('addErrorToDisplay'));
|
||
|
$utils->expects($this->once())->method('addErrorToDisplay')->with($this->equalTo('ERROR_MESSAGE_CHECK_EMAIL'));
|
||
|
oxTestModules::addModuleObject('oxUtilsView', $utils);
|
||
|
|
||
|
$params = array(
|
||
|
'oxuser__oxusername' => 'info@oxid-esales.com',
|
||
|
'oxuser__oxfname' => 'admin',
|
||
|
'oxuser__oxlname' => 'admin',
|
||
|
'oxuser__oxsal' => 'MR'
|
||
|
);
|
||
|
|
||
|
$this->setRequestParameter('editval', $params);
|
||
|
$this->setRequestParameter('c_message', 'message');
|
||
|
$this->setRequestParameter('c_subject', 'subject');
|
||
|
|
||
|
$email = $this->getMock('oxemail', array('sendContactMail'));
|
||
|
$email->expects($this->once())->method('sendContactMail')->will($this->returnValue(false));
|
||
|
oxTestModules::addModuleObject('oxemail', $email);
|
||
|
|
||
|
$captcha = $this->getMock('oeCaptcha', array('passCaptcha'));
|
||
|
$captcha->expects($this->once())->method('passCaptcha')->will($this->returnValue(true));
|
||
|
|
||
|
$contact = $this->getMock('oecaptchacontact', array('getCaptcha'));
|
||
|
$contact->expects($this->once())->method('getCaptcha')->will($this->returnValue($captcha));
|
||
|
$contact->send();
|
||
|
}
|
||
|
}
|