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
|
<?php include 'helpers/config.php'; require_once __DIR__ . '/../lib/adapters/OciAdapter.php';
class OciAdapterTest extends AdapterTest { public function set_up($connection_name=null) { parent::set_up('oci'); }
public function test_get_sequence_name() { $this->assert_equals('authors_seq',$this->conn->get_sequence_name('authors','author_id')); }
public function test_columns_text() { $author_columns = $this->conn->columns('authors'); $this->assert_equals('varchar2',$author_columns['some_text']->raw_type); $this->assert_equals(100,$author_columns['some_text']->length); }
public function test_datetime_to_string() { $this->assert_equals('01-Jan-2009 01:01:01 AM',$this->conn->datetime_to_string(date_create('2009-01-01 01:01:01 EST'))); }
public function test_date_to_string() { $this->assert_equals('01-Jan-2009',$this->conn->date_to_string(date_create('2009-01-01 01:01:01 EST'))); }
public function test_insert_id() {} public function test_insert_id_with_params() {} public function test_insert_id_should_return_explicitly_inserted_id() {} public function test_columns_time() {} public function test_columns_sequence() {}
public function test_set_charset() { $connection_string = ActiveRecord\Config::instance()->get_connection($this->connection_name); $conn = ActiveRecord\Connection::instance($connection_string . '?charset=utf8'); $this->assert_equals(';charset=utf8', $conn->dsn_params); } } ?>
|