/* * Hibernate, Relational Persistence for Idiomatic Java * * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @authors tag. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made available to anyone wishing to use, * modify, copy, or redistribute it subject to the terms and conditions * of the GNU Lesser General Public License, v. 2.1. * This program is distributed in the hope that it will be useful, but WITHOUT A * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public License, * v.2.1 along with this distribution; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ package org.hibernate.ogm.test.utils; import java.util.Map; import org.hibernate.SessionFactory; import org.hibernate.ogm.grid.EntityKey; /** * For testing purposes we need to be able to extract more information than what is mandated from the GridDialect, * so each GridDialect implementor should also implement a TestGridDialect, and list it by classname into * {@code org.hibernate.ogm.test.utils.TestHelper#knownTestDialects }. * * @author Sanne Grinovero <sanne@hibernate.org> (C) 2011 Red Hat Inc. */ public interface TestableGridDialect { /** * Check that the number of entities present matches expectations * @param sessionFactory */ boolean assertNumberOfEntities(int numberOfEntities, SessionFactory sessionFactory); /** * Check that the number of entities present matches expectations * @param sessionFactory */ boolean assertNumberOfAssociations(int numberOfAssociations, SessionFactory sessionFactory); /** * Loads a specific entity tuple directly from the data store by entity key * @param sessionFactory * @param key * @return the loaded tuple, or null of nothing was found */ Map<String, Object> extractEntityTuple(SessionFactory sessionFactory, EntityKey key); /** * Returning false will disable all tests which verify transaction isolation or rollback capabilities. * No "production" datastore should return false unless its limitation is properly documented. * @return true if the datastore is expected to commit/rollback properly */ boolean backendSupportsTransactions(); /** * Used to clean up all the stored data. The cleaning can be done by dropping * the database and/or the schema. * Each implementor can so define its own way to delete all data inserted by * the test and remove the schema if that applies. * @param sessionFactory */ void dropSchemaAndDatabase(SessionFactory sessionFactory); /** * Properties that needs to be overridden in configuration for tests to run * This is typical of the host and port defined using an environment variable. */ Map<String,String> getEnvironmentProperties(); }