View source
<?php
namespace Drupal\Tests\lingotek\Functional\Controller;
use Drupal\Core\Url;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\language\Entity\ContentLanguageSettings;
use Drupal\lingotek\Lingotek;
use Drupal\node\Entity\Node;
use Drupal\Tests\lingotek\Functional\LingotekTestBase;
use Drupal\Tests\system\Functional\Cache\AssertPageCacheContextsAndTagsTrait;
class LingotekNotificationControllerTest extends LingotekTestBase {
use AssertPageCacheContextsAndTagsTrait;
public static $modules = [
'block',
'node',
'page_cache',
'dynamic_page_cache',
'big_pipe',
];
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('page_title_block', [
'region' => 'content',
'weight' => -5,
]);
$this
->drupalPlaceBlock('local_tasks_block', [
'region' => 'content',
'weight' => -10,
]);
$this
->drupalCreateContentType([
'type' => 'article',
'name' => 'Article',
]);
ConfigurableLanguage::createFromLangcode('es')
->setThirdPartySetting('lingotek', 'locale', 'es_AR')
->save();
ContentLanguageSettings::loadByEntityTypeBundle('node', 'article')
->setLanguageAlterable(TRUE)
->save();
\Drupal::service('content_translation.manager')
->setEnabled('node', 'article', TRUE);
drupal_static_reset();
\Drupal::entityTypeManager()
->clearCachedDefinitions();
$this
->applyEntityUpdates();
$this
->rebuildContainer();
$this
->saveLingotekContentTranslationSettingsForNodeTypes();
$this
->enablePageCaching();
}
public function testCallbackNotCached() {
$this
->drupalLogin($this->rootUser);
$edit = [];
$edit['title[0][value]'] = 'Llamas are cool';
$edit['body[0][value]'] = 'Llamas are very cool';
$edit['langcode[0][value]'] = 'en';
$edit['lingotek_translation_management[lingotek_translation_profile]'] = 'automatic';
$this
->saveAndPublishNodeForm($edit);
$node = Node::load(1);
$content_translation_service = \Drupal::service('lingotek.content_translation');
$this
->assertIdentical(Lingotek::STATUS_IMPORTING, $content_translation_service
->getSourceStatus($node));
$this
->goToContentBulkManagementForm();
$url = Url::fromRoute('lingotek.notify', [], [
'query' => [
'project_id' => 'test_project',
'document_id' => 'dummy-document-hash-id',
'complete' => 'false',
'type' => 'document_uploaded',
'progress' => '0',
],
])
->setAbsolute()
->toString();
$request = $this->client
->get($url, [
'headers' => [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
],
'http_errors' => FALSE,
]);
$cache_control_header = $request
->getHeader('Cache-Control');
$this
->assertStringContainsString('max-age=0', $cache_control_header[0]);
$response = json_decode($request
->getBody(), TRUE);
$this
->verbose($request);
$this
->assertIdentical([
'es',
], $response['result']['request_translations'], 'Spanish language has been requested after notification automatically.');
$request = $this->client
->get($url, [
'headers' => [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
],
'http_errors' => FALSE,
]);
$cache_control_header = $request
->getHeader('Cache-Control');
$this
->assertStringContainsString('max-age=0', $cache_control_header[0]);
$response = json_decode($request
->getBody(), TRUE);
$this
->verbose($request);
$this
->assertIdentical([
'es',
], $response['result']['request_translations'], 'Spanish language has been requested after notification automatically.');
}
public function testUnprocessedCallbackNotCached() {
$url = Url::fromRoute('lingotek.notify', [], [
'query' => [
'llamas' => 'cool',
],
])
->setAbsolute()
->toString();
$request = $this->client
->get($url, [
'headers' => [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
],
'http_errors' => FALSE,
]);
$cache_control_header = $request
->getHeader('Cache-Control');
$this
->assertStringContainsString('max-age=0', $cache_control_header[0]);
$response = (string) $request
->getBody();
$this
->assertIdentical($response, 'It works, but nothing to look here.');
$request = $this->client
->get($url, [
'headers' => [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
],
'http_errors' => FALSE,
]);
$cache_control_header = $request
->getHeader('Cache-Control');
$this
->assertStringContainsString('max-age=0', $cache_control_header[0]);
$response = (string) $request
->getBody();
$this
->assertIdentical($response, 'It works, but nothing to look here.');
}
}