/*
* 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 com.ning.billing.payment.dispatcher;
import java.util.concurrent.Callable;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.testng.Assert;
import org.testng.annotations.Test;
import com.ning.billing.ErrorCode;
import com.ning.billing.payment.PaymentTestSuiteNoDB;
import com.ning.billing.payment.api.PaymentApiException;
public class TestPluginDispatcher extends PaymentTestSuiteNoDB {
private final PluginDispatcher<Void> voidPluginDispatcher = new PluginDispatcher<Void>(10, Executors.newSingleThreadExecutor());
@Test(groups = "fast")
public void testDispatchWithTimeout() throws TimeoutException, PaymentApiException {
boolean gotIt = false;
try {
voidPluginDispatcher.dispatchWithAccountLockAndTimeout(new Callable<Void>() {
@Override
public Void call() throws Exception {
Thread.sleep(1000);
return null;
}
}, 100, TimeUnit.MILLISECONDS);
Assert.fail("Failed : should have had Timeout exception");
} catch (TimeoutException e) {
gotIt = true;
} catch (PaymentApiException e) {
Assert.fail("Failed : should have had Timeout exception");
}
Assert.assertTrue(gotIt);
}
@Test(groups = "fast")
public void testDispatchWithPaymentApiException() throws TimeoutException, PaymentApiException {
boolean gotIt = false;
try {
voidPluginDispatcher.dispatchWithAccountLockAndTimeout(new Callable<Void>() {
@Override
public Void call() throws Exception {
throw new PaymentApiException(ErrorCode.PAYMENT_ADD_PAYMENT_METHOD, "foo", "foo");
}
}, 100, TimeUnit.MILLISECONDS);
Assert.fail("Failed : should have had Timeout exception");
} catch (TimeoutException e) {
Assert.fail("Failed : should have had PaymentApiException exception");
} catch (PaymentApiException e) {
gotIt = true;
}
Assert.assertTrue(gotIt);
}
@Test(groups = "fast")
public void testDispatchWithRuntimeExceptionWrappedInPaymentApiException() throws TimeoutException, PaymentApiException {
boolean gotIt = false;
try {
voidPluginDispatcher.dispatchWithAccountLockAndTimeout(new Callable<Void>() {
@Override
public Void call() throws Exception {
throw new RuntimeException("whatever");
}
}, 100, TimeUnit.MILLISECONDS);
Assert.fail("Failed : should have had Timeout exception");
} catch (TimeoutException e) {
Assert.fail("Failed : should have had RuntimeException exception");
} catch (PaymentApiException e) {
gotIt = true;
} catch (RuntimeException e) {
}
Assert.assertTrue(gotIt);
}
}