StorageTest.php in Drupal 10
File
core/modules/views_ui/tests/src/Functional/StorageTest.php
View source
<?php
namespace Drupal\Tests\views_ui\Functional;
use Drupal\Component\Render\FormattableMarkup;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\views\Views;
class StorageTest extends UITestBase {
public static $testViews = [
'test_view',
];
protected $defaultTheme = 'stark';
protected static $modules = [
'views_ui',
'language',
];
public function testDetails() {
$view_name = 'test_view';
ConfigurableLanguage::createFromLangcode('fr')
->save();
$edit = [
'label' => $this
->randomMachineName(),
'tag' => $this
->randomMachineName(),
'description' => $this
->randomMachineName(30),
'langcode' => 'fr',
];
$this
->drupalGet("admin/structure/views/nojs/edit-details/{$view_name}/default");
$this
->submitForm($edit, 'Apply');
$this
->submitForm([], 'Save');
$view = Views::getView($view_name);
foreach ([
'label',
'tag',
'description',
'langcode',
] as $property) {
$this
->assertEquals($edit[$property], $view->storage
->get($property), new FormattableMarkup('Make sure the property @property got probably saved.', [
'@property' => $property,
]));
}
}
}