Skip to content

Commit

Permalink
Invoice Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Batuhan Baş committed Oct 30, 2018
1 parent 0f184a3 commit 8b55b5c
Showing 1 changed file with 108 additions and 0 deletions.
108 changes: 108 additions & 0 deletions tests/Feature/Incomes/InvoicesTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<?php

namespace Tests\Feature\Incomes;

use App\Models\Common\Item;
use App\Models\Income\Customer;
use App\Models\Income\Invoice;
use Tests\Feature\FeatureTestCase;

class InvoicesTest extends FeatureTestCase
{
public function testItShouldSeeInvoiceListPage()
{
$this->loginAs()
->get(url('incomes/invoices'))
->assertStatus(200)
->assertSeeText(trans_choice('general.invoices', 2));
}

public function testItShouldSeeInvoiceCreatePage()
{
$this->loginAs()
->get(url('incomes/invoices'))
->assertStatus(200)
->assertSeeText(trans( trans_choice('general.invoices', 1)));
}

public function testItShouldCreateInvoice()
{
$this->loginAs()
->post(url('incomes/invoices'), $this->getInvoiceRequest())
->assertStatus(302)
->assertRedirect(url('incomes/invoices', ['invoice' => 1]));

$this->assertFlashLevel('success');
}

public function testItShouldCreateInvoiceWithRecurring()
{
$this->loginAs()
->post(url('incomes/invoices'), $this->getInvoiceRequest(1))
->assertStatus(302)
->assertRedirect(url('incomes/invoices', ['invoice' => 1]));

$this->assertFlashLevel('success');
}

public function testItShouldUpdateInvoice()
{
$request = $this->getInvoiceRequest();

$invoice = Invoice::create($request);

$request['customer_name'] = $this->faker->name;

$this->loginAs()
->patch(url('incomes/invoices', $invoice->id), $request)
->assertStatus(302);

$this->assertFlashLevel('success');
}

public function testItShouldDeleteInvoice()
{
$invoice = Invoice::create($this->getInvoiceRequest());

$this->loginAs()
->delete(url('incomes/invoices', $invoice->id))
->assertStatus(302)
->assertRedirect(url('incomes/invoices'));

$this->assertFlashLevel('success');
}

private function getInvoiceRequest($recurring = 0)
{
$amount = $this->faker->randomFloat(2, 2);
$data = [
'company_id' => $this->company->id,
'customer_id' => '0',
'currency_code' => setting('general.default_currency'),
'currency_rate' => '1',
'invoiced_at' => $this->faker->date(),
'due_at' => $this->faker->date(),
'invoice_number' => $this->faker->lexify('INV ???'),
'order_number' => $this->faker->randomDigit,
'discount' => '0',
'notes' => $this->faker->text(5),
'category_id' => $this->company->categories()->type('income')->first()->id,
'recurring_frequency' => 'no',
'customer_name' => $this->faker->name,
'customer_email' =>$this->faker->email,
'customer_tax_number' => null,
'customer_phone' => null,
'customer_address' => $this->faker->address,
'invoice_status_code' => 'draft',
'amount' => $amount,
];

if ($recurring) {
$data['recurring_frequency'] = 'yes';
$data['recurring_interval'] = '1';
$data['recurring_custom_frequency'] = $this->faker->randomElement(['monthly', 'weekly']);
$data['recurring_count'] = '1';
}
return $data;
}
}

0 comments on commit 8b55b5c

Please sign in to comment.