blob: d173f005d96c02ae20115d0f3708e1b9093ac7ee (
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
|
<?php
Prado::using('System.Data.ActiveRecord.TActiveRecord');
require_once(dirname(__FILE__).'/records/Blogs.php');
class ActiveRecordMySql5TestCase extends UnitTestCase
{
function setup()
{
$conn = new TDbConnection('mysql:host=localhost;dbname=ar_test;port=3307', 'test5','test5');
TActiveRecordManager::getInstance()->setDbConnection($conn);
}
function test_find_first_blog()
{
$blog = Blogs::finder()->findByPk(1);
$this->assertNotNull($blog);
}
function test_insert_new_blog()
{
$blog = new Blogs();
$blog->blog_name = 'test1';
$blog->blog_author = 'wei';
$this->assertTrue($blog->save());
$blog->blog_name = 'test2';
$this->assertTrue($blog->save());
$check = Blogs::finder()->findByPk($blog->blog_id);
$this->assertSameBlog($check,$blog);
$this->assertTrue($blog->delete());
}
function assertSameBlog($check, $blog)
{
$props = array('blog_id', 'blog_name', 'blog_author');
foreach($props as $prop)
$this->assertEqual($check->{$prop}, $blog->{$prop});
}
}
?>
|