Package org.apache.cayenne.access

Source Code of org.apache.cayenne.access.DataContextEJBQLDeleteTest

/*****************************************************************
*   Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you 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 org.apache.cayenne.access;

import java.util.List;

import org.apache.art.MeaningfulPKTest1;
import org.apache.art.Painting;
import org.apache.cayenne.DataObjectUtils;
import org.apache.cayenne.QueryResponse;
import org.apache.cayenne.query.EJBQLQuery;
import org.apache.cayenne.unit.CayenneCase;

public class DataContextEJBQLDeleteTest extends CayenneCase {
   
    protected DataContext context;
   
    @Override
    protected void setUp() throws Exception {
        deleteTestData();
        context = getDomain().createDataContext();
    }
   
    public void testDeleteNoIdVar() throws Exception {
        createTestData("prepare");

        String ejbql = "delete from Painting";
        EJBQLQuery query = new EJBQLQuery(ejbql);

        QueryResponse result = createDataContext().performGenericQuery(query);

        int[] count = result.firstUpdateCount();
        assertNotNull(count);
        assertEquals(1, count.length);
        assertEquals(2, count[0]);
    }

    public void testDeleteNoQualifier() throws Exception {
        createTestData("prepare");

        String ejbql = "delete from Painting AS p";
        EJBQLQuery query = new EJBQLQuery(ejbql);

        QueryResponse result = createDataContext().performGenericQuery(query);

        int[] count = result.firstUpdateCount();
        assertNotNull(count);
        assertEquals(1, count.length);
        assertEquals(2, count[0]);
    }

    public void testDeleteSameEntityQualifier() throws Exception {
        createTestData("prepare");

        String ejbql = "delete from Painting AS p WHERE p.paintingTitle = 'P2'";
        EJBQLQuery query = new EJBQLQuery(ejbql);

        QueryResponse result = createDataContext().performGenericQuery(query);

        int[] count = result.firstUpdateCount();
        assertNotNull(count);
        assertEquals(1, count.length);
        assertEquals(1, count[0]);

        assertNotNull(DataObjectUtils
                .objectForPK(createDataContext(), Painting.class, 33001));
        assertNull(DataObjectUtils
                .objectForPK(createDataContext(), Painting.class, 33002));
    }
   
    public void testDeleteIdVar() throws Exception {
        insertValue();
       
        EJBQLQuery q = new EJBQLQuery("select m.pkAttribute from MeaningfulPKTest1 m");
   
        List<Integer> id = createDataContext().performQuery(q);
      
        String ejbql = "delete from MeaningfulPKTest1 m WHERE m.pkAttribute in (:id)";
        
        EJBQLQuery query = new EJBQLQuery(ejbql);
        query.setParameter("id", id);
        QueryResponse result = createDataContext().performGenericQuery(query);
   
        int[] count = result.firstUpdateCount();
        assertNotNull(count);
        assertEquals(1, count.length);
        assertEquals(420, count[0]);

    }
   
    public void insertValue(){
        MeaningfulPKTest1 obj ;
       
        for(int i=0;i<420;i++){
            obj = (MeaningfulPKTest1) context.newObject("MeaningfulPKTest1");
            obj.setPkAttribute(new Integer(i));
            obj.setDescr("a" + i);
            context.commitChanges();
        }
    }
}
TOP

Related Classes of org.apache.cayenne.access.DataContextEJBQLDeleteTest

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.