summaryrefslogtreecommitdiff
path: root/tests/simple_unit/ActiveRecord/ViewRecordTestCase.php
blob: bb13a96f58188f0e3e3cf13727a7e20ba38e3ef5 (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
<?php


Prado::using('System.Data.ActiveRecord.TActiveRecord');
require_once(dirname(__FILE__).'/records/SimpleUser.php');

class ViewRecordTestCase extends UnitTestCase
{
	function setup()
	{
		$conn = new TDbConnection('pgsql:host=localhost;dbname=test', 'test','test');
		TActiveRecordManager::getInstance()->setDbConnection($conn);
	}

	function test_view_record()
	{
		$users = SimpleUser::finder()->findAll();
		$this->assertTrue(count($users) > 0);
	}

	function test_save_view_record_throws_exception()
	{
		$user = new SimpleUser();
		try
		{
			$user->save();
			$this->fail();
		}
		catch(TActiveRecordException $e)
		{
			$this->pass();
		}
	}

	function test_update_view_record_throws_exception()
	{
		$user = SimpleUser::finder()->findByUsername('admin');
		$user->username = 'ads';
		try
		{
			$user->save();
			$this->fail();
		}
		catch(TActiveRecordException $e)
		{
			$this->pass();
		}
	}

	function test_find_by_pk_throws_exception()
	{
		try
		{
			$user = SimpleUser::finder()->findByPk('admin');
			$this->fail();
		}
		catch(TDbException $e)
		{
			$this->pass();
		}
	}

	function test_delete_by_pk_throws_exception()
	{
		try
		{
			SimpleUser::finder()->deleteByPk('admin');
			$this->fail();
		}
		catch(TDbException $e)
		{
			$this->pass();
		}
	}
}