2008-05-14 13:09:47 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* MultiFormTest
|
2009-07-20 11:22:49 +02:00
|
|
|
* For testing purposes, we have some test classes:
|
2008-05-14 13:09:47 +02:00
|
|
|
*
|
2009-07-20 11:22:49 +02:00
|
|
|
* - MultiFormTest_Controller (simulation of a real Controller class)
|
|
|
|
* - MultiFormTest_Form (subclass of MultiForm)
|
|
|
|
* - MultiFormTest_StepOne (subclass of MultiFormStep)
|
|
|
|
* - MultiFormTest_StepTwo (subclass of MultiFormStep)
|
|
|
|
* - MultiFormTest_StepThree (subclass of MultiFormStep)
|
|
|
|
*
|
|
|
|
* The above classes are used to simulate real-world behaviour
|
|
|
|
* of the multiform module - for example, MultiFormTest_Controller
|
|
|
|
* is a simulation of a page where MultiFormTest_Form is a simple
|
|
|
|
* multi-step contact form it belongs to.
|
2008-05-14 13:09:47 +02:00
|
|
|
*
|
2009-07-20 11:22:49 +02:00
|
|
|
* @package multiform
|
|
|
|
* @subpackage tests
|
2008-05-14 13:09:47 +02:00
|
|
|
*/
|
2009-07-20 11:22:49 +02:00
|
|
|
class MultiFormTest extends FunctionalTest {
|
|
|
|
|
|
|
|
protected $controller;
|
|
|
|
|
2008-05-14 13:09:47 +02:00
|
|
|
function setUp() {
|
2009-07-20 11:22:49 +02:00
|
|
|
parent::setUp();
|
|
|
|
$this->controller = new MultiFormTest_Controller();
|
|
|
|
$this->form = $this->controller->Form();
|
2008-05-14 13:09:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function testInitialisingForm() {
|
|
|
|
$this->assertTrue(is_numeric($this->form->getCurrentStep()->ID) && ($this->form->getCurrentStep()->ID > 0));
|
2008-08-21 10:17:04 +02:00
|
|
|
$this->assertTrue(is_numeric($this->form->getSession()->ID) && ($this->form->getSession()->ID > 0));
|
2009-07-20 11:22:49 +02:00
|
|
|
$this->assertEquals('MultiFormTest_StepOne', $this->form->getStartStep());
|
2008-05-23 07:47:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function testSecondStep() {
|
2009-07-20 11:22:49 +02:00
|
|
|
$this->assertEquals('MultiFormTest_StepTwo', $this->form->getCurrentStep()->getNextStep());
|
|
|
|
}
|
|
|
|
|
|
|
|
function testParentForm() {
|
|
|
|
$currentStep = $this->form->getCurrentStep();
|
|
|
|
$this->assertEquals($currentStep->getForm()->class, $this->form->class);
|
2008-05-23 07:47:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function testTotalStepCount() {
|
|
|
|
$this->assertEquals(3, $this->form->getAllStepsLinear()->Count());
|
2008-05-14 13:09:47 +02:00
|
|
|
}
|
|
|
|
|
2009-07-20 12:57:00 +02:00
|
|
|
function testNextStepAction() {
|
2009-07-20 11:22:49 +02:00
|
|
|
$this->get($this->controller->class);
|
2009-07-20 12:57:00 +02:00
|
|
|
$response = $this->submitForm('MultiFormTest_Form', 'action_next', array(
|
2009-07-20 11:22:49 +02:00
|
|
|
'FirstName' => 'Joe',
|
|
|
|
'Surname' => 'Bloggs',
|
|
|
|
'Email' => 'joe@bloggs.com'
|
|
|
|
));
|
|
|
|
|
2009-07-20 12:57:00 +02:00
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
2009-07-20 11:22:49 +02:00
|
|
|
$this->assertNotNull($response->getBody());
|
2009-07-20 12:57:00 +02:00
|
|
|
}
|
2009-07-20 11:22:49 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
class MultiFormTest_Controller extends Controller implements TestOnly {
|
|
|
|
|
2009-07-20 12:57:00 +02:00
|
|
|
function Link() {
|
|
|
|
return 'MultiFormTest_Controller';
|
2009-07-20 11:22:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function Form($request = null) {
|
|
|
|
$form = new MultiFormTest_Form($this, 'Form');
|
|
|
|
$form->setHTMLID('MultiFormTest_Form');
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
class MultiFormTest_Form extends MultiForm implements TestOnly {
|
|
|
|
|
|
|
|
protected static $start_step = 'MultiFormTest_StepOne';
|
|
|
|
|
|
|
|
function getStartStep() {
|
|
|
|
return $this->stat('start_step');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
class MultiFormTest_StepOne extends MultiFormStep implements TestOnly {
|
|
|
|
|
|
|
|
protected static $next_steps = 'MultiFormTest_StepTwo';
|
|
|
|
|
|
|
|
function getFields() {
|
|
|
|
return new FieldSet(
|
|
|
|
new TextField('FirstName', 'First name'),
|
|
|
|
new TextField('Surname', 'Surname'),
|
|
|
|
new EmailField('Email', 'Email address')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
class MultiFormTest_StepTwo extends MultiFormStep implements TestOnly {
|
|
|
|
|
|
|
|
protected static $next_steps = 'MultiFormTest_StepThree';
|
|
|
|
|
|
|
|
function getFields() {
|
|
|
|
return new FieldSet(
|
|
|
|
new TextareaField('Comments', 'Tell us a bit about yourself...')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
class MultiFormTest_StepThree extends MultiFormStep implements TestOnly {
|
|
|
|
|
|
|
|
protected static $is_final_step = true;
|
|
|
|
|
|
|
|
function getFields() {
|
|
|
|
return new FieldSet(
|
|
|
|
new TextField('Test', 'Anything else you\'d like to tell us?')
|
|
|
|
);
|
2008-05-14 13:09:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|