AggregateValueTestCase.php 7.39 KB
Newer Older
1
<?php
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
/*
 *  $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_AggregateValue_TestCase
 *
 * @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$
 */
class Doctrine_Query_AggregateValue_TestCase extends Doctrine_UnitTestCase 
{
    public function prepareData() 
    { 
    }
    public function testInitData() 
    {
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
        $users = new Doctrine_Collection('User');
        
        $users[0]->name = 'John';
        $users[0]->Phonenumber[0]->phonenumber = '123 123';
        $users[0]->Phonenumber[1]->phonenumber = '222 222';
        $users[0]->Phonenumber[2]->phonenumber = '333 333';

        $users[1]->name = 'John';
        $users[2]->name = 'James';
        $users[2]->Phonenumber[0]->phonenumber = '222 344';
        $users[2]->Phonenumber[1]->phonenumber = '222 344';
        $users[3]->name = 'James';
        $users[3]->Phonenumber[0]->phonenumber = '123 123';

        $users->save();
    }
56

zYne's avatar
zYne committed
57
    public function testRecordSupportsValueMapping()
58
    {
59
        $record = new User();
zYne's avatar
zYne committed
60 61

        try {
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
            $record->get('count');
            $this->fail();
        } catch(Doctrine_Exception $e) {
            $this->pass();
        }

        $record->mapValue('count', 3);

        try {
            $i = $record->get('count');
        } catch(Doctrine_Exception $e) {
            $this->fail();
        }
        $this->assertEqual($i, 3);
    }
zYne's avatar
zYne committed
77 78

    public function testAggregateValueIsMappedToNewRecordOnEmptyResultSet()
79
    {
zYne's avatar
zYne committed
80
        $this->connection->clear();
zYne's avatar
zYne committed
81

zYne's avatar
zYne committed
82
        $q = new Doctrine_Query();
83 84

        $q->select('COUNT(u.id) count')->from('User u');
zYne's avatar
zYne committed
85 86
        $this->assertEqual($q->getSql(), "SELECT COUNT(e.id) AS e__0 FROM entity e WHERE (e.type = 0)");

87 88 89
        $users = $q->execute();
        
        $this->assertEqual($users->count(), 1);
zYne's avatar
zYne committed
90

91 92
        $this->assertEqual($users[0]->state(), Doctrine_Record::STATE_TCLEAN);
    }
zYne's avatar
zYne committed
93

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

        $q->select('u.name, COUNT(u.id) count')->from('User u')->groupby('u.name');
zYne's avatar
zYne committed
99

100 101 102 103 104 105 106 107 108 109
        $users = $q->execute();

        $this->assertEqual($users->count(), 2);
        
        $this->assertEqual($users[0]->state(), Doctrine_Record::STATE_PROXY);
        $this->assertEqual($users[1]->state(), Doctrine_Record::STATE_PROXY);
        
        $this->assertEqual($users[0]->count, 2);
        $this->assertEqual($users[1]->count, 2);
    }
zYne's avatar
zYne committed
110

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
    public function testAggregateOrder()
    {
        $q = new Doctrine_Query();

        $q->select('u.name, COUNT(u.id) count')->from('User u')->groupby('u.name')->orderby('count');

        $users = $q->execute();

        $this->assertEqual($users->count(), 2);
        
        $this->assertEqual($users[0]->state(), Doctrine_Record::STATE_PROXY);
        $this->assertEqual($users[1]->state(), Doctrine_Record::STATE_PROXY);
        
        $this->assertEqual($users[0]->count, 2);
        $this->assertEqual($users[1]->count, 2);
    }
127

128 129
    public function testAggregateValueMappingSupportsLeftJoins() 
    {
zYne's avatar
zYne committed
130
        $q = new Doctrine_Query();
131 132 133

        $q->select('u.name, COUNT(p.id) count')->from('User u')->leftJoin('u.Phonenumber p')->groupby('u.id');

zYne's avatar
zYne committed
134
        $users = $q->execute();   
135

zYne's avatar
zYne committed
136 137 138 139 140 141
        $this->assertEqual(count($users), 4);

        $this->assertEqual($users[0]['Phonenumber'][0]['count'], 3);
        $this->assertEqual($users[1]['Phonenumber'][0]['count'], 0);
        $this->assertEqual($users[2]['Phonenumber'][0]['count'], 2);
        $this->assertEqual($users[3]['Phonenumber'][0]['count'], 1);
142
    }
zYne's avatar
zYne committed
143

144 145
    public function testAggregateValueMappingSupportsLeftJoins2()
    {
zYne's avatar
zYne committed
146
        $q = new Doctrine_Query();
147 148 149 150 151 152

        $q->select('MAX(u.name)')->from('User u')->leftJoin('u.Phonenumber p')->groupby('u.id');

        $this->assertEqual($q->getQuery(), 'SELECT MAX(e.name) AS e__0 FROM entity e LEFT JOIN phonenumber p ON e.id = p.entity_id WHERE (e.type = 0) GROUP BY e.id');
        $users = $q->execute();

zYne's avatar
zYne committed
153
        $this->assertEqual($users->count(), 4);
154
    }
zYne's avatar
zYne committed
155

zYne's avatar
zYne committed
156
    public function testAggregateValueMappingSupportsMultipleValues()
157
    {
zYne's avatar
zYne committed
158
        $q = new Doctrine_Query();
zYne's avatar
zYne committed
159 160

        $q->select('u.name, COUNT(p.id) count, MAX(p.id) max')->from('User u')->innerJoin('u.Phonenumber p')->groupby('u.id');
161

zYne's avatar
zYne committed
162 163 164
        $users = $q->execute();
        $this->assertEqual($users[0]->Phonenumber[0]->max, 3);
        $this->assertEqual($users[0]->Phonenumber[0]->count, 3);
165
    }
zYne's avatar
zYne committed
166
    public function testAggregateValueMappingSupportsInnerJoins()
167
    {
zYne's avatar
zYne committed
168
        $q = new Doctrine_Query();
169 170 171 172 173 174 175 176 177 178 179

        $q->select('u.name, COUNT(p.id) count')->from('User u')->innerJoin('u.Phonenumber p')->groupby('u.id');

        $users = $q->execute();

        $this->assertEqual($users->count(), 3);

        $this->assertEqual($users[0]->Phonenumber[0]->count, 3);
        $this->assertEqual($users[1]->Phonenumber[0]->count, 2);
        $this->assertEqual($users[2]->Phonenumber[0]->count, 1);
    }
zYne's avatar
zYne committed
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    public function testAggregateFunctionParser()
    {
        $q = new Doctrine_Query();
        $func = $q->parseAggregateFunction('SUM(i.price)');
    
        $this->assertEqual($func, 'SUM(i.price)');
    }
    public function testAggregateFunctionParser2()
    {
        $q = new Doctrine_Query();
        $func = $q->parseAggregateFunction('SUM(i.price * i.quantity)');
    
        $this->assertEqual($func, 'SUM(i.price * i.quantity)');
    }
    public function testAggregateFunctionParser3()
    {
        $q = new Doctrine_Query();
        $func = $q->parseAggregateFunction('MOD(i.price, i.quantity)');

        $this->assertEqual($func, 'MOD(i.price, i.quantity)');
    }
    public function testAggregateFunctionParser4()
    {
        $q = new Doctrine_Query();
        $func = $q->parseAggregateFunction('CONCAT(i.price, i.quantity)');

        $this->assertEqual($func, 'CONCAT(i.price, i.quantity)');
    }
    public function testAggregateFunctionParsingSupportsMultipleComponentReferences()
    {
        $q = new Doctrine_Query();
        $q->select('SUM(i.price * i.quantity)')
          ->from('QueryTest_Item i');
          
        $this->assertEqual($q->getQuery(), "SELECT SUM(q.price * q.quantity) AS q__0 FROM query_test__item q");
    }


218
}