Skip to content
Snippets Groups Projects
Unverified Commit 530982ad authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2989469 by amateescu: MediaUpdateTest is broken

(cherry picked from commit bfb51769)
parent 3479c574
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
<?php
// @codingStandardsIgnoreFile
/**
* @file
* Contains database additions to drupal-8.4.0.bare.standard.php.gz for testing
* the upgrade path of https://www.drupal.org/node/2862422.
*/
use Drupal\Core\Database\Database;
$connection = Database::getConnection();
$role = $connection->select('config')
->fields('config', ['data'])
->condition('collection', '')
->condition('name', 'user.role.authenticated')
->execute()
->fetchField();
$role = unserialize($role);
$role['permissions'][] = 'update media';
$role['permissions'][] = 'update any media';
$role['permissions'][] = 'delete media';
$role['permissions'][] = 'delete any media';
$role['permissions'][] = 'create media';
$connection->update('config')
->fields([
'data' => serialize($role),
'collection' => '',
'name' => 'user.role.authenticated',
])
->condition('collection', '')
->condition('name', 'user.role.authenticated')
->execute();
This diff is collapsed.
...@@ -18,8 +18,9 @@ class MediaUpdateTest extends UpdatePathTestBase { ...@@ -18,8 +18,9 @@ class MediaUpdateTest extends UpdatePathTestBase {
*/ */
protected function setDatabaseDumpFiles() { protected function setDatabaseDumpFiles() {
$this->databaseDumpFiles = [ $this->databaseDumpFiles = [
__DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.bare.standard.php.gz', __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.4.0.bare.standard.php.gz',
__DIR__ . '/../../../fixtures/update/drupal-8.media-enabled.php', __DIR__ . '/../../../fixtures/update/drupal-8.4.0-media_installed.php',
__DIR__ . '/../../../fixtures/update/drupal-8.media-add-additional-permissions.php',
]; ];
} }
...@@ -29,16 +30,6 @@ protected function setDatabaseDumpFiles() { ...@@ -29,16 +30,6 @@ protected function setDatabaseDumpFiles() {
* @see media_update_8500() * @see media_update_8500()
*/ */
public function testBundlePermission() { public function testBundlePermission() {
$role = Role::load(Role::AUTHENTICATED_ID);
$this->grantPermissions($role, [
'update media',
'update any media',
'delete media',
'delete any media',
'create media',
]);
$this->runUpdates(); $this->runUpdates();
/** @var \Drupal\user\RoleInterface $role */ /** @var \Drupal\user\RoleInterface $role */
...@@ -60,16 +51,12 @@ public function testBundlePermission() { ...@@ -60,16 +51,12 @@ public function testBundlePermission() {
* @see media_update_8600() * @see media_update_8600()
*/ */
public function testOEmbedConfig() { public function testOEmbedConfig() {
// The drupal-8.media-enabled.php fixture installs Media and all its config, $config = $this->config('media.settings');
// which includes the oembed_providers_url and iframe_domain keys in $this->assertNull($config->get('oembed_providers_url'));
// media.settings. So, in order to prove that the update actually works, $this->assertNull($config->get('iframe_domain'));
// delete the values from config before running the update.
$this->config('media.settings')
->clear('oembed_providers_url')
->clear('iframe_domain')
->save(TRUE);
$this->runUpdates(); $this->runUpdates();
$config = $this->config('media.settings'); $config = $this->config('media.settings');
$this->assertSame('https://oembed.com/providers.json', $config->get('oembed_providers_url')); $this->assertSame('https://oembed.com/providers.json', $config->get('oembed_providers_url'));
$this->assertSame('', $config->get('iframe_domain')); $this->assertSame('', $config->get('iframe_domain'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment