View source
<?php
namespace Drupal\Tests\gridstack\Kernel;
use Drupal\Component\Serialization\Json;
use Drupal\Core\Messenger\Messenger;
use Drupal\Tests\blazy\Kernel\BlazyKernelTestBase;
use Drupal\Tests\gridstack\Traits\GridStackUnitTestTrait;
use Drupal\gridstack\Entity\GridStack;
use Drupal\gridstack_ui\Form\GridStackForm;
class GridStackManagerTest extends BlazyKernelTestBase {
use GridStackUnitTestTrait;
protected $messenger;
public static $modules = [
'system',
'user',
'field',
'file',
'filter',
'image',
'node',
'text',
'blazy',
'gridstack',
'gridstack_ui',
'gridstack_test',
];
protected function setUp() {
parent::setUp();
$bundle = $this->bundle;
$this->fileSystem = $this->container
->get('file_system');
$this->messenger = $this->container
->get('messenger');
$this->gridstackAdmin = $this->container
->get('gridstack.admin');
$this->blazyAdminFormatter = $this->gridstackAdmin;
$this->gridstackFormatter = $this->container
->get('gridstack.formatter');
$this->gridstackManager = $this->container
->get('gridstack.manager');
$this->gridstackForm = new GridStackForm($this->fileSystem, $this->messenger, $this->blazyAdmin, $this->gridstackManager);
$this->testPluginId = 'gridstack_image';
$this->testFieldName = 'field_gridstack_image';
$this->maxItems = 7;
$this->maxParagraphs = 2;
$settings['fields']['field_text_multiple'] = 'text';
$this
->setUpContentTypeTest($bundle, $settings);
$this
->setUpContentWithItems($bundle);
$this
->setUpRealImage();
$this->display = $this
->setUpFormatterDisplay($bundle);
$this->formatterInstance = $this
->getFormatterInstance();
$this->blazyManager
->getConfigFactory()
->getEditable('gridstack.settings')
->set('framework', 'bootstrap')
->save();
}
public function testGridStackManagerMethods() {
$manager = $this->gridstackManager;
$settings = [
'use_js' => TRUE,
'skin' => 'selena',
'width' => 11,
'breakpoints' => [
'lg' => [
'column' => 11,
],
],
] + $this
->getFormatterSettings();
$attachments = $manager
->attach($settings);
$this
->assertArrayHasKey('gridstack', $attachments['drupalSettings']);
$skins = $manager
->getSkins();
$this
->assertArrayHasKey('default', $skins);
$cid = 'gridstack:skins';
$cached_skins = $manager
->getCache()
->get($cid);
$this
->assertEquals($cid, $cached_skins->cid);
$this
->assertEquals($skins, $cached_skins->data);
$defined_skins = $manager
->getSkinOptions();
$this
->assertArrayHasKey('default', $defined_skins);
$libraries = $manager
->libraryInfoBuild();
$this
->assertArrayHasKey('gridstack.default', $libraries);
}
public function testBuild($items, array $settings, $expected) {
$manager = $this->gridstackManager;
$defaults = $this
->getFormatterSettings() + GridStack::htmlSettings();
$settings = array_merge($defaults, $settings);
$settings['optionset'] = 'test';
$build = $this->display
->build($this->entity);
$items = !$items ? [] : $build[$this->testFieldName]['#build']['items'];
$build = [
'items' => $items,
'settings' => $settings,
'optionset' => GridStack::load($settings['optionset']),
];
$gridstack = $manager
->build($build);
$this
->assertEquals($expected, !empty($gridstack));
$gridstack['#build']['items'] = $items;
$gridstack['#build']['settings'] = $settings;
$elements = $manager
->preRenderGridStack($gridstack);
$this
->assertEquals($expected, !empty($elements));
}
public function providerTestGridStackBuild() {
$data[] = [
FALSE,
[],
FALSE,
];
$data[] = [
TRUE,
[
'skin' => 'selena',
],
TRUE,
];
return $data;
}
public function testGridStackForm() {
$frontend = GridStack::load('frontend');
$options = $this->gridstackForm
->getColumnOptions();
$this
->assertArrayHasKey(2, $options);
$json = $this->gridstackForm
->jsonify();
$this
->assertEmpty($json);
$settings = $frontend
->getSettings();
$settings['cellHeight'] = '70';
$settings['rtl'] = '1';
$json = $this->gridstackForm
->jsonify($settings);
$this
->assertTrue(is_string($json));
$array = Json::decode($json);
$this
->assertEquals(70, $array['cellHeight']);
$this
->assertEquals(TRUE, $array['rtl']);
}
}