View source
<?php
namespace Drupal\block_content\Tests;
use Drupal\block_content\Entity\BlockContent;
use Drupal\Component\Utility\Unicode;
use Drupal\Core\Database\Database;
class BlockContentCreationTest extends BlockContentTestBase {
public static $modules = array(
'block_content_test',
'dblog',
'field_ui',
);
protected $permissions = array(
'administer blocks',
'administer block_content display',
);
protected function setUp() {
parent::setUp();
$this
->drupalLogin($this->adminUser);
}
public function testBlockContentCreation() {
$this
->drupalLogin($this->adminUser);
$edit = array();
$edit['info[0][value]'] = 'Test Block';
$edit['body[0][value]'] = $this
->randomMachineName(16);
$this
->drupalPostForm('block/add/basic', $edit, t('Save'));
$this
->assertRaw(format_string('@block %name has been created.', array(
'@block' => 'basic',
'%name' => $edit['info[0][value]'],
)), 'Basic block created.');
$this
->assertNoFieldByXPath('//select[@name="settings[view_mode]"]', NULL, 'View mode setting hidden because only one exists');
$blocks = entity_load_multiple_by_properties('block_content', array(
'info' => $edit['info[0][value]'],
));
$block = reset($blocks);
$this
->assertTrue($block, 'Custom Block found in database.');
$this
->drupalPostForm('block/add/basic', $edit, t('Save'));
$this
->assertRaw(format_string('A custom block with block description %value already exists.', array(
'%value' => $edit['info[0][value]'],
)));
$this
->assertResponse(200);
}
public function testBlockContentCreationMultipleViewModes() {
$this
->drupalLogin($this
->drupalCreateUser(array(
'administer display modes',
)));
$this
->drupalGet('admin/structure/display-modes/view/add/block_content');
$edit = array(
'id' => 'test_view_mode',
'label' => 'Test View Mode',
);
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->assertRaw(t('Saved the %label view mode.', array(
'%label' => $edit['label'],
)));
$this
->drupalLogin($this->adminUser);
$edit = array();
$edit['info[0][value]'] = 'Test Block';
$edit['body[0][value]'] = $this
->randomMachineName(16);
$this
->drupalPostForm('block/add/basic', $edit, t('Save'));
$this
->assertRaw(format_string('@block %name has been created.', array(
'@block' => 'basic',
'%name' => $edit['info[0][value]'],
)), 'Basic block created.');
$this
->drupalPostForm(NULL, NULL, t('Save block'));
$this
->drupalGet('admin/structure/block/block-content');
$this
->drupalGet('admin/structure/block/block-content/types');
$this
->clickLink(t('Manage display'));
$this
->drupalGet('admin/structure/block/block-content/manage/basic/display');
$custom_view_mode = array(
'display_modes_custom[test_view_mode]' => 1,
);
$this
->drupalPostForm(NULL, $custom_view_mode, t('Save'));
$this
->drupalGet('admin/structure/block/manage/testblock');
$this
->assertOption('edit-settings-view-mode', 'default', 'The default view mode is available.');
$this
->assertOption('edit-settings-view-mode', 'test_view_mode', 'The test view mode is available.');
$view_mode['settings[view_mode]'] = 'test_view_mode';
$this
->drupalPostForm(NULL, $view_mode, t('Save block'));
$this
->drupalGet('admin/structure/block/manage/testblock');
$this
->assertFieldByXPath('//select[@name="settings[view_mode]"]', NULL, 'View mode setting shown because multiple exist');
$view_mode['settings[view_mode]'] = 'test_view_mode';
$this
->drupalPostForm(NULL, $view_mode, t('Save block'));
$this
->drupalGet('admin/structure/block/manage/testblock');
$this
->assertFieldByXPath('//select[@name="settings[view_mode]"]/option[@selected="selected"]/@value', 'test_view_mode', 'View mode changed to Test View Mode');
$blocks = entity_load_multiple_by_properties('block_content', array(
'info' => $edit['info[0][value]'],
));
$block = reset($blocks);
$this
->assertTrue($block, 'Custom Block found in database.');
$this
->drupalPostForm('block/add/basic', $edit, t('Save'));
$this
->assertRaw(format_string('A custom block with block description %value already exists.', array(
'%value' => $edit['info[0][value]'],
)));
$this
->assertResponse(200);
}
public function testDefaultBlockContentCreation() {
$edit = array();
$edit['info[0][value]'] = $this
->randomMachineName(8);
$edit['body[0][value]'] = $this
->randomMachineName(16);
$this
->drupalPostForm('block/add', $edit, t('Save'));
$this
->assertRaw(format_string('@block %name has been created.', array(
'@block' => 'basic',
'%name' => $edit['info[0][value]'],
)), 'Basic block created.');
$blocks = entity_load_multiple_by_properties('block_content', array(
'info' => $edit['info[0][value]'],
));
$block = reset($blocks);
$this
->assertTrue($block, 'Default Custom Block found in database.');
}
public function testFailedBlockCreation() {
try {
$this
->createBlockContent('fail_creation');
$this
->fail('Expected exception has not been thrown.');
} catch (\Exception $e) {
$this
->pass('Expected exception has been thrown.');
}
if (Database::getConnection()
->supportsTransactions()) {
$id = db_select('block_content_field_data', 'b')
->fields('b', array(
'id',
))
->condition('info', 'fail_creation')
->execute()
->fetchField();
$this
->assertFalse($id, 'Transactions supported, and block not found in database.');
}
else {
$id = db_select('block_content_field_data', 'b')
->fields('b', array(
'id',
))
->condition('info', 'fail_creation')
->execute()
->fetchField();
$this
->assertTrue($id, 'Transactions not supported, and block found in database.');
$records = db_query("SELECT wid FROM {watchdog} WHERE message LIKE 'Explicit rollback failed%'")
->fetchAll();
$this
->assertTrue(count($records) > 0, 'Transactions not supported, and rollback error logged to watchdog.');
}
}
public function testBlockDelete() {
$edit = array();
$edit['info[0][value]'] = $this
->randomMachineName(8);
$body = $this
->randomMachineName(16);
$edit['body[0][value]'] = $body;
$this
->drupalPostForm('block/add/basic', $edit, t('Save'));
$instance = array(
'id' => Unicode::strtolower($edit['info[0][value]']),
'settings[label]' => $edit['info[0][value]'],
'region' => 'sidebar_first',
);
$block = BlockContent::load(1);
$url = 'admin/structure/block/add/block_content:' . $block
->uuid() . '/' . $this
->config('system.theme')
->get('default');
$this
->drupalPostForm($url, $instance, t('Save block'));
$block = BlockContent::load(1);
$this
->assertEqual(1, count($block
->getInstances()));
$this
->drupalGet('');
$this
->assertText($body);
$this
->drupalGet('block/1/delete');
$this
->assertText(\Drupal::translation()
->formatPlural(1, 'This will also remove 1 placed block instance.', 'This will also remove @count placed block instance.'));
$this
->drupalPostForm(NULL, array(), 'Delete');
$this
->assertRaw(t('The custom block %name has been deleted.', array(
'%name' => $edit['info[0][value]'],
)));
$edit2 = array();
$edit2['info[0][value]'] = $this
->randomMachineName(8);
$body2 = $this
->randomMachineName(16);
$edit2['body[0][value]'] = $body2;
$this
->drupalPostForm('block/add/basic', $edit2, t('Save'));
$this
->assertNoRaw('Error message');
$edit3 = array();
$edit3['info[0][value]'] = $this
->randomMachineName(8);
$body = $this
->randomMachineName(16);
$edit3['body[0][value]'] = $body;
$this
->drupalPostForm('block/add/basic', $edit3, t('Save'));
$this
->drupalGet('block/3/delete');
$this
->assertNoText('This will also remove');
}
public function testConfigDependencies() {
$block = $this
->createBlockContent();
$block_placement_id = Unicode::strtolower($block
->label());
$instance = array(
'id' => $block_placement_id,
'settings[label]' => $block
->label(),
'region' => 'sidebar_first',
);
$block = BlockContent::load(1);
$url = 'admin/structure/block/add/block_content:' . $block
->uuid() . '/' . $this
->config('system.theme')
->get('default');
$this
->drupalPostForm($url, $instance, t('Save block'));
$dependencies = \Drupal::service('config.manager')
->findConfigEntityDependentsAsEntities('content', array(
$block
->getConfigDependencyName(),
));
$block_placement = reset($dependencies);
$this
->assertEqual($block_placement_id, $block_placement
->id(), "The block placement config entity has a dependency on the block content entity.");
}
}