PHP Classes

File: tests/eMapper/MySQL/MapperBuilderTest.php

Recommend this page to a friend!
  Classes of Emmanuel Antico   eMapper   tests/eMapper/MySQL/MapperBuilderTest.php   Download  
File: tests/eMapper/MySQL/MapperBuilderTest.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: Added: DynamicSQLProgram class.
Date: 9 years ago
Size: 1,288 bytes
 

Contents

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

use
eMapper\Engine\MySQL\MySQLDriver;
use
eMapper\Mapper;

/**
 * Test building MySQLDriver intances
 *
 * @author emaphp
 * @group mysql
 * @group builder
 */
class MapperBuilderTest extends MySQLTest {
   
/**
     * @expectedException InvalidArgumentException
     */
   
public function testBuildException() {
       
$config = [];
       
$driver = MySQLDriver::build($config);
    }
   
    public function
testBuild() {
       
$config = ['database' => self::$config['database']];
       
$driver = MySQLDriver::build($config);
       
       
$this->assertInstanceOf('eMapper\Engine\MySQL\MySQLDriver', $driver);
       
$this->assertTrue($driver->hasOption('db.name'));
       
$this->assertEquals(self::$config['database'], $driver->getOption('db.name'));
    }
   
    public function
testBuildFromConnection() {
       
$driver = new MySQLDriver(self::$conn);
       
$this->assertInstanceOf('eMapper\Engine\MySQL\MySQLDriver', $driver);
       
       
$mapper = new Mapper($driver);
       
$two = $mapper->type('i')->query("SELECT 1 + 1");
       
$this->assertEquals(2, $two);
       
       
$row = $mapper->type('array')->query("SELECT * FROM users WHERE user_id = 1");
       
$this->assertInternalType('array', $row);
       
       
$row = $mapper->type('object')->query("SELECT * FROM products WHERE product_id = 1");
       
$this->assertInstanceOf('stdClass', $row);
    }
}
?>