diff options
author | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-13 23:09:38 +0000 |
---|---|---|
committer | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-13 23:09:38 +0000 |
commit | 7c3434d467308d128f665b4b855d8d293ee7852b (patch) | |
tree | 8c752273b652a06bef7dad284f5fe0ea012b1490 | |
parent | bda4f8190d4add0a2e2cfcdf3e842b26665f4117 (diff) | |
download | elgg-7c3434d467308d128f665b4b855d8d293ee7852b.tar.gz elgg-7c3434d467308d128f665b4b855d8d293ee7852b.tar.bz2 |
Creating a generic ElggSite unit test.
git-svn-id: http://code.elgg.org/elgg/trunk@3534 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/lib/sites.php | 15 | ||||
-rw-r--r-- | engine/tests/objects/sites.php | 75 |
2 files changed, 85 insertions, 5 deletions
diff --git a/engine/lib/sites.php b/engine/lib/sites.php index 14cc2039d..e12a745c5 100644 --- a/engine/lib/sites.php +++ b/engine/lib/sites.php @@ -139,7 +139,7 @@ if ($CONFIG->site->getGUID() == $this->guid) throw new SecurityException('SecurityException:deletedisablecurrentsite'); - return parent::delete; + return parent::delete(); } /** @@ -603,7 +603,12 @@ } // Register event handlers - - register_elgg_event_handler('boot','system','sites_init',2); - -?>
\ No newline at end of file + register_elgg_event_handler('boot','system','sites_init',2); + + // Register with unit test + register_plugin_hook('unit_test', 'system', 'sites_test'); + function sites_test($hook, $type, $value, $params) { + global $CONFIG; + $value[] = "{$CONFIG->path}engine/tests/objects/sites.php"; + return $value; + } diff --git a/engine/tests/objects/sites.php b/engine/tests/objects/sites.php new file mode 100644 index 000000000..696ae3da1 --- /dev/null +++ b/engine/tests/objects/sites.php @@ -0,0 +1,75 @@ +<?php +/** + * Elgg Test ElggSite + * + * @package Elgg + * @subpackage Test + * @author Curverider Ltd + * @link http://elgg.org/ + */ +class ElggCoreSiteTest extends ElggCoreUnitTest { + + /** + * Called before each test object. + */ + public function __construct() { + parent::__construct(); + } + + /** + * Called before each test method. + */ + public function setUp() { + $this->site = new ElggSiteTest; + } + + /** + * Called after each test method. + */ + public function tearDown() { + $this->swallowErrors(); + unset($this->site); + } + + /** + * Called after each test object. + */ + public function __destruct() { + parent::__destruct(); + } + + /** + * A basic test that will be called and fail. + */ + public function testElggSiteConstructor() { + $attributes = array(); + $attributes['guid'] = ''; + $attributes['type'] = 'site'; + $attributes['subtype'] = ''; + $attributes['owner_guid'] = get_loggedin_userid(); + $attributes['container_guid'] = get_loggedin_userid(); + $attributes['site_guid'] = 0; + $attributes['access_id'] = ACCESS_PRIVATE; + $attributes['time_created'] = ''; + $attributes['time_updated'] = ''; + $attributes['enabled'] = 'yes'; + $attributes['tables_split'] = 2; + $attributes['tables_loaded'] = 0; + $attributes['name'] = ''; + $attributes['description'] = ''; + $attributes['url'] = ''; + + $this->assertIdentical($this->site->expose_attributes(), $attributes); + } + + public function testElggSiteSaveAndDelete() { + $this->assertTrue($this->site->save()); + $this->assertTrue($this->site->delete()); + } +} + +class ElggSiteTest extends ElggSite { + public function expose_attributes() { + return $this->attributes; + } +} |