174 lines
7.3 KiB
Plaintext
174 lines
7.3 KiB
Plaintext
<?php
|
|
// $Id$
|
|
|
|
class BlockTestCase extends DrupalWebTestCase {
|
|
protected $regions;
|
|
|
|
function getInfo() {
|
|
return array(
|
|
'name' => t('Block functionality'),
|
|
'description' => t('Add, edit and delete custom block. Configure and move a module-defined block.'),
|
|
'group' => t('Block'),
|
|
);
|
|
}
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
|
|
// Create and login user
|
|
$admin_user = $this->drupalCreateUser(array('administer blocks', 'administer filters'));
|
|
$this->drupalLogin($admin_user);
|
|
|
|
// Define the existing regions
|
|
$this->regions = array();
|
|
$this->regions[] = array('name' => 'header', 'id' => 'header-region');
|
|
$this->regions[] = array('name' => 'left', 'id' => 'sidebar-left');
|
|
$this->regions[] = array('name' => 'content', 'id' => 'center');
|
|
$this->regions[] = array('name' => 'right', 'id' => 'sidebar-right');
|
|
$this->regions[] = array('name' => 'footer');
|
|
}
|
|
|
|
/**
|
|
* Test creating custom block (i.e. box), moving it to a specific region and then deleting it.
|
|
*/
|
|
function testBox() {
|
|
// Add a new box by filling out the input form on the admin/build/block/add page.
|
|
$box = array();
|
|
$box['info'] = $this->randomName(8);
|
|
$box['title'] = $this->randomName(8);
|
|
$box['body'] = $this->randomName(32);
|
|
$this->drupalPost('admin/build/block/add', $box, t('Save block'));
|
|
|
|
// Confirm that the box has been created, and then query the created bid.
|
|
$this->assertText(t('The block has been created.'), t('Box successfully created.'));
|
|
$bid = db_result(db_query("SELECT bid FROM {box} WHERE info = '%s'", array($box['info'])));
|
|
|
|
// Check to see if the box was created by checking that it's in the database..
|
|
$this->assertNotNull($bid, t('Box found in database'));
|
|
|
|
// Check if the block can be moved to all availble regions.
|
|
$box['module'] = 'block';
|
|
$box['delta'] = $bid;
|
|
foreach ($this->regions as $region) {
|
|
$this->moveBlockToRegion($box, $region);
|
|
}
|
|
|
|
// Delete the created box & verify that it's been deleted and no longer appearing on the page.
|
|
$this->clickLink(t('delete'));
|
|
$this->drupalPost('admin/build/block/delete/' . $bid, array(), t('Delete'));
|
|
$this->assertRaw(t('The block %title has been removed.', array('%title' => $box['info'])), t('Box successfully deleted.'));
|
|
$this->assertNoText(t($box['title']), t('Box no longer appears on page.'));
|
|
}
|
|
|
|
/**
|
|
* Test creating custom block (i.e. box) using Full HTML.
|
|
*/
|
|
function testBoxFormat() {
|
|
// Add a new box by filling out the input form on the admin/build/block/add page.
|
|
$box = array();
|
|
$box['info'] = $this->randomName(8);
|
|
$box['title'] = $this->randomName(8);
|
|
$box['body'] = '<h1>Full HTML</h1>';
|
|
$box['body_format'] = 2;
|
|
$this->drupalPost('admin/build/block/add', $box, t('Save block'));
|
|
|
|
// Set the created box to a specific region.
|
|
$bid = db_result(db_query("SELECT bid FROM {box} WHERE info = '%s'", array($box['info'])));
|
|
$edit = array();
|
|
$edit['block_' . $bid . '[region]'] = 'left';
|
|
$this->drupalPost('admin/build/block', $edit, t('Save blocks'));
|
|
|
|
// Confirm that the box is being displayed using configured text format.
|
|
$this->assertRaw('<h1>Full HTML</h1>', t('Box successfully being displayed using Full HTML.'));
|
|
}
|
|
|
|
/**
|
|
* Test configuring and moving a module-define block to specific regions.
|
|
*/
|
|
function testBlock() {
|
|
// Select the Navigation block to be configured and moved.
|
|
$block = array();
|
|
$block['module'] = 'user';
|
|
$block['delta'] = 'navigation';
|
|
$block['title'] = $this->randomName(8);
|
|
|
|
// Set block title to confirm that interface works and override any custom titles.
|
|
$this->drupalPost('admin/build/block/configure/' . $block['module'] . '/' . $block['delta'], array('title' => $block['title']), t('Save block'));
|
|
$this->assertText(t('The block configuration has been saved.'), t('Block title set.'));
|
|
$bid = db_result(db_query("SELECT bid FROM {block} WHERE module = '%s' AND delta = %d", array($block['module'], $block['delta'])));
|
|
|
|
// Check to see if the block was created by checking that it's in the database.
|
|
$this->assertNotNull($bid, t('Block found in database'));
|
|
|
|
// Check if the block can be moved to all availble regions.
|
|
foreach ($this->regions as $region) {
|
|
$this->moveBlockToRegion($block, $region);
|
|
}
|
|
|
|
// Set the block to the disabled region.
|
|
$edit = array();
|
|
$edit[$block['module'] . '_' . $block['delta'] . '[region]'] = '-1';
|
|
$this->drupalPost('admin/build/block', $edit, t('Save blocks'));
|
|
|
|
// Confirm that the block was moved to the proper region.
|
|
$this->assertText(t('The block settings have been updated.'), t('Block successfully move to disabled region.'));
|
|
$this->assertNoText(t($block['title']), t('Block no longer appears on page.'));
|
|
|
|
// Confirm that the regions xpath is not availble
|
|
$xpath = '//div[@id="block-block-' . $bid . '"]/*';
|
|
$this->assertNoFieldByXPath($xpath, FALSE, t('Box found in no regions. '));
|
|
|
|
// For convenience of developers, put the navigation block back.
|
|
$edit = array();
|
|
$edit[$block['module'] . '_' . $block['delta'] . '[region]'] = 'left';
|
|
$this->drupalPost('admin/build/block', $edit, t('Save blocks'));
|
|
$this->assertText(t('The block settings have been updated.'), t('Block successfully move to left region.'));
|
|
|
|
$this->drupalPost('admin/build/block/configure/' . $block['module'] . '/' . $block['delta'], array('title' => 'Navigation'), t('Save block'));
|
|
$this->assertText(t('The block configuration has been saved.'), t('Block title set.'));
|
|
}
|
|
|
|
function moveBlockToRegion($block, $region) {
|
|
// If an id for an region hasn't been specified, we assume it's the same as the name.
|
|
if (!(isset($region['id']))) {
|
|
$region['id'] = $region['name'];
|
|
}
|
|
|
|
// Set the created block to a specific region.
|
|
$edit = array();
|
|
$edit[$block['module'] . '_' . $block['delta'] . '[region]'] = $region['name'];
|
|
$this->drupalPost('admin/build/block', $edit, t('Save blocks'));
|
|
|
|
// Confirm that the block was moved to the proper region.
|
|
$this->assertText(t('The block settings have been updated.'), t('Block successfully moved to %region_name region.', array( '%region_name'=> $region['name'])));
|
|
|
|
// Confirm that the block is being displayed.
|
|
$this->assertText(t($block['title']), t('Block successfully being displayed on the page.'));
|
|
|
|
// Confirm that the box was found at the proper region.
|
|
$xpath = '//div[@id="' . $region['id'] . '"]//div[@id="block-' . $block['module'] . '-' . $block['delta'] . '"]/*';
|
|
$this->assertFieldByXPath($xpath, FALSE, t('Box found in %region_name region.', array('%region_name' => $region['name'])));
|
|
}
|
|
}
|
|
|
|
class NonDefaultBlockAdmin extends DrupalWebTestCase {
|
|
function getInfo() {
|
|
return array(
|
|
'name' => t('Non default theme admin'),
|
|
'description' => t('Check the administer page for non default theme.'),
|
|
'group' => t('Block'),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Test non-default theme admin.
|
|
*/
|
|
function testNonDefaultBlockAdmin() {
|
|
$admin_user = $this->drupalCreateUser(array('administer blocks', 'administer site configuration'));
|
|
$this->drupalLogin($admin_user);
|
|
$this->drupalPost('admin/build/themes', array('status[bluemarine]' => 1), t('Save configuration'));
|
|
$this->drupalGet('admin/build/block/list/bluemarine');
|
|
$this->assertRaw('bluemarine/style.css', t('Bluemarine CSS found'));
|
|
}
|
|
}
|