Merge pull request #226 from halkyon/master

Fixed GridFieldToolbarHeaderTest
This commit is contained in:
Sam Minnée 2012-03-08 19:53:29 -08:00
commit 0c93d3193e
2 changed files with 21 additions and 4 deletions

View File

@ -1,6 +1,11 @@
<?php <?php
class GridFieldToolbarHeaderTest extends SapphireTest { class GridFieldToolbarHeaderTest extends SapphireTest {
static $fixture_file = 'GridFieldToolbarHeaderTest.yml';
protected $extraDataObjects = array(
'GridFieldDetailFormTest_Company',
);
public function testGridTitleAddNewEnabled() { public function testGridTitleAddNewEnabled() {
$this->logInWithPermission('ADMIN'); $this->logInWithPermission('ADMIN');
@ -8,7 +13,7 @@ class GridFieldToolbarHeaderTest extends SapphireTest {
$config = new GridFieldConfig(); $config = new GridFieldConfig();
$config->addComponent($titleField = new GridFieldToolbarHeader()); $config->addComponent($titleField = new GridFieldToolbarHeader());
$actions = new FieldList(); $actions = new FieldList();
$grid = new GridField('TestField', 'Test Field', new DataList('Company'),$config); $grid = new GridField('TestField', 'Test Field', new DataList('GridFieldDetailFormTest_Company'),$config);
$fields = new FieldList($rootTab = new TabSet("Root",$tabMain = new Tab('Main',$grid))); $fields = new FieldList($rootTab = new TabSet("Root",$tabMain = new Tab('Main',$grid)));
$form = new Form(Controller::curr(), "TestForm", $fields, $actions); $form = new Form(Controller::curr(), "TestForm", $fields, $actions);
@ -23,7 +28,7 @@ class GridFieldToolbarHeaderTest extends SapphireTest {
$config = new GridFieldConfig(); $config = new GridFieldConfig();
$config->addComponent($titleField = new GridFieldToolbarHeader()); $config->addComponent($titleField = new GridFieldToolbarHeader());
$actions = new FieldList(); $actions = new FieldList();
$grid = new GridField('TestField', 'Test Field', new DataList('Company'),$config); $grid = new GridField('TestField', 'Test Field', new DataList('GridFieldDetailFormTest_Company'),$config);
$fields = new FieldList($rootTab = new TabSet("Root",$tabMain = new Tab('Main',$grid))); $fields = new FieldList($rootTab = new TabSet("Root",$tabMain = new Tab('Main',$grid)));
$form = new Form(Controller::curr(), "TestForm", $fields, $actions); $form = new Form(Controller::curr(), "TestForm", $fields, $actions);
@ -36,7 +41,7 @@ class GridFieldToolbarHeaderTest extends SapphireTest {
if(Member::currentUser()) { Member::currentUser()->logOut(); } if(Member::currentUser()) { Member::currentUser()->logOut(); }
$config = new GridFieldConfig(); $config = new GridFieldConfig();
$config->addComponent($titleField = new GridFieldToolbarHeader()); $config->addComponent($titleField = new GridFieldToolbarHeader());
$grid = new GridField('TestField', 'Test Field', new DataList('Company'),$config); $grid = new GridField('TestField', 'Test Field', new DataList('GridFieldDetailFormTest_Company'),$config);
$fields = new FieldList(new TabSet("Root",$tabMain = new Tab('Main',$grid))); $fields = new FieldList(new TabSet("Root",$tabMain = new Tab('Main',$grid)));
$form = new Form(Controller::curr(), "TestForm", $fields, new FieldList()); $form = new Form(Controller::curr(), "TestForm", $fields, new FieldList());
@ -44,3 +49,10 @@ class GridFieldToolbarHeaderTest extends SapphireTest {
$this->assertNotContains('data-icon="add"', $html, "HTML should not contain the 'add new' button"); $this->assertNotContains('data-icon="add"', $html, "HTML should not contain the 'add new' button");
} }
} }
class GridFieldDetailFormTest_Company extends DataObject implements TestOnly {
public static $db = array(
'Name' => 'Varchar(100)'
);
}

View File

@ -0,0 +1,5 @@
GridFieldDetailFormTest_Company:
test-company-1:
Name: Test company 1
test-company-2:
Name: Test company 2