IdentifierQuotingTestCase.php 3.94 KB
Newer Older
1
<?php
zYne's avatar
zYne committed
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
/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.com>.
 */

/**
 * Doctrine_Query_IdentifierQuoting_TestCase
 *
 * This test case is used for testing DQL API quotes all identifiers properly
 * if idenfitier quoting is turned on
 *
 * @package     Doctrine
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
 * @version     $Revision$
 */
zYne's avatar
zYne committed
36 37 38
class Doctrine_Query_IdentifierQuoting_TestCase extends Doctrine_UnitTestCase 
{
    public function prepareTables() 
zYne's avatar
zYne committed
39 40 41 42 43
    { 
        $this->tables = array('Entity', 'Phonenumber');
        
        parent::prepareTables();
    }
zYne's avatar
zYne committed
44 45 46 47 48 49

    public function prepareData()
    { }

    public function testQuerySupportsIdentifierQuoting() 
    {
zYne's avatar
zYne committed
50
        $this->conn->setAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER, true);
51

zYne's avatar
zYne committed
52
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
53

54 55
        $q->parseQuery('SELECT MAX(u.id), MIN(u.name) FROM User u');

zYne's avatar
zYne committed
56
        $this->assertEqual($q->getQuery(), 'SELECT MAX("e"."id") AS "e__0", MIN("e"."name") AS "e__1" FROM "entity" "e" WHERE ("e"."type" = 0)');
57

zYne's avatar
zYne committed
58
        $q->execute();
59
    }
zYne's avatar
zYne committed
60

zYne's avatar
zYne committed
61 62 63 64 65 66
    public function testQuerySupportsIdentifierQuotingInWherePart()
    {
        $q = new Doctrine_Query();

        $q->parseQuery('SELECT u.name FROM User u WHERE u.id = 3');

zYne's avatar
zYne committed
67 68 69
        $this->assertEqual($q->getQuery(), 'SELECT "e"."id" AS "e__id", "e"."name" AS "e__name" FROM "entity" "e" WHERE "e"."id" = 3 AND ("e"."type" = 0)');
    
        $q->execute();
zYne's avatar
zYne committed
70
    }
71

zYne's avatar
zYne committed
72
    /**
zYne's avatar
zYne committed
73 74 75 76 77 78
    public function testQuerySupportsIdentifierQuotingWorksWithinFunctions()
    {
        $q = new Doctrine_Query();

        $q->parseQuery("SELECT u.name FROM User u WHERE TRIM(u.name) = 'zYne'");

zYne's avatar
zYne committed
79
        $this->assertEqual($q->getQuery(), 'SELECT "e"."id" AS "e__id", "e"."name" AS "e__name" FROM "entity" "e" WHERE TRIM(u.name) = 3 AND ("e"."type" = 0)');
zYne's avatar
zYne committed
80
    }
zYne's avatar
zYne committed
81
    */
zYne's avatar
zYne committed
82

zYne's avatar
zYne committed
83 84
    public function testQuerySupportsIdentifierQuotingWithJoins() 
    {
zYne's avatar
zYne committed
85
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
86

87 88
        $q->parseQuery('SELECT u.name FROM User u LEFT JOIN u.Phonenumber p');

zYne's avatar
zYne committed
89
        $this->assertEqual($q->getQuery(), 'SELECT "e"."id" AS "e__id", "e"."name" AS "e__name" FROM "entity" "e" LEFT JOIN "phonenumber" "p" ON "e"."id" = "p"."entity_id" WHERE ("e"."type" = 0)');
zYne's avatar
zYne committed
90

91
    }
zYne's avatar
zYne committed
92 93 94

    public function testLimitSubqueryAlgorithmSupportsIdentifierQuoting()
    {
zYne's avatar
zYne committed
95
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
96 97 98

        $q->parseQuery('SELECT u.name FROM User u INNER JOIN u.Phonenumber p')->limit(5);

zYne's avatar
zYne committed
99
        $this->assertEqual($q->getQuery(), 'SELECT "e"."id" AS "e__id", "e"."name" AS "e__name" FROM "entity" "e" INNER JOIN "phonenumber" "p" ON "e"."id" = "p"."entity_id" WHERE "e"."id" IN (SELECT DISTINCT "e"."id" FROM "entity" "e2" INNER JOIN "phonenumber" "p2" ON "e"."id" = "p"."entity_id" WHERE ("e"."type" = 0) LIMIT 5) AND ("e"."type" = 0)');
zYne's avatar
zYne committed
100

zYne's avatar
zYne committed
101
        $this->conn->setAttribute(Doctrine::ATTR_QUOTE_IDENTIFIER, false);
102 103
    }
}