PaymentTestSuiteWithEmbeddedDB.java
Home
/
payment /
src /
test /
java /
org /
killbill /
billing /
payment /
PaymentTestSuiteWithEmbeddedDB.java
/*
* Copyright 2010-2013 Ning, Inc.
*
* Ning 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.killbill.billing.payment;
import java.net.URL;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.killbill.billing.GuicyKillbillTestSuiteWithEmbeddedDB;
import org.killbill.bus.api.PersistentBus;
import org.killbill.billing.osgi.api.OSGIServiceRegistration;
import org.killbill.billing.payment.api.PaymentApi;
import org.killbill.billing.payment.core.PaymentMethodProcessor;
import org.killbill.billing.payment.core.PaymentProcessor;
import org.killbill.billing.payment.dao.PaymentDao;
import org.killbill.billing.payment.glue.TestPaymentModuleWithEmbeddedDB;
import org.killbill.billing.payment.plugin.api.PaymentPluginApi;
import org.killbill.billing.payment.provider.MockPaymentProviderPlugin;
import org.killbill.billing.payment.retry.FailedPaymentRetryService;
import org.killbill.billing.payment.retry.PluginFailureRetryService;
import org.killbill.billing.util.config.PaymentConfig;
import org.killbill.billing.account.api.AccountInternalApi;
import org.killbill.billing.invoice.api.InvoiceInternalApi;
import com.google.inject.Guice;
import com.google.inject.Inject;
import com.google.inject.Injector;
public abstract class PaymentTestSuiteWithEmbeddedDB extends GuicyKillbillTestSuiteWithEmbeddedDB {
@Inject
protected PaymentConfig paymentConfig;
@Inject
protected PaymentProcessor paymentProcessor;
@Inject
protected PaymentMethodProcessor paymentMethodProcessor;
@Inject
protected InvoiceInternalApi invoiceApi;
@Inject
protected OSGIServiceRegistration<PaymentPluginApi> registry;
@Inject
protected FailedPaymentRetryService retryService;
@Inject
protected PluginFailureRetryService pluginRetryService;
@Inject
protected PersistentBus eventBus;
@Inject
protected PaymentApi paymentApi;
@Inject
protected AccountInternalApi accountApi;
@Inject
protected PaymentDao paymentDao;
@Inject
protected TestPaymentHelper testHelper;
private void loadSystemPropertiesFromClasspath(final String resource) {
final URL url = PaymentTestSuiteNoDB.class.getResource(resource);
Assert.assertNotNull(url);
configSource.merge(url);
configSource.setProperty("org.killbill.payment.provider.default", MockPaymentProviderPlugin.PLUGIN_NAME);
configSource.setProperty("killbill.payment.engine.events.off", "false");
}
@BeforeClass(groups = "slow")
protected void beforeClass() throws Exception {
loadSystemPropertiesFromClasspath("/resource.properties");
final Injector injector = Guice.createInjector(new TestPaymentModuleWithEmbeddedDB(configSource, getClock()));
injector.injectMembers(this);
}
@BeforeMethod(groups = "slow")
public void beforeMethod() throws Exception {
super.beforeMethod();
eventBus.start();
}
@AfterMethod(groups = "slow")
public void afterMethod() throws Exception {
eventBus.stop();
}
}