View source
<?php
namespace Drupal\Tests\language\Functional;
use Drupal\Tests\BrowserTestBase;
class LanguageNegotiationUrlTest extends BrowserTestBase {
protected static $modules = [
'language',
'node',
'path',
];
protected $defaultTheme = 'stark';
protected $user;
protected function setUp() : void {
parent::setUp();
if ($this->profile != 'standard') {
$this
->drupalCreateContentType([
'type' => 'article',
]);
}
$this->user = $this
->drupalCreateUser([
'administer languages',
'access administration pages',
'view the administration theme',
'administer nodes',
'create article content',
'create url aliases',
]);
$this
->drupalLogin($this->user);
$this
->drupalGet('admin/config/regional/language/add');
$this
->submitForm([
'predefined_langcode' => 'de',
], 'Add language');
}
public function testDomain() {
$edit = [
'language_negotiation_url_part' => 'domain',
'prefix[en]' => 'eng',
'prefix[de]' => 'de',
'domain[en]' => $_SERVER['HTTP_HOST'],
'domain[de]' => "de.{$_SERVER['HTTP_HOST']}",
];
$this
->drupalGet('admin/config/regional/language/detection/url');
$this
->submitForm($edit, 'Save configuration');
$nodeValues = [
'title[0][value]' => 'Test',
'path[0][alias]' => '/eng/test',
];
$this
->drupalGet('node/add/article');
$this
->submitForm($nodeValues, 'Save');
$this
->assertSession()
->statusCodeEquals(200);
}
}