Search in sources :

Example 31 with DefaultPriceList

use of org.killbill.billing.catalog.DefaultPriceList in project killbill by killbill.

the class TestPlanRules method testExistingPriceListIsKept.

@Test(groups = "fast")
public void testExistingPriceListIsKept() throws CatalogApiException {
    final DefaultProduct product1 = cat.getCurrentProduct(0);
    final DefaultPriceList priceList1 = (DefaultPriceList) cat.findPriceList(PriceListSet.DEFAULT_PRICELIST_NAME);
    final PlanPhaseSpecifier from = new PlanPhaseSpecifier(product1.getName(), BillingPeriod.MONTHLY, priceList1.getName(), PhaseType.EVERGREEN);
    final PlanSpecifier to = new PlanSpecifier(product1.getName(), BillingPeriod.ANNUAL, priceList1.getName());
    PlanChangeResult result = null;
    try {
        result = ((DefaultPlanRules) cat.getPlanRules()).getPlanChangeResult(from, to);
    } catch (IllegalPlanChange e) {
        Assert.fail("We should not have triggered this error");
    } catch (CatalogApiException e) {
        Assert.fail("", e);
    }
    Assert.assertEquals(result.getPolicy(), BillingActionPolicy.END_OF_TERM);
    Assert.assertEquals(result.getAlignment(), PlanAlignmentChange.START_OF_SUBSCRIPTION);
    Assert.assertEquals(result.getNewPriceList(), priceList1);
}
Also used : PlanPhaseSpecifier(org.killbill.billing.catalog.api.PlanPhaseSpecifier) IllegalPlanChange(org.killbill.billing.catalog.api.IllegalPlanChange) DefaultProduct(org.killbill.billing.catalog.DefaultProduct) DefaultPriceList(org.killbill.billing.catalog.DefaultPriceList) CatalogApiException(org.killbill.billing.catalog.api.CatalogApiException) PlanChangeResult(org.killbill.billing.catalog.api.PlanChangeResult) PlanSpecifier(org.killbill.billing.catalog.api.PlanSpecifier) Test(org.testng.annotations.Test)

Example 32 with DefaultPriceList

use of org.killbill.billing.catalog.DefaultPriceList in project killbill by killbill.

the class DefaultPlanRules method findPriceList.

private DefaultPriceList findPriceList(final PlanSpecifier specifier) throws CatalogApiException {
    DefaultPriceList result = DefaultCasePriceList.getResult(priceListCase, specifier, root);
    if (result == null) {
        final String priceListName = specifier.getPlanName() != null ? root.findPlan(specifier.getPlanName()).getPriceList().getName() : specifier.getPriceListName();
        result = (DefaultPriceList) root.findPriceList(priceListName);
    }
    return result;
}
Also used : DefaultPriceList(org.killbill.billing.catalog.DefaultPriceList)

Aggregations

DefaultPriceList (org.killbill.billing.catalog.DefaultPriceList)32 DefaultProduct (org.killbill.billing.catalog.DefaultProduct)26 Test (org.testng.annotations.Test)26 MockCatalog (org.killbill.billing.catalog.MockCatalog)25 PlanSpecifier (org.killbill.billing.catalog.api.PlanSpecifier)6 IllegalPlanChange (org.killbill.billing.catalog.api.IllegalPlanChange)4 PlanChangeResult (org.killbill.billing.catalog.api.PlanChangeResult)4 PlanPhaseSpecifier (org.killbill.billing.catalog.api.PlanPhaseSpecifier)4 BillingActionPolicy (org.killbill.billing.catalog.api.BillingActionPolicy)2 CatalogApiException (org.killbill.billing.catalog.api.CatalogApiException)2 PlanAlignmentChange (org.killbill.billing.catalog.api.PlanAlignmentChange)2 BeforeMethod (org.testng.annotations.BeforeMethod)1