Package com.google.appengine.tck.datastore

Source Code of com.google.appengine.tck.datastore.NamespaceTest

/*
* Copyright 2013 Google Inc. All Rights Reserved.
* 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.google.appengine.tck.datastore;

import java.util.ArrayList;
import java.util.List;

import com.google.appengine.api.NamespaceManager;
import com.google.appengine.api.datastore.Entity;
import com.google.appengine.api.datastore.FetchOptions;
import com.google.appengine.api.datastore.Query;
import com.google.appengine.api.datastore.Query.FilterPredicate;
import com.google.appengine.api.utils.SystemProperty;
import org.jboss.arquillian.junit.Arquillian;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

/**
* datastore namespace test.
*
* @author hchen@google.com (Hannah Chen)
*/
@RunWith(Arquillian.class)
public class NamespaceTest extends DatastoreTestBase {
    private String kindName = "namespaceType";
    private String[] namespaceDat = {"", "developerNS", "testingNS"};
    private String[] stringDat = {"google", "developer", "testing"};
    private int count = 3;

    @Before
    public void createData() throws InterruptedException {
        List<Entity> eList = new ArrayList<Entity>();
        for (int i = 0; i < namespaceDat.length; i++) {
            NamespaceManager.set(namespaceDat[i]);
            Query q = new Query(kindName);
            if (service.prepare(q).countEntities(FetchOptions.Builder.withDefaults()) == 0) {
                for (int c = 0; c < count; c++) {
                    Entity newRec = new Entity(kindName);
                    newRec.setProperty("jobType", stringDat[i] + c);
                    eList.add(newRec);
                }
            }
        }
        if (eList.size() > 0) {
            service.put(eList);
            sync(waitTime);
        }
    }

    @Test
    public void testFilter() {
        for (int i = 0; i < namespaceDat.length; i++) {
            NamespaceManager.set(namespaceDat[i]);
            doAllFilters(kindName, "jobType", stringDat[i] + 1);
        }
    }

    @Test
    public void testSort() {
        for (String ns : namespaceDat) {
            NamespaceManager.set(ns);
            doSort(kindName, "jobType", 3, Query.SortDirection.ASCENDING);
            doSort(kindName, "jobType", 3, Query.SortDirection.DESCENDING);
        }
    }

    @Test
    public void testEntity() {
        for (String ns : namespaceDat) {
            NamespaceManager.set(ns);
            Query query = new Query(kindName);
            Entity readRec = service.prepare(query).asIterator().next();
            assertEquals(ns, readRec.getNamespace());
            String appId = readRec.getAppId();
            appId = appId.substring(appId.indexOf("~") + 1);
            assertEquals(SystemProperty.applicationId.get(), appId);
            assertTrue(readRec.hasProperty("jobType"));
        }
    }

    @Test
    public void testQuery() {
        NamespaceManager.set("");
        Query query = new Query("__namespace__");
        int nsCount = service.prepare(query)
            .countEntities(FetchOptions.Builder.withDefaults());
        assertTrue(nsCount > 0);
        String ns = "";
        for (Entity readRec : service.prepare(query).asIterable()) {
            ns = readRec.getKey().getName() + "," + ns;
        }
        for (int i = 0; i < namespaceDat.length; i++) {
            if (!namespaceDat[i].equals("")) {
                assertTrue(ns.indexOf(namespaceDat[i]) >= 0);
            } else {
                assertTrue(ns.indexOf("null") >= 0);
            }
        }
    }

    @Test(expected = IllegalArgumentException.class)
    public void testValidation() {
        NamespaceManager.set("abc#$%123");
    }

    @Test
    public void testDiffNamespace() {
        NamespaceManager.set(namespaceDat[1]);
        Query q = new Query(kindName);
        q.setFilter(new FilterPredicate("jobType", Query.FilterOperator.EQUAL, stringDat[2] + 1));
        int ttl = service.prepare(q).countEntities(FetchOptions.Builder.withDefaults());
        assertEquals(0, ttl);
    }

    @Override
    public void verifyFilter(String kind, String pName, Object fDat,
                             Query.FilterOperator operator, int rCont, boolean inChk) {
        Query query = new Query(kind);
        query.setFilter(new FilterPredicate(pName, operator, fDat));
        Object[] result = getResult(query, pName);
        assertEquals(rCont, result.length);
        if (inChk) {
            boolean find = false;
            for (Object data : result) {
                if (data.toString().equals(fDat.toString())) {
                    find = true;
                }
            }
            assertEquals(true, find);
        }
    }

    @Override
    public void doSort(String kind, String pName, int expDat, Query.SortDirection direction) {
        Query query = new Query(kind);
        query.addSort(pName, direction);
        Object[] result = getResult(query, pName);
        assertEquals(expDat, result.length);
    }
}
TOP

Related Classes of com.google.appengine.tck.datastore.NamespaceTest

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.