Package com.mysema.query.jdo

Source Code of com.mysema.query.jdo.AggregateTest

/*
* Copyright 2011, Mysema Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mysema.query.jdo;

import static org.junit.Assert.assertEquals;

import javax.jdo.PersistenceManager;
import javax.jdo.Transaction;

import org.junit.BeforeClass;
import org.junit.Test;

import com.mysema.query.jdo.test.domain.Product;
import com.mysema.query.jdo.test.domain.QProduct;

public class AggregateTest extends AbstractJDOTest{

    private final QProduct product = QProduct.product;

    @Test
    public void Unique() {
        double min = 200.00, avg = 400.00, max = 600.00;
        assertEquals(Double.valueOf(min), query().from(product).uniqueResult(product.price.min()));
        assertEquals(Double.valueOf(avg), query().from(product).uniqueResult(product.price.avg()));
        assertEquals(Double.valueOf(max), query().from(product).uniqueResult(product.price.max()));
    }

    @Test
    public void List() {
        double min = 200.00, avg = 400.00, max = 600.00;
        assertEquals(Double.valueOf(min), query().from(product).list(product.price.min()).get(0));
        assertEquals(Double.valueOf(avg), query().from(product).list(product.price.avg()).get(0));
        assertEquals(Double.valueOf(max), query().from(product).list(product.price.max()).get(0));       
    }
   
    @BeforeClass
    public static void doPersist() {
        // Persistence of a Product and a Book.
        PersistenceManager pm = pmf.getPersistenceManager();
        Transaction tx = pm.currentTransaction();
        try {
            tx.begin();
            for (int i = 0; i < 10; i++) {
                pm.makePersistent(new Product("C" + i, "F", 200.00, 2));
                pm.makePersistent(new Product("B" + i, "E", 400.00, 4));
                pm.makePersistent(new Product("A" + i, "D", 600.00, 6));
            }
            tx.commit();
        } finally {
            if (tx.isActive()) {
                tx.rollback();
            }
            pm.close();
        }
        System.out.println("");

    }

}
TOP

Related Classes of com.mysema.query.jdo.AggregateTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.