You are here

function UpdateContribTest::testUpdateBrokenFetchURL in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/update/src/Tests/UpdateContribTest.php \Drupal\update\Tests\UpdateContribTest::testUpdateBrokenFetchURL()

Makes sure that if we fetch from a broken URL, sane things happen.

File

core/modules/update/src/Tests/UpdateContribTest.php, line 330
Contains \Drupal\update\Tests\UpdateContribTest.

Class

UpdateContribTest
Tests how the Update Manager module handles contributed modules and themes in a series of functional tests using mock XML data.

Namespace

Drupal\update\Tests

Code

function testUpdateBrokenFetchURL() {
  $system_info = array(
    '#all' => array(
      'version' => '8.0.0',
    ),
    'aaa_update_test' => array(
      'project' => 'aaa_update_test',
      'version' => '8.x-1.0',
      'hidden' => FALSE,
    ),
    'bbb_update_test' => array(
      'project' => 'bbb_update_test',
      'version' => '8.x-1.0',
      'hidden' => FALSE,
    ),
    'ccc_update_test' => array(
      'project' => 'ccc_update_test',
      'version' => '8.x-1.0',
      'hidden' => FALSE,
    ),
  );
  $this
    ->config('update_test.settings')
    ->set('system_info', $system_info)
    ->save();
  $xml_mapping = array(
    'drupal' => '0.0',
    'aaa_update_test' => '1_0',
    'bbb_update_test' => 'does-not-exist',
    'ccc_update_test' => '1_0',
  );
  $this
    ->refreshUpdateStatus($xml_mapping);
  $this
    ->assertText(t('Up to date'));

  // We're expecting the report to say most projects are up to date, so we
  // hope that 'Up to date' is not unique.
  $this
    ->assertNoUniqueText(t('Up to date'));

  // It should say we failed to get data, not that we're missing an update.
  $this
    ->assertNoText(t('Update available'));

  // We need to check that this string is found as part of a project row, not
  // just in the "Failed to get available update data" message at the top of
  // the page.
  $this
    ->assertRaw('<div class="project-update__status">' . t('Failed to get available update data'));

  // We should see the output messages from fetching manually.
  $this
    ->assertUniqueText(t('Checked available update data for 3 projects.'));
  $this
    ->assertUniqueText(t('Failed to get available update data for one project.'));

  // The other two should be listed as projects.
  $this
    ->assertRaw(\Drupal::l(t('AAA Update test'), Url::fromUri('http://example.com/project/aaa_update_test')), 'Link to aaa_update_test project appears.');
  $this
    ->assertNoRaw(\Drupal::l(t('BBB Update test'), Url::fromUri('http://example.com/project/bbb_update_test')), 'Link to bbb_update_test project does not appear.');
  $this
    ->assertRaw(\Drupal::l(t('CCC Update test'), Url::fromUri('http://example.com/project/ccc_update_test')), 'Link to bbb_update_test project appears.');
}