blob: a01a661e36692c8b5674878b3332154f7d56d5da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?php
/**
* Elgg Test ElggSite
*
* @package Elgg
* @subpackage Test
*/
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();
}
public function testElggSiteConstructor() {
$attributes = array();
$attributes['guid'] = NULL;
$attributes['type'] = 'site';
$attributes['subtype'] = NULL;
$attributes['owner_guid'] = elgg_get_logged_in_user_guid();
$attributes['container_guid'] = elgg_get_logged_in_user_guid();
$attributes['site_guid'] = NULL;
$attributes['access_id'] = ACCESS_PRIVATE;
$attributes['time_created'] = NULL;
$attributes['time_updated'] = NULL;
$attributes['last_action'] = NULL;
$attributes['enabled'] = 'yes';
$attributes['tables_split'] = 2;
$attributes['tables_loaded'] = 0;
$attributes['name'] = NULL;
$attributes['description'] = NULL;
$attributes['url'] = NULL;
ksort($attributes);
$entity_attributes = $this->site->expose_attributes();
ksort($entity_attributes);
$this->assertIdentical($entity_attributes, $attributes);
}
public function testElggSiteSaveAndDelete() {
$guid = $this->site->save();
$this->assertIsA($guid, 'int');
$this->assertTrue($guid > 0);
$this->assertIdentical(true, $this->site->delete());
}
}
class ElggSiteTest extends ElggSite {
public function expose_attributes() {
return $this->attributes;
}
}
|