/*
* 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.analytics.model;
import java.math.BigDecimal;
import org.joda.time.DateTime;
import org.mockito.Mockito;
import org.testng.Assert;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import com.ning.billing.analytics.AnalyticsTestSuiteNoDB;
import com.ning.billing.analytics.MockDuration;
import com.ning.billing.analytics.MockPhase;
import com.ning.billing.analytics.MockProduct;
import com.ning.billing.catalog.api.BillingPeriod;
import com.ning.billing.catalog.api.Catalog;
import com.ning.billing.catalog.api.PhaseType;
import com.ning.billing.catalog.api.Plan;
import com.ning.billing.catalog.api.PlanPhase;
import com.ning.billing.catalog.api.Product;
import com.ning.billing.catalog.api.ProductCategory;
import com.ning.billing.entitlement.api.user.Subscription;
import com.ning.billing.mock.MockPlan;
import com.ning.billing.mock.MockSubscription;
import static com.ning.billing.catalog.api.Currency.USD;
public class TestBusinessSubscription extends AnalyticsTestSuiteNoDB {
final Object[][] catalogMapping = {
{BillingPeriod.NO_BILLING_PERIOD, 369.9500, 0.0000},
{BillingPeriod.NO_BILLING_PERIOD, 429.9500, 0.0000},
{BillingPeriod.NO_BILLING_PERIOD, 999.9500, 0.0000},
{BillingPeriod.NO_BILLING_PERIOD, 2300.0000, 0.0000},
{BillingPeriod.MONTHLY, 2.9500, 2.9500},
{BillingPeriod.MONTHLY, 3.9500, 3.9500},
{BillingPeriod.MONTHLY, 6.9500, 6.9500},
{BillingPeriod.MONTHLY, 7.0000, 7.0000},
{BillingPeriod.MONTHLY, 7.9500, 7.9500},
{BillingPeriod.MONTHLY, 9.0000, 9.0000},
{BillingPeriod.MONTHLY, 9.9500, 9.9500},
{BillingPeriod.MONTHLY, 11.9500, 11.9500},
{BillingPeriod.MONTHLY, 12.4500, 12.4500},
{BillingPeriod.MONTHLY, 12.9500, 12.9500},
{BillingPeriod.MONTHLY, 14.9500, 14.9500},
{BillingPeriod.MONTHLY, 15.0000, 15.0000},
{BillingPeriod.MONTHLY, 16.9500, 16.9500},
{BillingPeriod.MONTHLY, 19.0000, 19.0000},
{BillingPeriod.MONTHLY, 19.9500, 19.9500},
{BillingPeriod.MONTHLY, 24.9500, 24.9500},
{BillingPeriod.MONTHLY, 29.0000, 29.0000},
{BillingPeriod.MONTHLY, 29.9500, 29.9500},
{BillingPeriod.MONTHLY, 31.0000, 31.0000},
{BillingPeriod.MONTHLY, 34.9500, 34.9500},
{BillingPeriod.MONTHLY, 39.0000, 39.0000},
{BillingPeriod.MONTHLY, 39.9500, 39.9500},
{BillingPeriod.MONTHLY, 49.0000, 49.0000},
{BillingPeriod.MONTHLY, 49.9500, 49.9500},
{BillingPeriod.MONTHLY, 59.9500, 59.9500},
{BillingPeriod.MONTHLY, 79.0000, 79.0000},
{BillingPeriod.MONTHLY, 99.0000, 99.0000},
{BillingPeriod.MONTHLY, 139.0000, 139.0000},
{BillingPeriod.MONTHLY, 209.0000, 209.0000},
{BillingPeriod.MONTHLY, 229.0000, 229.0000},
{BillingPeriod.MONTHLY, 274.5000, 274.5000},
{BillingPeriod.MONTHLY, 549.0000, 549.0000},
{BillingPeriod.ANNUAL, 18.2900, 1.5242},
{BillingPeriod.ANNUAL, 19.9500, 1.6625},
{BillingPeriod.ANNUAL, 29.9500, 2.4958},
{BillingPeriod.ANNUAL, 49.0000, 4.0833},
{BillingPeriod.ANNUAL, 59.0000, 4.9167},
{BillingPeriod.ANNUAL, 149.9500, 12.4958},
{BillingPeriod.ANNUAL, 159.9500, 13.3292},
{BillingPeriod.ANNUAL, 169.9500, 14.1625},
{BillingPeriod.ANNUAL, 183.2900, 15.2742},
{BillingPeriod.ANNUAL, 199.9500, 16.6625},
{BillingPeriod.ANNUAL, 219.9500, 18.3292},
{BillingPeriod.ANNUAL, 239.9000, 19.9917},
{BillingPeriod.ANNUAL, 249.9500, 20.8292},
{BillingPeriod.ANNUAL, 319.0000, 26.5833},
{BillingPeriod.ANNUAL, 349.9500, 29.1625},
{BillingPeriod.ANNUAL, 399.0000, 33.2500},
{BillingPeriod.ANNUAL, 399.9500, 33.3292},
{BillingPeriod.ANNUAL, 458.2900, 38.1908},
{BillingPeriod.ANNUAL, 499.9500, 41.6625},
{BillingPeriod.ANNUAL, 549.9500, 45.8292},
{BillingPeriod.ANNUAL, 599.9000, 49.9917},
{BillingPeriod.ANNUAL, 599.9500, 49.9958},
{BillingPeriod.ANNUAL, 624.9500, 52.0792},
{BillingPeriod.ANNUAL, 799.0000, 66.5833},
{BillingPeriod.ANNUAL, 999.0000, 83.2500},
{BillingPeriod.ANNUAL, 2299.0000, 191.5833},
{BillingPeriod.ANNUAL, 5499.0000, 458.2500}};
private Product product;
private Plan plan;
private PlanPhase phase;
private Subscription isubscription;
private BusinessSubscription subscription;
private final Catalog catalog = Mockito.mock(Catalog.class);
@Override
@BeforeMethod(groups = "fast")
public void beforeMethod() throws Exception {
super.beforeMethod();
product = new MockProduct("platinium", "subscription", ProductCategory.BASE);
plan = new MockPlan("platinum-monthly", product);
phase = new MockPhase(PhaseType.EVERGREEN, plan, MockDuration.UNLIMITED(), 25.95);
Mockito.when(catalog.findPlan(Mockito.anyString(), Mockito.<DateTime>any())).thenReturn(plan);
Mockito.when(catalog.findPlan(Mockito.anyString(), Mockito.<DateTime>any(), Mockito.<DateTime>any())).thenReturn(plan);
Mockito.when(catalog.findPhase(Mockito.anyString(), Mockito.<DateTime>any(), Mockito.<DateTime>any())).thenReturn(phase);
Mockito.when(catalogService.getFullCatalog()).thenReturn(catalog);
isubscription = new MockSubscription(Subscription.SubscriptionState.ACTIVE, plan, phase);
subscription = new BusinessSubscription(isubscription, USD, catalog);
}
@Test(groups = "fast")
public void testMrrComputation() throws Exception {
int i = 0;
for (final Object[] object : catalogMapping) {
final BillingPeriod billingPeriod = (BillingPeriod) object[0];
final double price = (Double) object[1];
final double expectedMrr = (Double) object[2];
final BigDecimal computedMrr = BusinessSubscription.getMrrFromBillingPeriod(billingPeriod, BigDecimal.valueOf(price));
Assert.assertEquals(computedMrr.doubleValue(), expectedMrr, "Invalid mrr for product #" + i);
i++;
}
}
@Test(groups = "fast")
public void testConstructor() throws Exception {
Assert.assertEquals(subscription.getRoundedMrr(), 0.0);
Assert.assertEquals(subscription.getSlug(), phase.getName());
Assert.assertEquals(subscription.getPhase(), phase.getPhaseType().toString());
Assert.assertEquals(subscription.getBillingPeriod(), phase.getBillingPeriod());
Assert.assertEquals(subscription.getPrice(), phase.getRecurringPrice().getPrice(null));
Assert.assertEquals(subscription.getProductCategory(), product.getCategory());
Assert.assertEquals(subscription.getProductName(), product.getName());
Assert.assertEquals(subscription.getProductType(), product.getCatalogName());
Assert.assertEquals(subscription.getStartDate(), isubscription.getStartDate());
}
@Test(groups = "fast")
public void testEquals() throws Exception {
Assert.assertSame(subscription, subscription);
Assert.assertEquals(subscription, subscription);
Assert.assertTrue(subscription.equals(subscription));
final Subscription otherSubscription = new MockSubscription(Subscription.SubscriptionState.CANCELLED, plan, phase);
Assert.assertTrue(!subscription.equals(new BusinessSubscription(otherSubscription, USD, catalog)));
}
}