You are here

public function UpdateFeedTest::testUpdateFeed in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/aggregator/src/Tests/UpdateFeedTest.php \Drupal\aggregator\Tests\UpdateFeedTest::testUpdateFeed()

Creates a feed and attempts to update it.

File

core/modules/aggregator/src/Tests/UpdateFeedTest.php, line 19
Contains \Drupal\aggregator\Tests\UpdateFeedTest.

Class

UpdateFeedTest
Update feed test.

Namespace

Drupal\aggregator\Tests

Code

public function testUpdateFeed() {
  $remaining_fields = array(
    'title[0][value]',
    'url[0][value]',
    '',
  );
  foreach ($remaining_fields as $same_field) {
    $feed = $this
      ->createFeed();

    // Get new feed data array and modify newly created feed.
    $edit = $this
      ->getFeedEditArray();

    // Change refresh value.
    $edit['refresh'] = 1800;
    if (isset($feed->{$same_field}->value)) {
      $edit[$same_field] = $feed->{$same_field}->value;
    }
    $this
      ->drupalPostForm('aggregator/sources/' . $feed
      ->id() . '/configure', $edit, t('Save'));
    $this
      ->assertRaw(t('The feed %name has been updated.', array(
      '%name' => $edit['title[0][value]'],
    )), format_string('The feed %name has been updated.', array(
      '%name' => $edit['title[0][value]'],
    )));

    // Check feed data.
    $this
      ->assertUrl($feed
      ->url('canonical', [
      'absolute' => TRUE,
    ]));
    $this
      ->assertTrue($this
      ->uniqueFeed($edit['title[0][value]'], $edit['url[0][value]']), 'The feed is unique.');

    // Check feed source.
    $this
      ->drupalGet('aggregator/sources/' . $feed
      ->id());
    $this
      ->assertResponse(200, 'Feed source exists.');
    $this
      ->assertText($edit['title[0][value]'], 'Page title');

    // Set correct title so deleteFeed() will work.
    $feed->title = $edit['title[0][value]'];

    // Delete feed.
    $this
      ->deleteFeed($feed);
  }
}