You are here

public function LinkFieldCrudTest::testCrudCreateFieldDefaults in Link 7

CRUD Create Field Defaults.

If we're creating a new field and just hit 'save' on the default options, we want to make sure they are set to the expected results.

File

tests/LinkFieldCrudTest.test, line 315
Testing that users can not input bad URLs or labels.

Class

LinkFieldCrudTest
Testing that users can not input bad URLs or labels.

Code

public function testCrudCreateFieldDefaults() {
  $this->web_user = $this
    ->drupalCreateUser(array(
    'administer content types',
    'administer fields',
    'access content',
    'create page content',
  ));
  $this
    ->drupalLogin($this->web_user);

  // Create field.
  $name = strtolower($this
    ->randomName());
  $edit = array(
    'fields[_add_new_field][label]' => $name,
    'fields[_add_new_field][field_name]' => $name,
    'fields[_add_new_field][type]' => 'link_field',
    'fields[_add_new_field][widget_type]' => 'link_field',
  );
  $this
    ->drupalPost('admin/structure/types/manage/page/fields', $edit, t('Save'));
  $this
    ->drupalPost(NULL, array(), t('Save field settings'));
  $this
    ->drupalPost(NULL, array(), t('Save settings'));

  // Is field created?
  $this
    ->assertRaw(t('Saved %label configuration', array(
    '%label' => $name,
  )), 'Field added');
  node_types_rebuild();
  menu_rebuild();
  _field_info_collate_fields(TRUE);
  $instances = field_info_instances('node', 'page');
  $instance = $instances['field_' . $name];
  $this
    ->assertFalse($instance['required'], 'Make sure field is not required.');
  $this
    ->assertEqual($instance['settings']['title'], 'optional', 'Title should be optional by default.');
  $this
    ->assertTrue($instance['settings']['validate_url'], 'Make sure validation is on.');
  $this
    ->assertTrue($instance['settings']['enable_tokens'], 'Enable Tokens should be on by default.');
  $this
    ->assertEqual($instance['settings']['display']['url_cutoff'], 80, 'Url cutoff should be at 80 characters.');
  $this
    ->assertEqual($instance['settings']['attributes']['target'], 'default', 'Target should be "default"');
  $this
    ->assertFalse($instance['settings']['attributes']['rel'], 'Rel should be blank by default.');
  $this
    ->assertFalse($instance['settings']['attributes']['class'], 'By default, no class should be set.');
  $this
    ->assertFalse($instance['settings']['title_value'], 'By default, no title should be set.');
}