2009-11-20 23:29:28 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Helper module for the Field API tests.
|
|
|
|
*
|
|
|
|
* The module defines
|
|
|
|
* - an entity type (field_test.entity.inc)
|
|
|
|
* - a field type and its formatters and widgets (field_test.field.inc)
|
|
|
|
* - a field storage backend (field_test.storage.inc)
|
|
|
|
*
|
|
|
|
* The main field_test.module file implements generic hooks and provides some
|
|
|
|
* test helper functions
|
|
|
|
*/
|
|
|
|
|
2010-01-28 13:56:25 +00:00
|
|
|
require_once DRUPAL_ROOT . '/modules/field/tests/field_test.entity.inc';
|
|
|
|
require_once DRUPAL_ROOT . '/modules/field/tests/field_test.field.inc';
|
|
|
|
require_once DRUPAL_ROOT . '/modules/field/tests/field_test.storage.inc';
|
2009-11-20 23:29:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_permission().
|
|
|
|
*/
|
|
|
|
function field_test_permission() {
|
|
|
|
$perms = array(
|
|
|
|
'access field_test content' => array(
|
|
|
|
'title' => t('Access field_test content'),
|
|
|
|
'description' => t('View published field_test content.'),
|
|
|
|
),
|
|
|
|
'administer field_test content' => array(
|
|
|
|
'title' => t('Administer field_test content'),
|
|
|
|
'description' => t('Manage field_test content'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
return $perms;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements hook_menu().
|
|
|
|
*/
|
|
|
|
function field_test_menu() {
|
|
|
|
$items = array();
|
|
|
|
$bundles = field_info_bundles('test_entity');
|
|
|
|
|
|
|
|
foreach ($bundles as $bundle_name => $bundle_info) {
|
|
|
|
$bundle_url_str = str_replace('_', '-', $bundle_name);
|
|
|
|
$items['test-entity/add/' . $bundle_url_str] = array(
|
|
|
|
'title' => t('Add %bundle test_entity', array('%bundle' => $bundle_info['label'])),
|
|
|
|
'page callback' => 'field_test_entity_add',
|
|
|
|
'page arguments' => array(2),
|
|
|
|
'access arguments' => array('administer field_test content'),
|
|
|
|
'type' => MENU_NORMAL_ITEM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$items['test-entity/%field_test_entity_test/edit'] = array(
|
|
|
|
'title' => 'Edit test entity',
|
|
|
|
'page callback' => 'field_test_entity_edit',
|
|
|
|
'page arguments' => array(1),
|
|
|
|
'access arguments' => array('administer field_test content'),
|
|
|
|
'type' => MENU_NORMAL_ITEM,
|
|
|
|
);
|
|
|
|
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic op to test _field_invoke behavior.
|
|
|
|
*
|
|
|
|
* This simulates a field operation callback to be invoked by _field_invoke().
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function field_test_field_test_op($entity_type, $entity, $field, $instance, $langcode, &$items) {
|
2010-05-01 08:12:23 +00:00
|
|
|
return array($langcode => hash('sha256', serialize(array($entity_type, $entity, $field['field_name'], $langcode, $items))));
|
2009-11-20 23:29:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generic op to test _field_invoke_multiple behavior.
|
|
|
|
*
|
|
|
|
* This simulates a multiple field operation callback to be invoked by
|
|
|
|
* _field_invoke_multiple().
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function field_test_field_test_op_multiple($entity_type, $entities, $field, $instances, $langcode, &$items) {
|
2009-11-20 23:29:28 +00:00
|
|
|
$result = array();
|
2010-02-11 17:44:47 +00:00
|
|
|
foreach ($entities as $id => $entity) {
|
2010-05-01 08:12:23 +00:00
|
|
|
$result[$id] = array($langcode => hash('sha256', serialize(array($entity_type, $entity, $field['field_name'], $langcode, $items[$id]))));
|
2009-11-20 23:29:28 +00:00
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-03-25 11:46:21 +00:00
|
|
|
* Implements hook_field_available_languages_alter().
|
2009-11-20 23:29:28 +00:00
|
|
|
*/
|
2010-03-25 11:46:21 +00:00
|
|
|
function field_test_field_available_languages_alter(&$languages, $context) {
|
|
|
|
if (variable_get('field_test_field_available_languages_alter', FALSE)) {
|
2009-11-20 23:29:28 +00:00
|
|
|
// Add an unavailable language.
|
|
|
|
$languages[] = 'xx';
|
|
|
|
// Remove an available language.
|
2010-03-25 11:46:21 +00:00
|
|
|
$index = array_search('en', $languages);
|
|
|
|
unset($languages[$index]);
|
2009-11-20 23:29:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-03-25 11:46:21 +00:00
|
|
|
* Implements hook_field_language_alter().
|
2009-11-20 23:29:28 +00:00
|
|
|
*/
|
2010-03-25 11:46:21 +00:00
|
|
|
function field_test_field_language_alter(&$display_language, $context) {
|
|
|
|
locale_field_language_fallback($display_language, $context['entity'], $context['language']);
|
2009-11-20 23:29:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store and retrieve keyed data for later verification by unit tests.
|
|
|
|
*
|
|
|
|
* This function is a simple in-memory key-value store with the
|
|
|
|
* distinction that it stores all values for a given key instead of
|
|
|
|
* just the most recently set value. field_test module hooks call
|
|
|
|
* this function to record their arguments, keyed by hook name. The
|
|
|
|
* unit tests later call this function to verify that the correct
|
|
|
|
* hooks were called and were passed the correct arguments.
|
|
|
|
*
|
|
|
|
* This function ignores all calls until the first time it is called
|
|
|
|
* with $key of NULL. Each time it is called with $key of NULL, it
|
|
|
|
* erases all previously stored data from its internal cache, but also
|
|
|
|
* returns the previously stored data to the caller. A typical usage
|
|
|
|
* scenario is:
|
|
|
|
*
|
|
|
|
* @code
|
|
|
|
* // calls to field_test_memorize() here are ignored
|
|
|
|
*
|
|
|
|
* // turn on memorization
|
|
|
|
* field_test_memorize();
|
|
|
|
*
|
|
|
|
* // call some Field API functions that invoke field_test hooks
|
|
|
|
* $field = field_create_field(...);
|
|
|
|
*
|
|
|
|
* // retrieve and reset the memorized hook call data
|
|
|
|
* $mem = field_test_memorize();
|
|
|
|
*
|
|
|
|
* // make sure hook_field_create_field() is invoked correctly
|
|
|
|
* assertEqual(count($mem['field_test_field_create_field']), 1);
|
|
|
|
* assertEqual($mem['field_test_field_create_field'][0], array($field));
|
|
|
|
* @endcode
|
|
|
|
*
|
|
|
|
* @param $key
|
|
|
|
* The key under which to store to $value, or NULL as described above.
|
|
|
|
* @param $value
|
|
|
|
* A value to store for $key.
|
|
|
|
* @return
|
|
|
|
* An array mapping each $key to an array of each $value passed in
|
|
|
|
* for that key.
|
|
|
|
*/
|
|
|
|
function field_test_memorize($key = NULL, $value = NULL) {
|
|
|
|
$memorize = &drupal_static(__FUNCTION__, NULL);
|
|
|
|
|
|
|
|
if (is_null($key)) {
|
|
|
|
$return = $memorize;
|
|
|
|
$memorize = array();
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
if (is_array($memorize)) {
|
|
|
|
$memorize[$key][] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memorize calls to hook_field_create_field().
|
|
|
|
*/
|
|
|
|
function field_test_field_create_field($field) {
|
|
|
|
$args = func_get_args();
|
|
|
|
field_test_memorize(__FUNCTION__, $args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memorize calls to hook_field_insert().
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function field_test_field_insert($entity_type, $entity, $field, $instance, $items) {
|
2009-11-20 23:29:28 +00:00
|
|
|
$args = func_get_args();
|
|
|
|
field_test_memorize(__FUNCTION__, $args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memorize calls to hook_field_update().
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function field_test_field_update($entity_type, $entity, $field, $instance, $items) {
|
2009-11-20 23:29:28 +00:00
|
|
|
$args = func_get_args();
|
|
|
|
field_test_memorize(__FUNCTION__, $args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memorize calls to hook_field_delete().
|
|
|
|
*/
|
2010-02-11 17:44:47 +00:00
|
|
|
function field_test_field_delete($entity_type, $entity, $field, $instance, $items) {
|
2009-11-20 23:29:28 +00:00
|
|
|
$args = func_get_args();
|
|
|
|
field_test_memorize(__FUNCTION__, $args);
|
|
|
|
}
|