class BlockBaseTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Block/BlockBaseTest.php \Drupal\Tests\Core\Block\BlockBaseTest
@coversDefaultClass \Drupal\Core\Block\BlockBase @group block
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Block\BlockBaseTest
Expanded class hierarchy of BlockBaseTest
File
- core/
tests/ Drupal/ Tests/ Core/ Block/ BlockBaseTest.php, line 17 - Contains \Drupal\Tests\Core\Block\BlockBaseTest.
Namespace
Drupal\Tests\Core\BlockView source
class BlockBaseTest extends UnitTestCase {
/**
* Tests the machine name suggestion.
*
* @see \Drupal\Core\Block\BlockBase::getMachineNameSuggestion().
*/
public function testGetMachineNameSuggestion() {
$module_handler = $this
->getMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$transliteration = $this
->getMockBuilder('Drupal\\Core\\Transliteration\\PhpTransliteration')
->setConstructorArgs(array(
NULL,
$module_handler,
))
->setMethods(array(
'readLanguageOverrides',
))
->getMock();
$config = array();
$definition = array(
'admin_label' => 'Admin label',
'provider' => 'block_test',
);
$block_base = new TestBlockInstantiation($config, 'test_block_instantiation', $definition);
$block_base
->setTransliteration($transliteration);
$this
->assertEquals('adminlabel', $block_base
->getMachineNameSuggestion());
// Test with more unicodes.
$definition = array(
'admin_label' => 'über åwesome',
'provider' => 'block_test',
);
$block_base = new TestBlockInstantiation($config, 'test_block_instantiation', $definition);
$block_base
->setTransliteration($transliteration);
$this
->assertEquals('uberawesome', $block_base
->getMachineNameSuggestion());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BlockBaseTest:: |
public | function | Tests the machine name suggestion. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |