container->get('theme_installer')->install(['bartik']); $this->placeBlock('system_branding_block', [ 'id' => 'bartik_branding', 'theme' => 'bartik', 'plugin' => 'system_branding_block', 'weight' => 1, ]); $this->placeBlock('system_powered_by_block', [ 'id' => 'bartik_powered', 'theme' => 'bartik', 'weight' => 2, ]); parent::setUpFixtures(); } /** * Tests the order of the handlers. */ public function testAreaOrder() { $renderer = $this->container->get('renderer'); $view = Views::getView('test_area_order'); $renderable = $view->buildRenderable(); $output = $this->render($renderable); $position_powered = strpos($output, 'block-bartik-powered'); $position_branding = strpos($output, 'block-bartik-branding'); $this->assertNotEquals(0, $position_powered, 'ID bartik-powered found.'); $this->assertNotEquals(0, $position_branding, 'ID bartik-branding found'); // Make sure "powered" is before "branding", so it reflects the position // in the configuration, and not the weight of the blocks. $this->assertTrue($position_powered < $position_branding, 'Block bartik-powered is positioned before block bartik-branding'); } }