2009-08-13 23:09:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once('PHPUnit/Framework.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../../mockpress/mockpress.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../classes/WhatDidTheySayAdmin.php');
|
|
|
|
|
|
|
|
class WhatDidTheySayAdminTest extends PHPUnit_Framework_TestCase {
|
|
|
|
function setUp() {
|
|
|
|
_reset_wp();
|
|
|
|
}
|
|
|
|
|
|
|
|
function testReadLanguageData() {
|
|
|
|
$admin = new WhatDidTheySayAdmin();
|
|
|
|
|
|
|
|
$this->assertTrue(count($admin->read_language_file()) > 0);
|
|
|
|
}
|
2009-08-14 02:13:46 +00:00
|
|
|
|
|
|
|
function providerTestHandleUpdateLanguages() {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
array(
|
|
|
|
array('en' => array('name' => 'English'), 'de' => array('name' => 'German')),
|
|
|
|
array('code' => 'en', 'action' => 'delete'),
|
|
|
|
array('de' => array('name' => 'German'))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestHandleUpdateLanguages
|
|
|
|
*/
|
|
|
|
function testHandleUpdateLanguages($original_options, $form_submission, $expected_results) {
|
2009-08-13 23:09:10 +00:00
|
|
|
$admin = new WhatDidTheySayAdmin();
|
|
|
|
$admin->all_languages = array(
|
|
|
|
'en' => 'English',
|
2009-08-14 02:13:46 +00:00
|
|
|
'de' => 'German',
|
|
|
|
'fr' => 'French'
|
2009-08-13 23:09:10 +00:00
|
|
|
);
|
2009-08-14 02:13:46 +00:00
|
|
|
|
|
|
|
update_option('what-did-they-say-options', array('languages', $original_options));
|
2009-08-13 23:09:10 +00:00
|
|
|
|
2009-08-14 02:13:46 +00:00
|
|
|
$admin->handle_update_languages($form_submission);
|
2009-08-13 23:32:42 +00:00
|
|
|
|
|
|
|
$options = get_option('what-did-they-say-options');
|
2009-08-14 02:13:46 +00:00
|
|
|
$this->assertEquals($expected_results, $options['languages']);
|
2009-08-13 23:32:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testHandleUpdateAllowedUsers() {
|
|
|
|
$admin = new WhatDidTheySayAdmin();
|
|
|
|
|
|
|
|
wp_insert_user((object)array('ID' => 1));
|
2009-08-13 23:09:10 +00:00
|
|
|
|
2009-08-13 23:32:42 +00:00
|
|
|
$admin->handle_update_allowed_users(array(1, 2));
|
|
|
|
|
|
|
|
$options = get_option('what-did-they-say-options');
|
|
|
|
$this->assertEquals(array(1), $options['allowed_users']);
|
2009-08-13 23:09:10 +00:00
|
|
|
}
|
2009-08-13 23:36:47 +00:00
|
|
|
|
|
|
|
function testHandleUpdateOptions() {
|
|
|
|
$admin = new WhatDidTheySayAdmin();
|
|
|
|
|
|
|
|
update_option('what-did-they-say-options', array('only_allowed_users' => false));
|
|
|
|
|
|
|
|
$admin->handle_update_options(array(
|
|
|
|
'only_allowed_users' => 'yes'
|
|
|
|
));
|
|
|
|
|
|
|
|
$options = get_option('what-did-they-say-options');
|
|
|
|
$this->assertTrue($options['only_allowed_users']);
|
|
|
|
|
|
|
|
}
|
2009-08-13 23:09:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|