forked from lox/pheasant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTableTest.php
138 lines (112 loc) · 4.82 KB
/
TableTest.php
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
namespace Pheasant\Tests;
use \Pheasant;
use \Pheasant\Types;
use \Pheasant\Query\Criteria;
class TableTest extends \Pheasant\Tests\MysqlTestCase
{
public function setUp()
{
parent::setUp();
$this->table = $this->table('user', array(
'userid'=>new Types\IntegerType(8, 'primary auto_increment'),
'firstname'=>new Types\StringType(),
'lastname'=>new Types\StringType(),
));
$this->assertRowCount(0, 'select * from user');
}
public function testInsertingIntoATable()
{
$this->table->insert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->assertRowCount(1, 'select * from user');
$this->assertEquals(
$this->connection()->execute("select * from user where userid=1")->row(),
array('userid'=>1, 'firstname'=>'Llama', 'lastname'=>'Herder')
);
}
public function testUpdatingATable()
{
$this->table->insert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->assertRowCount(1, 'select * from user');
$this->table->update(array('firstname'=>'Bob'), new Pheasant\Query\Criteria('userid=?', 1));
$this->assertEquals(
$this->connection()->execute("select * from user where userid=1")->row(),
array('userid'=>1, 'firstname'=>'Bob', 'lastname'=>'Herder')
);
}
public function testUpsertingATable()
{
$this->table->upsert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->assertRowCount(1, 'select * from user');
$this->assertEquals(
$this->connection()->execute("select * from user where userid=1")->row(),
array('userid'=>1, 'firstname'=>'Llama', 'lastname'=>'Herder')
);
}
public function testFullyQualifiedTableExists()
{
$table = $this->connection()->table('pheasanttest.user');
$this->assertTrue($table->exists());
$table = $this->connection()->table('pheasanttest.never_created_table');
$this->assertFalse($table->exists());
}
public function testFullyQualifiedTableInsertUpdate()
{
$table = $this->connection()->table('pheasanttest.user');
$this->assertTrue($table->exists());
$table->insert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->assertRowCount(1, 'select * from user');
$table->update(array('firstname'=>'Bob'), new Pheasant\Query\Criteria('userid=?', 1));
$this->assertEquals(
$this->connection()->execute("select * from user where userid=1")->row(),
array('userid'=>1, 'firstname'=>'Bob', 'lastname'=>'Herder')
);
}
public function testColumnsMapToMysqlTypes()
{
$columns = $this->table->columns();
$this->assertEquals(count($columns), 3);
$this->assertEquals($columns['userid']['Type'], 'int(8)');
$this->assertEquals($columns['firstname']['Type'], 'varchar(255)');
$this->assertEquals($columns['lastname']['Type'], 'varchar(255)');
}
public function testDeletingARow()
{
$this->table->insert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->table->insert(array('firstname'=>'Frank', 'lastname'=>'Farmer'));
$this->assertRowCount(2, 'select * from user');
$this->table->delete(new Criteria('firstname like ?', 'Llama'));
$this->assertRowCount(1, 'select * from user');
$this->assertEquals(
iterator_to_array($this->connection()->execute("select firstname from user")->column()),
array('Frank')
);
}
public function testReplacingARow()
{
$this->table->insert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->table->insert(array('firstname'=>'Frank', 'lastname'=>'Farmer'));
$this->table->replace(array('userid'=>1, 'firstname'=>'Alpaca', 'lastname'=>'Collector'));
$this->assertRowCount(2, 'select * from user');
$this->assertEquals(
iterator_to_array($this->connection()->execute("select firstname from user")->column()),
array('Alpaca', 'Frank')
);
}
public function testReplacingWithoutPkeyInserts()
{
$this->table->insert(array('firstname'=>'Llama', 'lastname'=>'Herder'));
$this->table->replace(array('firstname'=>'Alpaca', 'lastname'=>'Collector'));
$this->assertRowCount(2, 'select * from user');
$this->assertEquals(
iterator_to_array($this->connection()->execute("select firstname from user")->column()),
array('Llama', 'Alpaca')
);
}
public function testName()
{
$this->assertEquals('user', $this->table->name()->table);
$this->assertEquals('pheasanttest.user', (string) $this->table->name());
$this->assertEquals('pheasanttest.user', (string) $this->table);
}
}