mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
151 lines
4.8 KiB
PHP
151 lines
4.8 KiB
PHP
<?php
|
|
|
|
use Codeception\Util\Fixtures;
|
|
use Faker\Factory;
|
|
|
|
class TaxRatesCest
|
|
{
|
|
private $faker;
|
|
|
|
public function _before(AcceptanceTester $I)
|
|
{
|
|
$I->checkIfLogin($I);
|
|
|
|
$this->faker = Factory::create();
|
|
}
|
|
|
|
public function lineItemTaxRates(AcceptanceTester $I)
|
|
{
|
|
$I->wantTo('test line item tax rates');
|
|
|
|
$clientEmail = $this->faker->safeEmail;
|
|
$productKey = $this->faker->text(10);
|
|
$itemTaxRate = $this->faker->randomFloat(2, 5, 15);
|
|
$itemTaxName = $this->faker->word();
|
|
$invoiceTaxRate = $this->faker->randomFloat(2, 5, 15);
|
|
$invoiceTaxName = $this->faker->word();
|
|
$itemCost = $this->faker->numberBetween(1, 20);
|
|
|
|
$total = $itemCost;
|
|
$total += round($itemCost * $itemTaxRate / 100, 2);
|
|
$total += round($itemCost * $invoiceTaxRate / 100, 2);
|
|
|
|
$itemTaxRate = number_format($itemTaxRate, 3);
|
|
$invoiceTaxRate = number_format($invoiceTaxRate, 3);
|
|
|
|
// create tax rates
|
|
$I->createTaxRate($I, $itemTaxName, $itemTaxRate);
|
|
$I->createTaxRate($I, $invoiceTaxName, $invoiceTaxRate);
|
|
|
|
// enable line item taxes
|
|
$I->amOnPage('/settings/tax_rates');
|
|
$I->checkOption('#invoice_item_taxes');
|
|
$I->click('Save');
|
|
|
|
// create product
|
|
$I->amOnPage('/products/create');
|
|
$I->fillField(['name' => 'product_key'], $productKey);
|
|
$I->fillField(['name' => 'notes'], $this->faker->text(80));
|
|
$I->fillField(['name' => 'cost'], $itemCost);
|
|
$I->selectOption('select[name=tax_select1]', $itemTaxName . ': ' . $itemTaxRate . '%');
|
|
$I->click('Save');
|
|
$I->wait(1);
|
|
//$I->see($productKey);
|
|
|
|
// create client
|
|
$I->amOnPage('/clients/create');
|
|
$I->fillField(['name' => 'contacts[0][email]'], $clientEmail);
|
|
$I->click('Save');
|
|
$I->see($clientEmail);
|
|
|
|
// create invoice
|
|
$I->amOnPage('/invoices/create');
|
|
$I->selectDropdown($I, $clientEmail, '.client_select .dropdown-toggle');
|
|
$I->fillField('table.invoice-table tbody tr:nth-child(1) td:nth-child(2) input.tt-input', $productKey);
|
|
$I->click('table.invoice-table tbody tr:nth-child(1) .tt-selectable');
|
|
$I->selectOption('#taxRateSelect1', $invoiceTaxName . ' ' . floatval($invoiceTaxRate) . '%');
|
|
$I->wait(3);
|
|
|
|
// check total is right before saving
|
|
$I->see("\${$total}");
|
|
$I->click('Save Draft');
|
|
$I->wait(3);
|
|
$I->see($clientEmail);
|
|
|
|
// check total is right after saving
|
|
$I->see("\${$total}");
|
|
$I->amOnPage('/invoices');
|
|
$I->wait(2);
|
|
|
|
// check total is right in list view
|
|
$I->see("\${$total}");
|
|
}
|
|
|
|
|
|
public function invoiceTaxRates(AcceptanceTester $I)
|
|
{
|
|
$I->wantTo('test invoice tax rates');
|
|
|
|
$clientEmail = $this->faker->safeEmail;
|
|
$productKey = $this->faker->text(10);
|
|
$invoiceTaxRate = $this->faker->randomFloat(2, 5, 15);
|
|
$invoiceTaxName = $this->faker->word();
|
|
$itemCost = $this->faker->numberBetween(1, 20);
|
|
|
|
$total = $itemCost;
|
|
$total += round($itemCost * $invoiceTaxRate / 100, 2);
|
|
|
|
$invoiceTaxRate = number_format($invoiceTaxRate, 3);
|
|
|
|
// create tax rates
|
|
$I->createTaxRate($I, $invoiceTaxName, $invoiceTaxRate);
|
|
|
|
// enable line item taxes
|
|
$I->amOnPage('/settings/tax_rates');
|
|
$I->selectOption('#tax_select1', $invoiceTaxName . ': ' . $invoiceTaxRate . '%');
|
|
$I->click('Save');
|
|
|
|
// create product
|
|
$I->amOnPage('/products/create');
|
|
$I->fillField(['name' => 'product_key'], $productKey);
|
|
$I->fillField(['name' => 'notes'], $this->faker->text(80));
|
|
$I->fillField(['name' => 'cost'], $itemCost);
|
|
$I->click('Save');
|
|
$I->wait(1);
|
|
//$I->see($productKey);
|
|
|
|
// create client
|
|
$I->amOnPage('/clients/create');
|
|
$I->fillField(['name' => 'contacts[0][email]'], $clientEmail);
|
|
$I->click('Save');
|
|
$I->see($clientEmail);
|
|
|
|
// create invoice
|
|
$I->amOnPage('/invoices/create');
|
|
$I->selectDropdown($I, $clientEmail, '.client_select .dropdown-toggle');
|
|
$I->fillField('table.invoice-table tbody tr:nth-child(1) td:nth-child(2) input.tt-input', $productKey);
|
|
$I->click('table.invoice-table tbody tr:nth-child(1) .tt-selectable');
|
|
$I->wait(3);
|
|
|
|
// check total is right before saving
|
|
$I->see("\${$total}");
|
|
$I->click('Save Draft');
|
|
$I->wait(3);
|
|
$I->see($clientEmail);
|
|
|
|
// check total is right after saving
|
|
$I->see("\${$total}");
|
|
$I->amOnPage('/invoices');
|
|
$I->wait(2);
|
|
|
|
// check total is right in list view
|
|
$I->see("\${$total}");
|
|
|
|
// enable line item taxes
|
|
$I->amOnPage('/settings/tax_rates');
|
|
$I->selectOption('#tax_select1', '');
|
|
$I->click('Save');
|
|
}
|
|
|
|
}
|