summaryrefslogtreecommitdiff
path: root/modules/block/block.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/block/block.test')
-rw-r--r--modules/block/block.test31
1 files changed, 31 insertions, 0 deletions
diff --git a/modules/block/block.test b/modules/block/block.test
index 9dcd199b6..73d256ac0 100644
--- a/modules/block/block.test
+++ b/modules/block/block.test
@@ -100,6 +100,37 @@ class BlockTestCase extends DrupalWebTestCase {
}
/**
+ * Test block visibility.
+ */
+ function testBlockVisibility() {
+ $block = array();
+ $block['title'] = 'Syndicate';
+ $block['module'] = 'node';
+ $block['delta'] = 'syndicate';
+
+ // Set the block to be hidden on any user path, and to be shown only to
+ // authenticated users.
+ $edit = array();
+ $edit['pages'] = 'user*';
+ $edit['roles[2]'] = TRUE;
+ $this->drupalPost('admin/build/block/configure/' . $block['module'] . '/' . $block['delta'], $edit, t('Save block'));
+
+ // Move block to the left sidebar.
+ $this->moveBlockToRegion($block, $this->regions[1]);
+
+ $this->drupalGet('');
+ $this->assertText('Syndicate', t('Block was displayed on the front page.'));
+
+ $this->drupalGet('user*');
+ $this->assertNoText('Syndicate', t('Block was not displayed according to block visibility rules.'));
+
+ // Confirm that the block is not displayed to anonymous users.
+ $this->drupalLogout();
+ $this->drupalGet('');
+ $this->assertNoText('Syndicate', t('Block was not displayed to anonymous users.'));
+ }
+
+ /**
* Test configuring and moving a module-define block to specific regions.
*/
function testBlock() {