PHP Classes

File: tests/eMapper/PostgreSQL/PostgreSQLTest.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMapper   tests/eMapper/PostgreSQL/PostgreSQLTest.php   Download  
File: tests/eMapper/PostgreSQL/PostgreSQLTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: eMapper
Database abstraction layer that maps data types
Author: By
Last change: Fix: Column names array in ClassProfile class.
Date: 10 years ago
Size: 1,336 bytes
 

Contents

Class file image Download
<?php
namespace eMapper\PostgreSQL;

use
Acme\Type\RGBColorTypeHandler;
use
eMapper\SQL\Statement;
use
eMapper\Engine\PostgreSQL\PostgreSQLDriver;
use
eMapper\Mapper;

abstract class
PostgreSQLTest extends \PHPUnit_Framework_TestCase {
    public static
$env_config = ['environment.id' => 'default', 'environment.class' => 'eMapper\Dynamic\Environment\DynamicSQLEnvironment'];
    public static
$connstring = 'host=localhost port=5432 dbname=emapper_testing user=postgres password=c4lpurn14';
    public static
$conn;
    public static
$driver;
    public static
$mapper;
    public static
$blob;
   
    public static function
setUpBeforeClass() {
       
self::$conn = pg_connect(self::$connstring);
       
self::$driver = new PostgreSQLDriver(self::$connstring);
       
self::$mapper = new Mapper(self::$driver);
       
self::$mapper->addType('Acme\RGBColor', new RGBColorTypeHandler(), 'color');
       
self::$mapper->addStatement(new Statement('getProduct', "SELECT * FROM products WHERE product_id = #{productId}"));
       
self::$mapper->addStatement(new Statement('getUser', "SELECT * FROM users WHERE user_id = %{int}", Statement::type('array')));
       
       
self::$blob = file_get_contents(__DIR__ . '/../avatar.gif');
    }
   
    public static function
tearDownAfterClass() {
       
//TODO: this breaks some tests, try running --debug
        //pg_close(self::$conn);
       
self::$mapper->close();
    }
}

?>