Search in sources :

Example 1 with InvoiceDryRun

use of org.killbill.billing.client.model.gen.InvoiceDryRun in project killbill by killbill.

the class TestInvoice method testInvoiceOk.

@Test(groups = "slow", description = "Can search and retrieve invoices with and without items")
public void testInvoiceOk() throws Exception {
    final DateTime initialDate = new DateTime(2012, 4, 25, 0, 3, 42, 0);
    clock.setDeltaFromReality(initialDate.getMillis() - clock.getUTCNow().getMillis());
    final Account accountJson = createAccountWithPMBundleAndSubscriptionAndWaitForFirstInvoice();
    final Invoices invoices = accountApi.getInvoicesForAccount(accountJson.getAccountId(), null, null, false, false, false, null, AuditLevel.FULL, requestOptions);
    assertEquals(invoices.size(), 2);
    for (final Invoice invoiceJson : invoices) {
        Assert.assertEquals(invoiceJson.getAuditLogs().size(), 1);
        final AuditLog auditLogJson = invoiceJson.getAuditLogs().get(0);
        Assert.assertEquals(auditLogJson.getChangeType(), "INSERT");
        Assert.assertEquals(auditLogJson.getChangedBy(), "SubscriptionBaseTransition");
        Assert.assertFalse(auditLogJson.getChangeDate().isBefore(initialDate));
        Assert.assertNotNull(auditLogJson.getUserToken());
        Assert.assertNull(auditLogJson.getReasonCode());
        Assert.assertNull(auditLogJson.getComments());
    }
    final Invoice invoiceJson = invoices.get(0);
    assertEquals(invoiceJson.getItems().size(), 1);
    final InvoiceItem invoiceItem = invoiceJson.getItems().get(0);
    assertEquals(invoiceItem.getProductName(), "Shotgun");
    assertEquals(invoiceItem.getPrettyProductName(), "Shotgun");
    assertEquals(invoiceItem.getPlanName(), "shotgun-monthly");
    assertEquals(invoiceItem.getPrettyPlanName(), "Shotgun Monthly");
    assertEquals(invoiceItem.getPhaseName(), "shotgun-monthly-trial");
    assertEquals(invoiceItem.getPrettyPhaseName(), "shotgun-monthly-trial");
    // Check item is correctly returned with catalog effective date
    assertEquals(invoiceItem.getCatalogEffectiveDate().compareTo(ISODateTimeFormat.dateTimeParser().parseDateTime("2011-01-01T00:00:00+00:00")), 0);
    assertEquals(invoiceApi.getInvoice(invoiceJson.getInvoiceId(), Boolean.TRUE, AuditLevel.NONE, requestOptions).getItems().size(), invoiceJson.getItems().size());
    assertEquals(invoiceApi.getInvoiceByNumber(Integer.valueOf(invoiceJson.getInvoiceNumber()), Boolean.FALSE, AuditLevel.NONE, requestOptions).getItems().size(), invoiceJson.getItems().size());
    assertEquals(invoiceApi.getInvoiceByItemId(invoiceItem.getInvoiceItemId(), false, AuditLevel.NONE, requestOptions).getItems().size(), invoiceJson.getItems().size());
    // Check we can retrieve an individual invoice
    final Invoice firstInvoice = invoiceApi.getInvoice(invoiceJson.getInvoiceId(), false, AuditLevel.FULL, requestOptions);
    assertEquals(firstInvoice, invoiceJson);
    // Check we can retrieve the invoice by number
    final Invoice firstInvoiceByNumberJson = invoiceApi.getInvoiceByNumber(Integer.valueOf(invoiceJson.getInvoiceNumber()), false, AuditLevel.FULL, requestOptions);
    assertEquals(firstInvoiceByNumberJson, invoiceJson);
    // Check we can retrieve the HTML version
    final String htmlInvoice = invoiceApi.getInvoiceAsHTML(invoiceJson.getInvoiceId(), requestOptions);
    // Disabled this test as different output is produced by Java 8 and Java 11.
    // assertEquals(htmlInvoice,"<!doctype html>\r\n" +
    // "<html>\r\n" +
    // "<head>\r\n" +
    // "    <meta charset=\"utf-8\">\r\n" +
    // "    <title>invoiceTitle</title>\r\n" +
    // "    <style>\r\n" +
    // "        /*!\r\n" +
    // "         * https://www.sparksuite.com/open-source/invoice.html\r\n" +
    // "         * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\r\n" +
    // "         */\r\n" +
    // "        .invoice-box{max-width:800px;margin:auto;padding:30px;border:1px solid #eee;box-shadow:0 0 10px rgba(0,0,0,.15);font-size:16px;line-height:24px;font-family:'Helvetica Neue',Helvetica,Helvetica,Arial,sans-serif;color:#555}.invoice-box table{width:100%;line-height:inherit;text-align:left}.invoice-box table td{padding:5px;vertical-align:top}.invoice-box table tr td:nth-child(3){text-align:right}.invoice-box table tr.top table td{padding-bottom:20px}.invoice-box table tr.top table td.title{font-size:45px;line-height:45px;color:#333}.invoice-box table tr.information table td{padding-bottom:40px}.invoice-box table tr.heading td{background:#eee;border-bottom:1px solid #ddd;font-weight:700}.invoice-box table tr.details td{padding-bottom:20px}.invoice-box table tr.item td{border-bottom:1px solid #eee}.invoice-box table tr.item.last td{border-bottom:none}.invoice-box table tr.total td:nth-child(3){border-top:2px solid #eee;font-weight:700}@media only screen and (max-width:600px){.invoice-box table tr.top table td{width:100%;display:block;text-align:center}.invoice-box table tr.information table td{width:100%;display:block;text-align:center}}.rtl{direction:rtl;font-family:Tahoma,'Helvetica Neue',Helvetica,Helvetica,Arial,sans-serif}.rtl table{text-align:right}.rtl table tr td:nth-child(3){text-align:left}\r\n" +
    // "    </style>\r\n" +
    // "</head>\r\n" +
    // "<body>\r\n" +
    // "<div class=\"invoice-box\">\r\n" +
    // "    <table cellpadding=\"0\" cellspacing=\"0\">\r\n" +
    // "        <tr class=\"top\">\r\n" +
    // "            <td colspan=\"3\">\r\n" +
    // "                <table>\r\n" +
    // "                    <tr>\r\n" +
    // "                        <td class=\"title\">\r\n" +
    // "                            <img src=\"https://raw.githubusercontent.com/killbill/killbill-docs/v3/userguide/assets/img/logo.png\" style=\"width:100%; max-width:300px;\">\r\n" +
    // "                        </td>\r\n" +
    // "                        <td></td>\r\n" +
    // "                        <td>\r\n" +
    // "                            invoiceTitle INV#"+invoiceJson.getInvoiceNumber()+"<br>\r\n" +
    // "                            invoiceDate25 avr. 2012\r\n" +
    // "                        </td>\r\n" +
    // "                    </tr>\r\n" +
    // "                </table>\r\n" +
    // "            </td>\r\n" +
    // "        </tr>\r\n" +
    // "        <tr class=\"information\">\r\n" +
    // "            <td colspan=\"3\">\r\n" +
    // "                <table>\r\n" +
    // "                    <tr>\r\n" +
    // "                        <td>\r\n" +
    // "                            companyName<br>\r\n" +
    // "                            companyAddress<br>\r\n" +
    // "                            companyCityProvincePostalCode<br>\r\n" +
    // "                            companyCountry\r\n" +
    // "                        </td>\r\n" +
    // "                        <td></td>\r\n" +
    // "                        <td>\r\n" +
    // "                            "+accountJson.getName()+"<br>\r\n"+
    // "                            Renault<br>\r\n" +
    // "                            12 rue des ecoles<br>\r\n" +
    // "                            Quelque part, Poitou 44 567<br>\r\n" +
    // "                            France\r\n" +
    // "                        </td>\r\n" +
    // "                    </tr>\r\n" +
    // "                </table>\r\n" +
    // "            </td>\r\n" +
    // "        </tr>\r\n" +
    // "        <tr class=\"heading\">\r\n" +
    // "            <td>invoiceItemServicePeriod</td>\r\n" +
    // "            <td>invoiceItemDescription</td>\r\n" +
    // "            <td>invoiceItemAmount</td>\r\n" +
    // "        </tr>\r\n" +
    // "            <tr class=\"item last\">\r\n" +
    // "                <td>25 avr. 2012</td>\r\n" +
    // "                <td>Shotgun Monthly</td>\r\n" +
    // "                <td>0,00 USD</td>\r\n" +
    // "            </tr>\r\n" +
    // "        <tr class=\"total\">\r\n" +
    // "            <td></td>\r\n" +
    // "            <td></td>\r\n" +
    // "            <td>invoiceAmount0,00 US$</td>\r\n" +
    // "        </tr>\r\n" +
    // "        <tr class=\"total\">\r\n" +
    // "            <td></td>\r\n" +
    // "            <td></td>\r\n" +
    // "            <td>invoiceAmountPaid0,00 US$</td>\r\n" +
    // "        </tr>\r\n" +
    // "        <tr class=\"total\">\r\n" +
    // "            <td></td>\r\n" +
    // "            <td></td>\r\n" +
    // "            <td>invoiceBalance0,00 US$</td>\r\n" +
    // "        </tr>\r\n" +
    // "    </table>\r\n" +
    // "</div>\r\n" +
    // "</body>\r\n" +
    // "</html>"
    // );
    // Then create a dryRun for next upcoming invoice
    final InvoiceDryRun dryRunArg = new InvoiceDryRun().setDryRunType(DryRunType.UPCOMING_INVOICE);
    final Invoice dryRunInvoice = invoiceApi.generateDryRunInvoice(dryRunArg, accountJson.getAccountId(), null, requestOptions);
    assertEquals(dryRunInvoice.getBalance(), new BigDecimal("249.95"));
    assertEquals(dryRunInvoice.getTargetDate(), new LocalDate(2012, 6, 25));
    assertEquals(dryRunInvoice.getItems().size(), 1);
    assertEquals(dryRunInvoice.getItems().get(0).getStartDate(), new LocalDate(2012, 6, 25));
    assertEquals(dryRunInvoice.getItems().get(0).getEndDate(), new LocalDate(2012, 7, 25));
    assertEquals(dryRunInvoice.getItems().get(0).getAmount(), new BigDecimal("249.95"));
    final LocalDate futureDate = dryRunInvoice.getTargetDate();
    // The one more time with no DryRun
    invoiceApi.createFutureInvoice(accountJson.getAccountId(), futureDate, requestOptions);
    // Check again # invoices, should be 3 this time
    final List<Invoice> newInvoiceList = accountApi.getInvoicesForAccount(accountJson.getAccountId(), null, null, null, requestOptions);
    assertEquals(newInvoiceList.size(), 3);
}
Also used : Account(org.killbill.billing.client.model.gen.Account) Invoice(org.killbill.billing.client.model.gen.Invoice) InvoiceItem(org.killbill.billing.client.model.gen.InvoiceItem) Invoices(org.killbill.billing.client.model.Invoices) InvoiceDryRun(org.killbill.billing.client.model.gen.InvoiceDryRun) LocalDate(org.joda.time.LocalDate) DateTime(org.joda.time.DateTime) AuditLog(org.killbill.billing.client.model.gen.AuditLog) BigDecimal(java.math.BigDecimal) Test(org.testng.annotations.Test)

Example 2 with InvoiceDryRun

use of org.killbill.billing.client.model.gen.InvoiceDryRun in project killbill by killbill.

the class TestInvoice method testDryRunSubscriptionCreate.

@Test(groups = "slow", description = "Can create a subscription in dryRun mode and get an invoice back")
public void testDryRunSubscriptionCreate() throws Exception {
    final DateTime initialDate = new DateTime(2012, 4, 25, 0, 3, 42, 0);
    clock.setDeltaFromReality(initialDate.getMillis() - clock.getUTCNow().getMillis());
    // "Assault-Rifle", BillingPeriod.ANNUAL, "rescue", BillingActionPolicy.IMMEDIATE,
    final Account accountJson = createAccountWithDefaultPaymentMethod();
    final LocalDate effDt = new LocalDate(initialDate, DateTimeZone.forID(accountJson.getTimeZone()));
    final InvoiceDryRun dryRunArg = new InvoiceDryRun(DryRunType.SUBSCRIPTION_ACTION, SubscriptionEventType.START_BILLING, null, "Assault-Rifle", ProductCategory.BASE, BillingPeriod.ANNUAL, null, null, null, effDt, null, null);
    final LocalDate targetDt1 = effDt;
    final Invoice dryRunInvoice1 = invoiceApi.generateDryRunInvoice(dryRunArg, accountJson.getAccountId(), targetDt1, requestOptions);
    // One item for the FIXED price
    assertEquals(dryRunInvoice1.getItems().size(), 1);
    final LocalDate targetDt2 = effDt.plusDays(30);
    final Invoice dryRunInvoice2 = invoiceApi.generateDryRunInvoice(dryRunArg, accountJson.getAccountId(), targetDt2, requestOptions);
    // Two items for the FIXED & RECURRING price validating the future targetDate
    assertEquals(dryRunInvoice2.getItems().size(), 2);
}
Also used : Account(org.killbill.billing.client.model.gen.Account) Invoice(org.killbill.billing.client.model.gen.Invoice) InvoiceDryRun(org.killbill.billing.client.model.gen.InvoiceDryRun) LocalDate(org.joda.time.LocalDate) DateTime(org.joda.time.DateTime) Test(org.testng.annotations.Test)

Aggregations

DateTime (org.joda.time.DateTime)2 LocalDate (org.joda.time.LocalDate)2 Account (org.killbill.billing.client.model.gen.Account)2 Invoice (org.killbill.billing.client.model.gen.Invoice)2 InvoiceDryRun (org.killbill.billing.client.model.gen.InvoiceDryRun)2 Test (org.testng.annotations.Test)2 BigDecimal (java.math.BigDecimal)1 Invoices (org.killbill.billing.client.model.Invoices)1 AuditLog (org.killbill.billing.client.model.gen.AuditLog)1 InvoiceItem (org.killbill.billing.client.model.gen.InvoiceItem)1