RestExportJsonApiUnsupported.php in Drupal 10
File
core/modules/jsonapi/tests/src/Functional/RestExportJsonApiUnsupported.php
View source
<?php
namespace Drupal\Tests\jsonapi\Functional;
use Drupal\Tests\views\Functional\ViewTestBase;
class RestExportJsonApiUnsupported extends ViewTestBase {
public static $testViews = [
'test_serializer_display_entity',
];
protected static $modules = [
'jsonapi',
'rest_test_views',
'views_ui',
];
protected $defaultTheme = 'stark';
protected function setUp($import_test_views = TRUE, $modules = [
'rest_test_views',
]) : void {
parent::setUp($import_test_views, $modules);
$this
->drupalLogin($this
->drupalCreateUser([
'administer views',
]));
}
public function testFormatOptions() {
$this
->assertSame([
'json' => 'serialization',
'xml' => 'serialization',
], $this->container
->getParameter('serializer.format_providers'));
$this
->drupalGet('admin/structure/views/nojs/display/test_serializer_display_entity/rest_export_1/style_options');
$this
->assertSession()
->fieldExists('style_options[formats][json]');
$this
->assertSession()
->fieldExists('style_options[formats][xml]');
$this
->assertSession()
->fieldNotExists('style_options[formats][api_json]');
}
}