| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/(Del)gepgroup.hk/php-activerecord/test/ |
Upload File : |
<?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);
}
}
?>