Package org.apache.cayenne.remote

Source Code of org.apache.cayenne.remote.RemoteCallbacksTest

/*****************************************************************
*   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.remote;

import org.apache.cayenne.LifecycleListener;
import org.apache.cayenne.ObjectContext;
import org.apache.cayenne.testdo.mt.ClientMtLifecycles;

public class RemoteCallbacksTest extends RemoteCayenneCase implements LifecycleListener {
    private int added, loaded, prePersisted, postPersisted, preRemoved, postRemoved, preUpdated, postUpdated;
   
    @Override
    public void setUp() throws Exception {
        super.setUp();
        added = 0;
        loaded = 0;
        prePersisted = 0;
        postPersisted = 0;
        preRemoved = 0;
        postRemoved = 0;
        preUpdated = 0;
        postUpdated = 0;
    }
   
    public void testDefault() throws InterruptedException {
        ObjectContext context = createROPContext();
        context.getEntityResolver().getCallbackRegistry().addListener(ClientMtLifecycles.class, this);
       
        assertAll(0, 0, 0, 0, 0, 0, 0, 0);
        ClientMtLifecycles l1 = context.newObject(ClientMtLifecycles.class);
       
        assertAll(1, 0, 0, 0, 0, 0, 0, 0);
        l1.setName("x");
        assertAll(1, 0, 0, 0, 0, 0, 0, 0);
       
        context.commitChanges();
        Thread.sleep(5); //until commit
        assertAll(1, 0, 1, 1, 0, 0, 0, 0);
       
        l1.setName("x2");
        assertAll(1, 0, 1, 1, 0, 0, 0, 0);
       
        context.commitChanges();
        Thread.sleep(5); //until commit
        assertAll(1, 0, 1, 1, 1, 1, 0, 0);
       
        context.deleteObject(l1);
        assertAll(1, 0, 1, 1, 1, 1, 1, 0);
       
        context.commitChanges();
        Thread.sleep(5); //until commit
        assertAll(1, 0, 1, 1, 1, 1, 1, 1);
    }
   
    private void assertAll(int added, int loaded, int prePersisted, int postPersisted,
            int preUpdated, int postUpdated, int preRemoved, int postRemoved) {
        assertEquals(this.added, added);
        assertEquals(this.loaded, loaded);
        assertEquals(this.prePersisted, prePersisted);
        assertEquals(this.postPersisted, postPersisted);
        assertEquals(this.preRemoved, preRemoved);
        assertEquals(this.postRemoved, postRemoved);
        assertEquals(this.preUpdated, preUpdated);
        assertEquals(this.postUpdated, postUpdated);
    }

    public void postAdd(Object entity) {
        added++;
    }

    public void postLoad(Object entity) {
        loaded++;
    }

    public void postPersist(Object entity) {
        postPersisted++;
    }

    public void postRemove(Object entity) {
        postRemoved++;
    }

    public void postUpdate(Object entity) {
        postUpdated++;
    }

    public void prePersist(Object entity) {
        prePersisted++;
    }

    public void preRemove(Object entity) {
        preRemoved++;
    }

    public void preUpdate(Object entity) {
        preUpdated++;
    }
}
TOP

Related Classes of org.apache.cayenne.remote.RemoteCallbacksTest

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.