Package org.slim3.datastore

Source Code of org.slim3.datastore.ModelRefTest

/*
* Copyright 2004-2010 the Seasar Foundation and the Others.
*
* 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 org.slim3.datastore;

import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;

import org.junit.Test;
import org.slim3.datastore.model.Hoge;
import org.slim3.tester.AppEngineTestCase;
import org.slim3.util.CipherFactory;

import com.google.appengine.api.datastore.AsyncDatastoreService;
import com.google.appengine.api.datastore.DatastoreServiceFactory;
import com.google.appengine.api.datastore.Key;
import com.google.appengine.api.datastore.KeyFactory;

/**
* @author higa
*
*/
public class ModelRefTest extends AppEngineTestCase {

    private ModelRef<Hoge> ref = new ModelRef<Hoge>(Hoge.class);

    private AsyncDatastoreService ds =
        DatastoreServiceFactory.getAsyncDatastoreService();

    @Override
    public void setUp() throws Exception {
        super.setUp();
        CipherFactory.getFactory().setGlobalKey("xxxxxxxxxxxxxxxx");
    }

    /**
     * @throws Exception
     */
    @Test
    public void getModel() throws Exception {
        assertThat(ref.getModel(), is(nullValue()));
        Hoge hoge = new Hoge();
        Datastore.put(hoge);
        ref.setKey(hoge.getKey());
        Hoge hoge2 = ref.getModel();
        assertThat(hoge2, is(notNullValue()));
        assertThat(hoge2, is(sameInstance(ref.getModel())));
    }

    /**
     * @throws Exception
     */
    @Test
    @SuppressWarnings("deprecation")
    public void getModelInGtx() throws Exception {
        Hoge hoge = new Hoge();
        Datastore.putWithoutTx(hoge);
        GlobalTransaction gtx = Datastore.beginGlobalTransaction();
        Hoge hoge2 = new Hoge();
        gtx.put(hoge2);
        ref.setKey(hoge.getKey());
        assertThat(ref.getModel(), is(notNullValue()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void refresh() throws Exception {
        assertThat(ref.refresh(), is(nullValue()));
        Hoge hoge = new Hoge();
        Datastore.put(hoge);
        ref.setModel(hoge);
        assertThat(ref.refresh(), is(not(sameInstance(hoge))));
    }

    /**
     * @throws Exception
     */
    @Test
    public void setModel() throws Exception {
        Hoge hoge = new Hoge();
        ref.setModel(hoge);
        assertThat(ref.model, is(notNullValue()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void setModelForNull() throws Exception {
        ref.setKey(Datastore.createKey(Hoge.class, 1));
        ref.setModel(null);
        assertThat(ref.model, is(nullValue()));
        assertThat(ref.key, is(nullValue()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void getKey() throws Exception {
        assertThat(ref.getKey(), is(nullValue()));
        Hoge hoge = new Hoge();
        ref.setModel(hoge);
        assertThat(ref.getKey(), is(nullValue()));
        hoge.setKey(Datastore.createKey(Hoge.class, 1));
        assertThat(ref.getKey(), is(hoge.getKey()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void setKey() throws Exception {
        Key key = Datastore.allocateId(Hoge.class);
        ref.setKey(key);
        assertThat(ref.getKey(), is(key));
    }

    /**
     * @throws Exception
     */
    @Test(expected = IllegalStateException.class)
    public void setKeyWhenModelIsNotNull() throws Exception {
        Hoge hoge = new Hoge();
        hoge.setKey(Datastore.allocateId(Hoge.class));
        ref.setModel(hoge);
        ref.setKey(hoge.getKey());
    }

    /**
     * @throws Exception
     */
    @Test
    public void setKeyWhenKeyIsNotNull() throws Exception {
        ref.setKey(Datastore.createKey(Hoge.class, 1));
        ref.setKey(null);
        assertThat(ref.key, is(nullValue()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void clear() throws Exception {
        Hoge hoge = new Hoge();
        hoge.setKey(Datastore.allocateId(Hoge.class));
        ref.setModel(hoge);
        ref.clear();
        assertThat(ref.model, is(nullValue()));
        assertThat(ref.key, is(nullValue()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void testHashCode() throws Exception {
        ref.hashCode();
        Key key = Datastore.allocateId(Hoge.class);
        ref.setKey(key);
        ref.hashCode();
    }

    /**
     * @throws Exception
     */
    @Test
    public void testEquals() throws Exception {
        ModelRef<Hoge> other = new ModelRef<Hoge>(Hoge.class);
        Key key = Datastore.allocateId(Hoge.class);
        assertThat(ref.equals(ref), is(true));
        assertThat(ref.equals(null), is(false));
        assertThat(ref.equals(other), is(false));
        ref.setKey(key);
        other.setKey(key);
        assertThat(ref.equals(other), is(true));
    }

    /**
     * @throws Exception
     */
    @Test
    public void assignKeyIfNecessary() throws Exception {
        Hoge hoge = new Hoge();
        ref.setModel(hoge);
        ref.assignKeyIfNecessary(ds);
        assertThat(ref.getKey(), is(notNullValue()));
        assertThat(hoge.getKey(), is(notNullValue()));
        assertThat(ref.getKey(), is(hoge.getKey()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void assignKeyIfNecessaryKeyIsAssigned() throws Exception {
        Hoge hoge = new Hoge();
        hoge.setKey(KeyFactory.createKey("Hoge", 1));
        ref.setModel(hoge);
        ref.assignKeyIfNecessary(ds);
        assertThat(ref.getKey(), is(notNullValue()));
        assertThat(hoge.getKey(), is(notNullValue()));
        assertThat(ref.getKey(), is(hoge.getKey()));
    }

    /**
     * @throws Exception
     */
    @Test
    public void assignKeyIfNecessaryModelIsNull() throws Exception {
        ref.assignKeyIfNecessary(ds);
        assertThat(ref.getKey(), is(nullValue()));
    }
}
TOP

Related Classes of org.slim3.datastore.ModelRefTest

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.