class NodeDisplaysFields in Node displays 6.3
Same name and namespace in other branches
- 6 tests/nd.fields.test \NodeDisplaysFields
- 6.2 tests/nd.fields.test \NodeDisplaysFields
- 7 tests/nd.fields.test \NodeDisplaysFields
@file Tests for Node displays (fields)
Hierarchy
- class \DrupalTestCase
- class \DrupalWebTestCase
- class \NodeDisplaysFields
- class \DrupalWebTestCase
Expanded class hierarchy of NodeDisplaysFields
File
- tests/
nd.fields.test, line 8 - Tests for Node displays (fields)
View source
class NodeDisplaysFields extends DrupalWebTestCase {
/**
* Implementation of getInfo().
*/
function getInfo() {
return array(
'name' => t('ND fields'),
'description' => t('Tests for ND fields.'),
'group' => t('Display suite'),
);
}
/**
* Implementation of setUp().
*/
function setUp() {
parent::setUp('ds', 'ds_ui', 'nd');
}
/**
* Test styles
*/
function testNdStyles() {
$admin_user = $this
->drupalCreateUser(array(
'administer nodes',
'access display suite',
'administer styles',
'administer nd',
'configure layout for nd',
'export and import settings',
'revert overridden settings',
'use PHP in custom fields',
));
$this
->drupalLogin($admin_user);
// Setup styles.
$edit = array(
'ds_styles' => 'test-class|Test class',
);
$this
->drupalPost('admin/build/ds/layout/styles', $edit, t('Save configuration'));
$page_node = $this
->drupalCreateNode();
// Save layout and assert class is default.
$edit = array(
'title[full][region]' => 'middle',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertNoRaw('test-class', t('Normal class'), t('Styles tests'));
// Save layout and assert class is .
$edit = array(
'title[full][region]' => 'middle',
'title[full][css-class][]' => 'test-class',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertRaw('field-title test-class', t('Test class found class'), t('Styles tests'));
}
/**
* Test custom fields.
*/
function testNdCustomFields() {
$admin_user = $this
->drupalCreateUser(array(
'administer nodes',
'access display suite',
'administer nd',
'configure layout for nd',
'export and import settings',
'revert overridden settings',
'use PHP in custom fields',
));
$this
->drupalLogin($admin_user);
// Fields
$this
->drupalGet('admin/build/ds/nd/fields');
// Test being empty.
$fields = variable_get('nd_fields', array());
$this
->assertEqual(array(), $fields, t('Fields are empty'), t('Fields.'));
// Valid field.
$edit = array(
'code_key' => 'test_field',
'code_title' => 'Test field label',
'code_code' => '<?php echo "test"; ?>',
);
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save code field'));
$fields = variable_get('nd_fields', array());
$this
->assertTrue(array_key_exists('test_field', $fields), t('test_field exists'), t('Fields'));
$this
->assertEqual($fields['test_field']['title'], $edit['code_title'], t('Title equals Test field label'), t('Fields'));
$this
->assertEqual($fields['test_field']['properties']['code'], $edit['code_code'], t('Code equals <?php echo "test"; ?>'), t('Fields'));
// Try to add the same custom field, must fail.
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save code field'));
$this
->assertText(t('This field already exists.'), 'Key already exists', t('Fields.'));
// Update field.
$edit = array(
'code_title' => 'Test field label 2',
'code_code' => '<?php echo "test"; ?>',
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/test_field', $edit, t('Save code field'));
$fields = variable_get('nd_fields', array());
$this
->assertEqual($fields['test_field']['title'], $edit['code_title'], t('Label equals Test field label 2'), t('Fields'));
$this
->assertEqual(count($fields), 1, t('Only 1 field'), t('Custom fields'));
// Add new field.
$edit = array(
'code_key' => 'test_field_two',
'code_title' => 'Test label 3',
'code_code' => 'My code',
'code_exclude[page]' => TRUE,
);
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save code field'));
$fields = variable_get('nd_fields', array());
$this
->assertEqual($fields['test_field_two']['title'], $edit['code_title'], t('Title equals Test label 3'), t('Fields'));
$this
->assertEqual(count($fields), 2, t('2 custom fields found'), t('Custom fields'));
$this
->drupalGet('admin/build/ds/layout/page');
$this
->assertNoRaw('Test label 3', t('Custom field excluded on page node type'), t('Custom fields'));
$this
->drupalGet('admin/build/ds/layout/story');
$this
->assertRaw('Test label 3', t('Custom field available on story node type'), t('Custom fields'));
// Delete field.
$this
->drupalPost('admin/build/ds/nd/fields/delete/test_field_two', array(), t('Delete'));
$fields = variable_get('nd_fields', array());
$this
->assertFalse(array_key_exists('test_field_two', $fields), t('test_field_two removed'), t('Fields'));
$this
->assertEqual(count($fields), 1, t('Only 1 field'), t('Custom fields'));
// Override field.
$edit = array(
'code_title' => 'Override read more',
'code_code' => '<?php echo "test"; ?>',
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/read_more', $edit, t('Save code field'));
$fields = variable_get('nd_fields', array());
$this
->assertEqual($fields['read_more']['status'], DS_FIELD_STATUS_OVERRIDDEN, t('Read more is overridden'), t('Fields'));
$this
->assertEqual($fields['read_more']['title'], $edit['code_title'], t('Label equals Override read more'), t('Fields'));
$this
->assertEqual(count($fields), 2, t('2 fields'), t('Custom fields'));
// Reset overridden field.
$this
->drupalPost('admin/build/ds/nd/fields/delete/read_more', array(), t('Reset'));
$fields = variable_get('nd_fields', array());
$this
->assertFalse(array_key_exists('read_more', $fields), t('read_more removed'), t('Fields'));
$this
->assertEqual(count($fields), 1, t('Only 1 field'), t('Custom fields'));
// Invalid key.
$edit = array(
'code_key' => 'test_key moehaha',
'code_title' => 'Test label',
'code_code' => 'test code',
);
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save code field'));
$this
->assertText(t('The machine-readable name must contain only lowercase letters, numbers and underscores.'), 'Key is not valid', t('Fields'));
// Add new field and test with real code :)
$edit = array(
'code_key' => 'test_field_real',
'code_title' => 'Real field',
'code_code' => '<?php echo "Day: ". date("d", $object->created); ?>',
);
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save code field'));
// Create page.
$page_node = $this
->drupalCreateNode();
// Let's do another one..
$edit = array(
'title[full][region]' => 'header',
'test_field_real[full][region]' => 'middle',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
// See if it's rendered.
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Day: ' . date("d", $page_node->created), t('Custom field executed.'), t('Fields'));
$this
->assertRaw('field-test-field-real', t('Custom field uses default class'), t('Custom fields'));
// Change same field and see if it's changed (cached fields clear test);
$edit = array(
'code_title' => 'Real field',
'code_code' => '<?php echo "Day month: ". date("d M", $object->created); ?>',
'code_class' => 'custom-class',
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/test_field_real', $edit, t('Save code field'));
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Day month: ' . date("d M", $page_node->created), t('Custom field executed and changed (cached fields is cleared).'), t('Fields'));
$this
->assertRaw('custom-class', t('Custom field uses default class'), t('Custom fields'));
// Test with token module (if available).
$token = drupal_get_filename('module', 'token');
if (!empty($token)) {
module_enable(array(
'token',
));
$edit = array(
'code_title' => 'Real field',
'code_code' => 'Day: [d]',
'code_token' => FALSE,
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/test_field_real', $edit, t('Save code field'));
$fields = variable_get('nd_fields', array());
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertNoText('Day: ' . date("j", $page_node->created), t('Custom field not executed with token support.'), t('Fields'));
$edit = array(
'code_title' => 'Real field',
'code_code' => 'Day: [d]',
'code_token' => TRUE,
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/test_field_real', $edit, t('Save code field'));
$fields = variable_get('nd_fields', array());
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Day: ' . date("j", $page_node->created), t('Custom field executed with token support.'), t('Fields'));
}
}
/**
* Test custom block fields.
*/
function testNdCustomBlockFields() {
$admin_user = $this
->drupalCreateUser(array(
'administer nodes',
'access display suite',
'administer nd',
'configure layout for nd',
'export and import settings',
'revert overridden settings',
'use PHP in custom fields',
));
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/build/ds/nd/fields');
// Valid field.
$edit = array(
'block_key' => 'test_field',
'block_title' => 'Test field label',
'block_block' => 'user|3',
'block_render' => DS_BLOCK_TEMPLATE,
);
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save block field'));
$fields = variable_get('nd_fields', array());
$this
->assertTrue(array_key_exists('test_field', $fields), t('test_field exists'), t('Block fields'));
$this
->assertEqual($fields['test_field']['title'], $edit['block_title'], t('Title equals Test field label'), t('Block fields'));
$this
->assertEqual($fields['test_field']['properties']['block'], $edit['block_block'], t('Code equals user|3'), t('Block fields'));
$this
->assertEqual($fields['test_field']['properties']['render'], $edit['block_render'], t('Code equals ' . DS_BLOCK_TEMPLATE), t('Block fields'));
// Create a node and set some fields.
$page_node = $this
->drupalCreateNode();
$edit = array(
'title[full][region]' => 'header',
'test_field[full][region]' => 'middle',
);
$this
->drupalPost('admin/build/ds/layout/page', $edit, t('Save'));
// Block rendering through template.
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Who\'s online', t('Block title found'), t('Block fields'));
$this
->assertText('There are currently 1 user and 0 guests online.', t('Block text found'), t('Block fields'));
$this
->assertRaw('block-user-3', t('Block ID found'), t('Block fields'));
// Block rendering without template.
$edit = array(
'block_title' => 'Test field label',
'block_block' => 'user|3',
'block_render' => DS_BLOCK_TITLE_CONTENT,
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/test_field', $edit, t('Save block field'));
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Who\'s online', t('Block title found'), t('Block fields'));
$this
->assertText('There are currently 1 user and 0 guests online.', t('Block text found'), t('Block fields'));
$this
->assertNoRaw('block-user-3', t('Block ID found'), t('Block fields'));
// Only block content.
$edit = array(
'block_title' => 'Test field label',
'block_block' => 'user|3',
'block_render' => DS_BLOCK_CONTENT,
);
$this
->drupalPost('admin/build/ds/nd/fields/edit/test_field', $edit, t('Save block field'));
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertNoText('Who\'s online', t('Block title found'), t('Block fields'));
$this
->assertText('There are currently 1 user and 0 guests online.', t('Block text found'), t('Block fields'));
$this
->assertNoRaw('block-user-3', t('Block ID found'), t('Block fields'));
}
/**
* Test custom field labels.
*/
function testNdCustomLabels() {
$admin_user = $this
->drupalCreateUser(array(
'administer nodes',
'access display suite',
'administer nd',
'configure layout for nd',
'export and import settings',
'revert overridden settings',
'use PHP in custom fields',
));
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/build/ds/nd/fields');
$fields = variable_get('nd_fields', array());
// Add a new real field.
$edit = array(
'code_key' => 'test_field_real',
'code_title' => 'Real field',
'code_code' => '<?php echo "Output of a custom field"; ?>',
);
$this
->drupalPost('admin/build/ds/nd/fields', $edit, t('Save code field'));
// Make sure we can use the fields for this test.
$edit = array(
'title[full][region]' => 'header',
'title[full][label][format]' => 'above',
'test_field_real[full][region]' => 'middle',
'test_field_real[full][label][format]' => 'above',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
// Create page.
$page_node = $this
->drupalCreateNode(array(
'title' => 'MyTitle',
));
// Check the value of the labels.
$this
->assertText('Title', t('Title label is shown on page.'), t('Labels'));
$this
->assertText('Real field', t('Custom field label is shown on page.'), t('Labels'));
// Change the label of this new real field.
// Note: run this patch on D6 to allow posts to hidden fields:
// http://drupal.org/node/488810#comment-1693662 .
$edit = array(
'title[full][label_value]' => 'New Title',
'test_field_real[full][label_value]' => 'Unreal field',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
// See if the label values have changed.
$out = $this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('New Title', t('The title label is changed.'), t('Labels'));
$this
->assertText('Unreal field', t('The custom field label is changed.'), t('Labels'));
}
/**
* Test fieldgroups.
*/
function testNdFieldgroups() {
$admin_user = $this
->drupalCreateUser(array(
'administer nodes',
'access display suite',
'administer nd',
'configure layout for nd',
'export and import settings',
'revert overridden settings',
'use PHP in custom fields',
));
$this
->drupalLogin($admin_user);
$this
->drupalGet('admin/build/ds/nd/fieldgroups');
$fields = variable_get('nd_fields', array());
// Add a new fieldgroup.
$edit = array(
'key' => 'test_group',
'name' => 'Test group',
);
$this
->drupalPost('admin/build/ds/nd/fieldgroups', $edit, t('Save fieldgroup'));
$fields = variable_get('nd_fields', array());
$this
->assertTrue(array_key_exists('ds_group_test_group', $fields), t('test_group exists'), t('Fieldgroups'));
$this
->assertEqual($fields['ds_group_test_group']['title'], $edit['name'], t('Title equals Test group'), t('Fieldgroups'));
// Make sure we can use the fields for this test.
$edit = array(
'title[full][region]' => 'header',
'title[full][label][format]' => 'above',
'ds_group_test_group[full][region]' => 'header',
'ds_group_test_group[full][label][format]' => 'above',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
// Create page.
$page_node = $this
->drupalCreateNode(array(
'title' => 'MyTitle',
));
// Title must be shown, test group not.
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Title', t('Title is shown on page.'), t('Fieldgroups'));
$this
->assertNoText('Test group', t('Test group is not shown on page.'), t('Fieldgroups'));
// Put title in the test group fieldset.
// Note: run this patch on D6 to allow posts to hidden fields:
// http://drupal.org/node/488810#comment-1693662 .
$edit = array(
'title[full][parent_id]' => 'ds_group_test_group',
);
$this
->drupalPost('admin/build/ds/layout/page/full', $edit, t('Save'));
// Title must be shown, inside the fieldgroup div.
$this
->drupalGet('node/' . $page_node->nid);
$this
->assertText('Title', t('Title is shown on page.'), t('Fieldgroups'));
$this
->assertText('Test group', t('Test group is not shown on page.'), t('Fieldgroups'));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DrupalTestCase:: |
protected | property | Assertions thrown in that test case. | |
DrupalTestCase:: |
protected | property | The database prefix of this test run. | |
DrupalTestCase:: |
protected | property | The original file directory, before it was changed for testing purposes. | |
DrupalTestCase:: |
protected | property | The original database prefix, before it was changed for testing purposes. | |
DrupalTestCase:: |
public | property | Current results of this test case. | |
DrupalTestCase:: |
protected | property | This class is skipped when looking for the source of an assertion. | |
DrupalTestCase:: |
protected | property | The test run ID. | |
DrupalTestCase:: |
protected | property | Time limit for the test. | |
DrupalTestCase:: |
protected | function | Internal helper: stores the assert. | |
DrupalTestCase:: |
protected | function | Check to see if two values are equal. | |
DrupalTestCase:: |
protected | function | Check to see if a value is false (an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
protected | function | Check to see if two values are identical. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not equal. | |
DrupalTestCase:: |
protected | function | Check to see if two values are not identical. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is NULL. | |
DrupalTestCase:: |
protected | function | Check to see if a value is not false (not an empty string, 0, NULL, or FALSE). | |
DrupalTestCase:: |
public static | function | Delete an assertion record by message ID. | |
DrupalTestCase:: |
protected | function | Fire an error assertion. | |
DrupalTestCase:: |
public | function | Handle errors during test runs. | |
DrupalTestCase:: |
protected | function | Handle exceptions. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always negative. | |
DrupalTestCase:: |
public static | function | Converts a list of possible parameters into a stack of permutations. | |
DrupalTestCase:: |
protected | function | Cycles through backtrace until the first non-assertion method is found. | |
DrupalTestCase:: |
public static | function | Store an assertion from outside the testing context. | |
DrupalTestCase:: |
protected | function | Fire an assertion that is always positive. | |
DrupalTestCase:: |
public static | function | Generates a random string containing letters and numbers. | |
DrupalTestCase:: |
public static | function | Generates a random string of ASCII characters of codes 32 to 126. | |
DrupalTestCase:: |
public | function | Run all tests in this class. | |
DrupalTestCase:: |
protected | function | Logs verbose message in a text file. | |
DrupalWebTestCase:: |
protected | property | Additional cURL options. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The current cookie file used by cURL. | |
DrupalWebTestCase:: |
protected | property | The handle of the current cURL connection. | |
DrupalWebTestCase:: |
protected | property | The value of the Drupal.settings JavaScript variable for the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | The parsed version of the page. | |
DrupalWebTestCase:: |
protected | property | Whether the files were copied to the test files directory. | |
DrupalWebTestCase:: |
protected | property | The headers of the page currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | property | HTTP authentication credentials (<username>:<password>). | |
DrupalWebTestCase:: |
protected | property | HTTP authentication method | |
DrupalWebTestCase:: |
protected | property | The current user logged in using the internal browser. | |
DrupalWebTestCase:: |
protected | property | The original user, before it was changed to a clean uid = 1 for testing purposes. | |
DrupalWebTestCase:: |
protected | property | The content of the page currently loaded in the internal browser (plain text version). | |
DrupalWebTestCase:: |
protected | property | The profile to install as a basis for testing. | |
DrupalWebTestCase:: |
protected | property | The number of redirects followed during the handling of a request. | |
DrupalWebTestCase:: |
protected | property | The current session ID, if available. | |
DrupalWebTestCase:: |
protected | property | The current session name, if available. | |
DrupalWebTestCase:: |
protected | property | The URL currently loaded in the internal browser. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists with the given name or id. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given id and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field exists in the current page by the given XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is found, and optional with the specified index. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is found. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the given value. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the pattern in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that the most recently sent e-mail message has the string in it. | |
DrupalWebTestCase:: |
protected | function | Asserts that each HTML ID is used for just a single element. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name or id. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given id and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist with the given name and value. | |
DrupalWebTestCase:: |
protected | function | Asserts that a field does not exist in the current page by the given XPath. | |
DrupalWebTestCase:: |
protected | function | Asserts that a checkbox field in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Pass if a link with the specified label is not found. | |
DrupalWebTestCase:: |
protected | function | Pass if a link containing a given href (part) is not found. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is not checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the perl regex pattern is not present in raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text is NOT found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page did not return the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is NOT found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is not the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found MORE THAN ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Asserts that a select option in the current page is checked. | |
DrupalWebTestCase:: |
protected | function | Will trigger a pass if the Perl regex pattern is found in the raw content. | |
DrupalWebTestCase:: |
protected | function | Pass if the raw text IS found on the loaded page, fail otherwise. Raw text refers to the raw HTML that the page generated. | |
DrupalWebTestCase:: |
protected | function | Asserts the page responds with the specified response code. | |
DrupalWebTestCase:: |
protected | function | Pass if the text IS found on the text version of the page. The text version is the equivalent of what a user would see when viewing through a web browser. In other words the HTML has been filtered out of the contents. | |
DrupalWebTestCase:: |
protected | function | Helper for assertText and assertNoText. | |
DrupalWebTestCase:: |
protected | function | Pass if the page title is the given string. | |
DrupalWebTestCase:: |
protected | function | Pass if the text is found ONLY ONCE on the text version of the page. | |
DrupalWebTestCase:: |
protected | function | Helper for assertUniqueText and assertNoUniqueText. | |
DrupalWebTestCase:: |
protected | function | Pass if the internal browser's URL matches the given path. | |
DrupalWebTestCase:: |
protected | function | Builds an XPath query. | |
DrupalWebTestCase:: |
protected | function | Check for meta refresh tag and if found call drupalGet() recursively. This function looks for the http-equiv attribute to be set to "Refresh" and is case-sensitive. | |
DrupalWebTestCase:: |
protected | function | Check to make sure that the array of permissions are valid. | |
DrupalWebTestCase:: |
protected | function | Follows a link by name. | |
DrupalWebTestCase:: |
protected | function | Helper function: construct an XPath for the given set of attributes and value. | |
DrupalWebTestCase:: |
protected | function | Runs cron in the Drupal installed by Simpletest. | |
DrupalWebTestCase:: |
protected | function | Close the cURL handler and unset the handler. | |
DrupalWebTestCase:: |
protected | function | Initializes and executes a cURL request. | |
DrupalWebTestCase:: |
protected | function | Reads headers and registers errors received from the tested site. | |
DrupalWebTestCase:: |
protected | function | Initializes the cURL connection. | |
DrupalWebTestCase:: |
protected | function | Compare two files based on size and file name. | |
DrupalWebTestCase:: |
protected | function | Creates a custom content type based on default settings. | |
DrupalWebTestCase:: |
protected | function | Creates a node based on default settings. | |
DrupalWebTestCase:: |
protected | function | Internal helper function; Create a role with specified permissions. | |
DrupalWebTestCase:: |
protected | function | Create a user with a given set of permissions. The permissions correspond to the names given on the privileges page. | |
DrupalWebTestCase:: |
protected | function | Retrieves a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Gets the current raw HTML of requested page. | |
DrupalWebTestCase:: |
protected | function | Gets the value of an HTTP response header. If multiple requests were required to retrieve the page, only the headers from the last request will be checked by default. However, if TRUE is passed as the second argument, all requests will be processed… | |
DrupalWebTestCase:: |
protected | function | Gets the HTTP response headers of the requested page. Normally we are only interested in the headers returned by the last request. However, if a page is redirected or HTTP authentication is in use, multiple requests will be required to retrieve the… | |
DrupalWebTestCase:: |
protected | function | Gets an array containing all e-mails sent during this test case. | |
DrupalWebTestCase:: |
function | Get a node from the database based on its title. | ||
DrupalWebTestCase:: |
protected | function | Gets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Get a list files that can be used in tests. | |
DrupalWebTestCase:: |
protected | function | Generate a token for the currently logged in user. | |
DrupalWebTestCase:: |
protected | function | Retrieves only the headers for a Drupal path or an absolute path. | |
DrupalWebTestCase:: |
protected | function | Log in a user with the internal browser. | |
DrupalWebTestCase:: |
protected | function | ||
DrupalWebTestCase:: |
protected | function | Execute a POST request on a Drupal page. It will be done as usual POST request with SimpleBrowser. | |
DrupalWebTestCase:: |
protected | function | Sets the raw HTML content. This can be useful when a page has been fetched outside of the internal browser and assertions need to be made on the returned page. | |
DrupalWebTestCase:: |
protected | function | Sets the value of the Drupal.settings JavaScript variable for the currently loaded page. | |
DrupalWebTestCase:: |
protected | function | Takes a path and returns an absolute path. | |
DrupalWebTestCase:: |
protected | function | Get all option elements, including nested options, in a select. | |
DrupalWebTestCase:: |
protected | function | Get the selected value from a select field. | |
DrupalWebTestCase:: |
protected | function | Get the current url from the cURL handler. | |
DrupalWebTestCase:: |
protected | function | Handle form input related to drupalPost(). Ensure that the specified fields exist and attempt to create POST data in the correct manner for the particular field type. | |
DrupalWebTestCase:: |
protected | function | Parse content returned from curlExec using DOM and SimpleXML. | |
DrupalWebTestCase:: |
protected | function | Refresh the in-memory set of variables. Useful after a page request is made that changes a variable in a different thread. | |
DrupalWebTestCase:: |
protected | function | Reset all data structures after having enabled new modules. | |
DrupalWebTestCase:: |
protected | function | Delete created files and temporary files directory, delete the tables created by setUp(), and reset the database prefix. | |
DrupalWebTestCase:: |
protected | function | Outputs to verbose the most recent $count emails sent. | |
DrupalWebTestCase:: |
protected | function | Perform an xpath search on the contents of the internal browser. The search is relative to the root element (HTML tag normally) of the page. | |
DrupalWebTestCase:: |
function |
Constructor for DrupalWebTestCase. Overrides DrupalTestCase:: |
||
NodeDisplaysFields:: |
function | Implementation of getInfo(). | ||
NodeDisplaysFields:: |
function |
Implementation of setUp(). Overrides DrupalWebTestCase:: |
||
NodeDisplaysFields:: |
function | Test custom block fields. | ||
NodeDisplaysFields:: |
function | Test custom fields. | ||
NodeDisplaysFields:: |
function | Test custom field labels. | ||
NodeDisplaysFields:: |
function | Test fieldgroups. | ||
NodeDisplaysFields:: |
function | Test styles |