You are here

class LinkContentCrudTest in Link 6.2

Same name and namespace in other branches
  1. 6 tests/link.crud.test \LinkContentCrudTest

Hierarchy

Expanded class hierarchy of LinkContentCrudTest

File

tests/link.crud.test, line 11
Basic CRUD simpletests for the link module, based off of content.crud.test in CCK.

View source
class LinkContentCrudTest extends ContentCrudTestCase {
  function getInfo() {
    return array(
      'name' => t('Link CRUD - Basic API tests'),
      'description' => t('Tests the field CRUD (create, read, update, delete) API. <strong>Requires <a href="@schema_link">Schema module</a>.</strong>', array(
        '@schema_link' => 'http://www.drupal.org/project/schema',
      )),
      'group' => t('Link'),
    );
  }
  function setUp() {
    parent::setUp('link');
    $this
      ->loginWithPermissions();
  }

  /**
   * All we're doing here is creating a content type, creating a simple link field
   * on that content type, and making sure said field exists in the database.
   */
  function testLinkCreateFieldAPI() {
    $this
      ->acquireContentTypes(1);
    $field = $this
      ->createField(array(
      'type' => 'link',
      'widget_type' => 'link',
    ), 0);

    //$this->pass(print_r($this->content_types, TRUE));

    //$this->pass(print_r($field, TRUE));
    $table_schema = drupal_get_schema();

    //$this->pass(print_r(array_keys($table_schema), TRUE));

    // Check the schema - the values should be in the per-type table.
    $this
      ->assertSchemaMatchesTables(array(
      'per_type' => array(
        $this->content_types[0]->type => array(
          $field['field_name'] => array(
            'url',
            'title',
            'attributes',
          ),
        ),
      ),
    ));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LinkContentCrudTest::getInfo function
LinkContentCrudTest::setUp function
LinkContentCrudTest::testLinkCreateFieldAPI function All we're doing here is creating a content type, creating a simple link field on that content type, and making sure said field exists in the database.