com.google.code.guice.repository.testing.runner.ManualBindRepoTestRunner.java Source code

Java tutorial

Introduction

Here is the source code for com.google.code.guice.repository.testing.runner.ManualBindRepoTestRunner.java

Source

/*
 * Copyright (C) 2012 the original author or authors.
 * See the notice.md file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * 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.code.guice.repository.testing.runner;

import com.google.code.guice.repository.configuration.JpaRepositoryModule;
import com.google.code.guice.repository.configuration.RepositoryBinder;
import com.google.code.guice.repository.testing.common.GuiceTestRunner;
import com.google.code.guice.repository.testing.repo.AccountRepository;
import com.google.code.guice.repository.testing.repo.CustomerRepository;
import com.google.code.guice.repository.testing.repo.CustomerRepositoryImpl;
import com.google.code.guice.repository.testing.repo.UserRepository;
import org.junit.runners.model.InitializationError;
import org.springframework.orm.jpa.vendor.HibernateJpaDialect;

import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

public class ManualBindRepoTestRunner extends GuiceTestRunner {

    /*===========================================[ CLASS METHODS ]================*/

    public ManualBindRepoTestRunner(Class<?> classToRun) throws InitializationError {
        super(classToRun, new JpaRepositoryModule() {
            @Override
            protected void bindRepositories(RepositoryBinder binder) {
                binder.bind(UserRepository.class).to("test-h2");
                binder.bind(AccountRepository.class).withSelfDefinition();
                binder.bind(CustomerRepository.class).withCustomImplementation(CustomerRepositoryImpl.class)
                        .withSelfDefinition();
            }

            @Override
            protected Map<String, Object> getAdditionalEMFProperties(String persistenceUnitName) {
                Map<String, Object> properties = new HashMap<String, Object>();
                if ("test-h2".equals(persistenceUnitName)) {
                    properties.put("jpaDialect", new HibernateJpaDialect());
                    return properties;

                }
                return properties;
            }

            @Override
            protected Collection<String> getPersistenceUnitsNames() {
                return Arrays.asList("test-h2", "test-h2-secondary");
            }
        });
    }
}