BUG Fix travis / unit tests

This commit is contained in:
Damian Mooyman 2015-03-24 17:17:15 +13:00
parent 4478e61390
commit c7b211e585
3 changed files with 18 additions and 10 deletions

View File

@ -10,7 +10,7 @@ env:
matrix: matrix:
include: include:
- php: 5.4 - php: 5.4
env: DB=MYSQL CORE_RELEASE=master env: DB=MYSQL CORE_RELEASE=3
before_script: before_script:
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
@ -18,4 +18,4 @@ before_script:
- cd ~/builds/ss - cd ~/builds/ss
script: script:
- phpunit userforms/tests/ - vendor/bin/phpunit spamprotection/tests/

View File

@ -13,6 +13,9 @@
"require": { "require": {
"silverstripe/framework": "~3.1" "silverstripe/framework": "~3.1"
}, },
"require-dev": {
"phpunit/PHPUnit": "~3.7@stable"
},
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.0.x-dev" "dev-master": "2.0.x-dev"

View File

@ -6,6 +6,11 @@
class FormSpamProtectionExtensionTest extends SapphireTest { class FormSpamProtectionExtensionTest extends SapphireTest {
protected $usesDatabase = false; protected $usesDatabase = false;
/**
* @var Form
*/
protected $form = null;
public function setUp() { public function setUp() {
parent::setUp(); parent::setUp();
@ -16,6 +21,7 @@ class FormSpamProtectionExtensionTest extends SapphireTest {
new TextField('URL') new TextField('URL')
), new FieldList() ), new FieldList()
); );
$this->form->disableSecurityToken();
} }
public function testEnableSpamProtection() { public function testEnableSpamProtection() {
@ -36,14 +42,14 @@ class FormSpamProtectionExtensionTest extends SapphireTest {
)); ));
$this->assertEquals('Bar', $form->Fields()->fieldByName('Captcha')->Title()); $this->assertEquals('Bar', $form->Fields()->fieldByName('Captcha')->Title());
}
$protector = new FormSpamProtectionExtensionTest_BarProtector(); public function testEnableSpamProtectionCustomTitle() {
$protector->title = "Baz";
$form = $this->form->enableSpamProtection(array( $form = $this->form->enableSpamProtection(array(
'protector' => $protector 'protector' => 'FormSpamProtectionExtensionTest_BarProtector',
'title' => 'Baz',
)); ));
$this->assertEquals('Baz', $form->Fields()->fieldByName('Captcha')->Title()); $this->assertEquals('Baz', $form->Fields()->fieldByName('Captcha')->Title());
} }
@ -106,10 +112,9 @@ class FormSpamProtectionExtensionTest_BazProtector implements SpamProtector, Tes
*/ */
class FormSpamProtectionExtensionTest_BarProtector implements SpamProtector, TestOnly { class FormSpamProtectionExtensionTest_BarProtector implements SpamProtector, TestOnly {
public $title = 'Bar';
public function getFormField($name = null, $title = null, $value = null) { public function getFormField($name = null, $title = null, $value = null) {
return new TextField($name, $this->title, $value); $title = $title ?: 'Bar';
return new TextField($name, $title, $value);
} }
public function setFieldMapping($fieldMapping) {} public function setFieldMapping($fieldMapping) {}