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

/**
23
 * Doctrine_Query_MultipleAggregateValue_TestCase
24 25
 *
 * @package     Doctrine
26
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
27 28 29 30 31
 * @author      Jonathan H. Wage <jonwage@gmail.com>
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 * @category    Object Relational Mapping
 * @link        www.phpdoctrine.com
 * @since       1.0
32
 * @version     $Revision$
33 34 35
 */
class Doctrine_Query_MultipleAggregateValue_TestCase extends Doctrine_UnitTestCase 
{
36 37 38
    public function prepareData() 
    { }
	public function testInitData()
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
	{
		$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()
	{
Jonathan.Wage's avatar
Jonathan.Wage committed
54
	    $query = new Doctrine_Query();
55 56 57 58 59 60 61 62 63 64 65 66
		$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);
		
		$user = $query->execute()->getFirst();
		
		try {
			$name = $user->name;
			$num_albums = $user->Album[0]->num_albums;
			$num_books = $user->Book[0]->num_books;	
Jonathan.Wage's avatar
Jonathan.Wage committed
67
		} catch (Doctrine_Exception $e) {
68 69 70 71 72 73
			$this->fail();
		}
		
		$this->assertEqual($num_albums, 3);
		$this->assertEqual($num_books, 2);
	}
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
	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);

		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();
		}

		$this->assertEqual($num_albums, 3);
		$this->assertEqual($num_books, 2);
	}
}