1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/tests/acceptance/OnlinePaymentCest.php

67 lines
2.5 KiB
PHP
Raw Normal View History

2015-10-28 20:22:07 +01:00
/<?php
2015-09-01 20:40:30 +02:00
use Codeception\Util\Fixtures;
use Faker\Factory;
class OnlinePaymentCest
{
private $faker;
public function _before(AcceptanceTester $I)
{
$I->checkIfLogin($I);
$this->faker = Factory::create();
}
public function onlinePayment(AcceptanceTester $I)
{
$I->wantTo('test an online payment');
$clientEmail = $this->faker->safeEmail;
$productKey = $this->faker->text(10);
2017-03-19 14:31:25 +01:00
$I->createGateway($I);
$I->createClient($I, $clientEmail);
2015-09-01 20:40:30 +02:00
// create product
$I->amOnPage('/products/create');
$I->fillField(['name' => 'product_key'], $productKey);
$I->fillField(['name' => 'notes'], $this->faker->text(80));
$I->fillField(['name' => 'cost'], $this->faker->numberBetween(1, 20));
$I->click('Save');
2015-10-28 20:22:07 +01:00
$I->wait(1);
2016-10-02 11:52:23 +02:00
//$I->see($productKey);
2015-09-01 20:40:30 +02:00
// create invoice
$I->amOnPage('/invoices/create');
2017-03-19 16:44:35 +01:00
$invoiceNumber = $I->grabAttributeFrom('#invoice_number', 'value');
2015-09-01 20:40:30 +02:00
$I->selectDropdown($I, $clientEmail, '.client_select .dropdown-toggle');
2017-12-25 14:23:30 +01:00
$I->fillField('table.invoice-table tbody tr:nth-child(1) td:nth-child(2) input.tt-input', $productKey);
2016-02-29 19:08:09 +01:00
$I->click('table.invoice-table tbody tr:nth-child(1) .tt-selectable');
2016-12-05 11:30:41 +01:00
$I->click('Mark Sent');
2015-09-01 20:40:30 +02:00
$I->see($clientEmail);
// enter payment
$clientId = $I->grabFromDatabase('contacts', 'client_id', ['email' => $clientEmail]);
2017-03-19 16:44:35 +01:00
$invoiceId = $I->grabFromDatabase('invoices', 'id', ['client_id' => $clientId, 'invoice_number' => $invoiceNumber]);
$invitationKey = $I->grabFromDatabase('invitations', 'invitation_key', ['invoice_id' => $invoiceId]);
2017-03-19 19:08:32 +01:00
$I->createOnlinePayment($I, $invitationKey);
2017-03-19 14:31:25 +01:00
// create recurring invoice and auto-bill
$I->amOnPage('/recurring_invoices/create');
2017-06-05 08:51:43 +02:00
$I->selectDropdown($I, $clientEmail, '.client_select .dropdown-toggle');
2017-12-25 14:23:30 +01:00
$I->fillField('table.invoice-table tbody tr:nth-child(1) td:nth-child(2) input.tt-input', $productKey);
2016-03-02 18:23:20 +01:00
$I->click('table.invoice-table tbody tr:nth-child(1) .tt-selectable');
2016-05-13 09:38:42 +02:00
$I->selectOption('#auto_bill', 3);
2017-02-27 11:57:45 +01:00
$I->executeJS('onConfirmEmailClick()');
2018-03-10 22:19:41 +01:00
$I->wait(10);
2017-03-30 14:23:07 +02:00
$invoiceId = $I->grabFromDatabase('invoices', 'id', ['client_id' => $clientId, 'is_recurring' => true]);
$invoiceId = $I->grabFromDatabase('invoices', 'public_id', ['recurring_invoice_id' => $invoiceId]);
2017-06-05 08:51:43 +02:00
$I->seeInDatabase('invoices', ['client_id' => $clientId, 'public_id' => $invoiceId, 'balance' => 0]);
}
2016-05-13 09:38:42 +02:00
}