MultipleAggregateValueTestCase.php 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php
/*
 *  $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
19
 * <http://www.phpdoctrine.org>.
20 21 22
 */

/**
23
 * Doctrine_Query_MultipleAggregateValue_TestCase
24 25
 *
 * @package     Doctrine
26
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
27 28 29
 * @author      Jonathan H. Wage <jonwage@gmail.com>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @category    Object Relational Mapping
30
 * @link        www.phpdoctrine.org
31
 * @since       1.0
32
 * @version     $Revision$
33 34 35
 */
class Doctrine_Query_MultipleAggregateValue_TestCase extends Doctrine_UnitTestCase 
{
36 37 38 39 40 41
    public function prepareTables()
    {
        $this->tables = array('User', 'Email', 'Album', 'Book');
        parent::prepareTables();
    }
    
42
    public function prepareData() 
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    {
        $user = new User();
        $user->name = 'jon';
        
        $user->Album[0] = new Album();
        $user->Album[1] = new Album();
        $user->Album[2] = new Album();
        
        $user->Book[0] = new Book();
        $user->Book[1] = new Book();
        $user->save();
    }
    
    public function testMultipleAggregateValues()
    {
        $query = new Doctrine_Query();
        $query->select('u.*, COUNT(DISTINCT b.id) num_books, COUNT(DISTINCT a.id) num_albums');
        $query->from('User u');
        $query->leftJoin('u.Album a, u.Book b');
        $query->where("u.name = 'jon'");
        $query->limit(1);
64

65 66 67 68 69 70 71 72 73 74 75 76 77
        $user = $query->execute()->getFirst();
        
        try {
            $name = $user->name;
            $num_albums = $user->Album[0]->num_albums;
            $num_books = $user->Book[0]->num_books;    
        } catch (Doctrine_Exception $e) {
            $this->fail();
        }
        
        $this->assertEqual($num_albums, 3);
        $this->assertEqual($num_books, 2);
    }
78
    
79 80 81 82 83 84 85 86 87 88
    public function testMultipleAggregateValuesWithArrayFetching()
    {
        $query = new Doctrine_Query();
        $query->select('u.*, COUNT(DISTINCT b.id) num_books, COUNT(DISTINCT a.id) num_albums');
        $query->from('User u');
        $query->leftJoin('u.Album a, u.Book b');
        $query->where("u.name = 'jon'");
        $query->limit(1);
        
        $users = $query->execute(array(), Doctrine::FETCH_ARRAY);
89

90 91 92 93 94 95 96
        try {
            $name = $users[0]['name'];
            $num_albums = $users[0]['Album'][0]['num_albums'];
            $num_books = $users[0]['Book'][0]['num_books'];
        } catch (Doctrine_Exception $e) {
            $this->fail();
        }
97

98 99 100
        $this->assertEqual($num_albums, 3);
        $this->assertEqual($num_books, 2);
    }
101
}