public function ResponsiveImageStyleConfigEntityUnitTest::testSetBreakpointGroup in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/responsive_image/tests/src/Unit/ResponsiveImageStyleConfigEntityUnitTest.php \Drupal\Tests\responsive_image\Unit\ResponsiveImageStyleConfigEntityUnitTest::testSetBreakpointGroup()
@covers ::setBreakpointGroup @covers ::getBreakpointGroup
File
- core/
modules/ responsive_image/ tests/ src/ Unit/ ResponsiveImageStyleConfigEntityUnitTest.php, line 367 - Contains \Drupal\Tests\responsive_image\Unit\ResponsiveImageStyleConfigEntityUnitTest.
Class
- ResponsiveImageStyleConfigEntityUnitTest
- @coversDefaultClass \Drupal\responsive_image\Entity\ResponsiveImageStyle @group block
Namespace
Drupal\Tests\responsive_image\UnitCode
public function testSetBreakpointGroup() {
$entity = new ResponsiveImageStyle(array(
'breakpoint_group' => 'test_group',
));
$entity
->addImageStyleMapping('test_breakpoint', '1x', array(
'image_mapping_type' => 'image_style',
'image_mapping' => 'large',
));
$entity
->addImageStyleMapping('test_breakpoint', '2x', array(
'image_mapping_type' => 'sizes',
'image_mapping' => array(
'sizes' => '(min-width:700px) 700px, 100vw',
'sizes_image_styles' => array(
'large' => 'large',
),
),
));
$entity
->addImageStyleMapping('test_breakpoint2', '1x', array(
'image_mapping_type' => 'image_style',
'image_mapping' => 'thumbnail',
));
// Ensure that setting to same group does not remove mappings.
$entity
->setBreakpointGroup('test_group');
$this
->assertTrue($entity
->hasImageStyleMappings());
$this
->assertEquals('test_group', $entity
->getBreakpointGroup());
// Ensure that changing the group removes mappings.
$entity
->setBreakpointGroup('test_group2');
$this
->assertEquals('test_group2', $entity
->getBreakpointGroup());
$this
->assertFalse($entity
->hasImageStyleMappings());
}