class LdapTestCase in Lightweight Directory Access Protocol (LDAP) 8.2
Same name and namespace in other branches
- 7.2 ldap_test/LdapTestCase.class.php \LdapTestCase
Hierarchy
- class \LdapTestCase extends \DrupalWebTestCase
Expanded class hierarchy of LdapTestCase
File
- ldap_test/
LdapTestCase.class.php, line 13
View source
class LdapTestCase extends DrupalWebTestCase {
public $testFunctions;
public $module_name;
// storage for test data
public $useFeatureData;
public $featurePath;
public $featureName;
public $consumerAdminConf;
public $ldapTestId;
public $authorizationData;
public $authenticationData;
public $testData = array();
public $sid;
// current, or only, sid
function __construct($test_id = NULL) {
parent::__construct($test_id);
$this->testFunctions = new LdapTestFunctions();
}
function setUp() {
$modules = func_get_args();
if (isset($modules[0]) && is_array($modules[0])) {
$modules = $modules[0];
}
parent::setUp($modules);
variable_set('ldap_simpletest', 2);
variable_set('ldap_help_watchdog_detail', 0);
$this
->createTestUserFields();
}
function tearDown() {
parent::tearDown();
variable_del('ldap_help_watchdog_detail');
variable_del('ldap_simpletest');
}
/**
* setup configuration and fake test data for all ldap modules
*
* @param string $test_ldap_id name of directory in ldap_test where data is (e.g. hogwarts)
*
* the following params are ids that indicate what config data in /ldap_test/<module_name>.conf.inc to use
* for example if $ldap_user_conf_id = 'ad_authentication', the array /ldap_test/ldap_user.conf.inc with the key
* 'ad_authentication' will be used for the user module cofiguration
*
* @param array $sids to setup
* @param string $ldap_user_conf_id
* @param string $ldap_authentication_conf_id = NULL,
* @param string $ldap_authorization_conf_id = NULL,
* @param string $ldap_feeds_conf_id = NULL,
* @param string $ldap_query_conf_id = NULL
*/
function prepTestData($test_ldap_id, $sids, $ldap_user_conf_id = NULL, $ldap_authentication_conf_id = NULL, $ldap_authorization_conf_id = NULL, $ldap_feeds_conf_id = NULL, $ldap_query_conf_id = NULL) {
$this->testFunctions
->configureLdapServers($sids);
foreach ($sids as $sid) {
$this->testFunctions
->populateFakeLdapServerData($test_ldap_id, $sid);
}
if ($ldap_user_conf_id) {
$this->testFunctions
->configureLdapUser($ldap_user_conf_id);
}
if ($ldap_authentication_conf_id) {
$this->testFunctions
->configureLdapAuthentication($ldap_authentication_conf_id, $sids);
}
if ($ldap_authorization_conf_id) {
$authorization_data = ldap_test_ldap_authorization_data();
if (!empty($authorization_data[$ldap_authorization_conf_id])) {
$this->testFunctions
->prepConsumerConf($authorization_data[$ldap_authorization_conf_id]);
foreach ($authorization_data[$ldap_authorization_conf_id] as $consumer_type => $discard) {
$this->consumerAdminConf[$consumer_type] = ldap_authorization_get_consumer_admin_object($consumer_type);
}
}
}
}
/**
* attempt to derive a testid from backtrace
*/
public function testId($description = NULL, $method = NULL) {
static $test_id;
static $i;
if ($description || $method) {
$test_id = NULL;
$i = 0;
}
elseif ($test_id) {
// default test id
$i++;
return $test_id . '.' . $i;
}
if (!$method) {
$trace = debug_backtrace();
$caller = array_shift($trace);
$caller = array_shift($trace);
$method = $caller['function'];
$count = 1;
$method = str_replace('test', '', $method, $count);
}
$test_id = join(".", array(
$this->module_name,
$method,
$description,
));
return $test_id;
}
public function removeUserFromGroup(&$test_data, $user_dn, $group_dn, $domain = "dc=hogwarts,dc=edu") {
$filter = "(&(objectClass=group)(member={$user_dn}))";
if (!empty($test_data['search_results'][$filter][$domain]) && in_array($group_dn, $test_data['search_results'][$filter][$domain])) {
$test_data['search_results'][$filter][$domain] = array_diff($test_data['search_results'][$filter][$domain], array(
$group_dn,
));
$test_data['search_results'][$filter][$domain]['count'] = count($test_data['search_results'][$filter][$domain] - 1);
}
//debug("removeUserFromGroup:debug test_data[search_results][$filter]"); debug($test_data['search_results']['(&(objectClass=group)(member=$user_dn))']);
if (!empty($test_data['users'][$user_dn]['attr']['memberof']) && in_array($group_dn, $test_data['users'][$user_dn]['attr']['memberof'])) {
$test_data['users'][$user_dn]['attr']['memberof'] = array_diff($test_data['users'][$user_dn]['attr']['memberof'], array(
$group_dn,
));
$test_data['users'][$user_dn]['attr']['memberof']['count'] = count($test_data['users'][$user_dn]['attr']['memberof'] - 1);
}
//debug("removeUserFromGroup:debug test_data[users][$user_dn]"); debug($test_data['users'][$user_dn]);
if (!empty($test_data['ldap'][$user_dn]['memberof']) && in_array($group_dn, $test_data['ldap'][$user_dn]['memberof'])) {
$test_data['ldap'][$user_dn]['memberof'] = array_diff($test_data['ldap'][$user_dn]['memberof'], array(
$group_dn,
));
$test_data['ldap'][$user_dn]['memberof']['count'] = count($test_data['ldap'][$user_dn]['memberof']) - 1;
}
//debug("removeUserFromGroup:debug test_data[ldap][$user_dn]"); debug($test_data['ldap'][$user_dn]);
if (!empty($test_data['groups'][$group_dn]['attr']['member']) && in_array($group_dn, $test_data['groups'][$group_dn]['attr']['member'])) {
$members = array_diff($test_data['groups'][$group_dn]['attr']['member'], array(
$group_dn,
));
$test_data['groups'][$group_dn]['attr']['member'] = $members;
$test_data['groups'][$group_dn]['attr']['member'][$i]['count'] = count($members - 1);
}
//debug("removeUserFromGroup:debug test_data[groups][$group_dn]"); debug($test_data['groups'][$group_dn]);
}
public function AttemptLogonNewUser($name, $goodpwd = TRUE) {
$this
->drupalLogout();
$edit = array(
'name' => $name,
'pass' => $goodpwd ? "goodpwd" : "badpwd",
);
$user = user_load_by_name($name);
if ($user) {
user_delete($user->uid);
}
$this
->drupalPost('user', $edit, t('Log in'));
}
/**
* keep user entity fields function for ldap_user
* in base class instead of user test class in case
* module integration testing is needed
*/
function createTestUserFields() {
foreach ($this
->ldap_user_test_entity_fields() as $field_id => $field_conf) {
$field_info = field_info_field($field_id);
if (!$field_info) {
field_create_field($field_conf['field']);
field_create_instance($field_conf['instance']);
}
$field_info = field_info_field($field_id);
}
}
function ldap_user_test_entity_fields() {
$fields = array();
$fields['field_lname']['field'] = array(
'field_name' => 'field_lname',
'type' => 'text',
'settings' => array(
'max_length' => 64,
),
);
$fields['field_lname']['instance'] = array(
'field_name' => 'field_lname',
'entity_type' => 'user',
'label' => 'Last Name',
'bundle' => 'user',
'required' => FALSE,
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'type' => 'text_default',
),
),
'settings' => array(
'user_register_form' => FALSE,
),
);
$fields['field_department']['field'] = array(
'field_name' => 'field_department',
'type' => 'text',
'settings' => array(
'max_length' => 64,
),
);
$fields['field_department']['instance'] = array(
'field_name' => 'field_department',
'entity_type' => 'user',
'label' => 'Department',
'bundle' => 'user',
'required' => FALSE,
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'type' => 'text_default',
),
),
'settings' => array(
'user_register_form' => FALSE,
),
);
$fields['field_fname']['field'] = array(
'field_name' => 'field_fname',
'type' => 'text',
'settings' => array(
'max_length' => 64,
),
);
$fields['field_fname']['instance'] = array(
'field_name' => 'field_fname',
'entity_type' => 'user',
'label' => 'Last Name',
'bundle' => 'user',
'required' => FALSE,
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'type' => 'text_default',
),
),
'settings' => array(
'user_register_form' => FALSE,
),
);
// display name for testing compound tokens
$fields['field_display_name']['field'] = array(
'field_name' => 'field_display_name',
'type' => 'text',
'settings' => array(
'max_length' => 64,
),
);
$fields['field_display_name']['instance'] = array(
'field_name' => 'field_display_name',
'entity_type' => 'user',
'label' => 'Display Name',
'bundle' => 'user',
'required' => FALSE,
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'type' => 'text_default',
),
),
'settings' => array(
'user_register_form' => FALSE,
),
);
// display name for testing compound tokens
$fields['field_binary_test']['field'] = array(
'field_name' => 'field_binary_test',
'type' => 'text',
'size' => 'big',
);
$fields['field_binary_test']['instance'] = array(
'field_name' => 'field_binary_test',
'entity_type' => 'user',
'label' => 'Binary Field',
'bundle' => 'user',
'required' => FALSE,
'widget' => array(
'type' => 'text_textfield',
),
'display' => array(
'default' => array(
'type' => 'text_default',
),
),
'settings' => array(
'user_register_form' => FALSE,
),
);
return $fields;
}
public function checkConsumerConfSetup($conf_id) {
$authorization_data = ldap_test_ldap_authorization_data();
$props_set_correctly = TRUE;
foreach ($authorization_data[$conf_id] as $consumer_type => $conf) {
$props_set_display = array();
foreach ($conf as $prop => $values) {
if (!property_exists($this->consumerAdminConf[$consumer_type], $prop)) {
$props_set_correctly = FALSE;
$props_set_display[] = $prop . " {$consumer_type} property does not exist in consumer conf object";
}
elseif (is_scalar($this->consumerAdminConf[$consumer_type]->{$prop})) {
if ($this->consumerAdminConf[$consumer_type]->{$prop} == $values) {
$props_set_display[] = $prop . " {$consumer_type} set to {$values} correctly";
}
else {
$props_set_correctly = FALSE;
$props_set_display[] = $prop . " {$consumer_type} not set to {$values} correctly";
}
}
}
}
return array(
$props_set_display,
$props_set_correctly,
);
}
public function compareFormToProperties($object, $data, $item_id, $map, $lcase_transformed) {
$mismatches = array();
foreach ($data as $field_id => $values) {
$field_id = drupal_strtolower($field_id);
if (!isset($map[$field_id])) {
continue;
}
$property = $map[$field_id];
if (!is_object($object) || !property_exists($object, $property) && !property_exists($object, drupal_strtolower($property))) {
continue;
}
$property_value = $object->{$property};
$field_value = isset($values[$item_id + 2]) ? $values[$item_id + 2] : $values[$item_id];
// for cases where string input is not same as array.
if (in_array($field_id, $lcase_transformed) && is_scalar($field_value)) {
$field_value = drupal_strtolower($field_value);
}
$property_value_show = is_scalar($property_value) ? $property_value : serialize($property_value);
$field_value_show = is_scalar($field_value) ? $field_value : serialize($field_value);
if (is_array($property_value) && is_array($field_value)) {
$pass = count(array_diff($property_value, $field_value)) == 0;
}
elseif (is_scalar($property_value) && is_scalar($field_value)) {
$pass = $property_value == $field_value;
}
else {
$pass = FALSE;
}
if (!$pass) {
$mismatches[] = "property {$property} ({$property_value_show}) does not match field {$field_id} value ({$field_value_show})";
}
}
return $mismatches;
}
}