function AggregatorConfigurationTestCase::testSettingsPage

7.x aggregator.test AggregatorConfigurationTestCase::testSettingsPage()

Tests the settings form to ensure the correct default values are used.

File

drupal-7.x/modules/aggregator/aggregator.test, line 324
Tests for aggregator.module.

Class

AggregatorConfigurationTestCase
Tests functionality of the configuration settings in the Aggregator module.

Code

function testSettingsPage() {
  $edit = array(
    'aggregator_allowed_html_tags' => '<a>',
    'aggregator_summary_items' => 10,
    'aggregator_clear' => 3600,
    'aggregator_category_selector' => 'select',
    'aggregator_teaser_length' => 200,
  );
  $this->drupalPost('admin/config/services/aggregator/settings', $edit, t('Save configuration'));
  $this->assertText(t('The configuration options have been saved.'));

  foreach ($edit as $name => $value) {
    $this->assertFieldByName($name, $value, format_string('"@name" has correct default value.', array('@name' => $name)));
  }
}