1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/tests/Unit/FactoryCreationTest.php

153 lines
3.5 KiB
PHP
Raw Normal View History

2019-04-26 12:51:02 +02:00
<?php
2020-09-14 13:11:46 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-09-14 13:11:46 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
2020-09-14 13:11:46 +02:00
*/
2019-04-26 12:51:02 +02:00
namespace Tests\Unit;
2019-04-26 13:02:52 +02:00
use App\Factory\ClientFactory;
2019-04-26 13:18:23 +02:00
use App\Factory\CloneInvoiceFactory;
use App\Factory\InvoiceFactory;
use App\Factory\ProductFactory;
2019-04-26 12:51:02 +02:00
use App\Factory\UserFactory;
use App\Models\User;
2019-04-26 12:51:02 +02:00
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\Model;
2019-04-26 13:02:52 +02:00
use Illuminate\Foundation\Testing\DatabaseTransactions;
2019-04-26 12:51:02 +02:00
use Illuminate\Support\Facades\Session;
use Tests\MockAccountData;
2019-04-26 12:51:02 +02:00
use Tests\TestCase;
/**
* @test
*/
class FactoryCreationTest extends TestCase
{
use MakesHash;
2019-04-26 13:02:52 +02:00
use DatabaseTransactions;
use MockAccountData;
2019-04-26 12:51:02 +02:00
protected function setUp() :void
2019-04-26 12:51:02 +02:00
{
parent::setUp();
2019-04-26 12:51:02 +02:00
Session::start();
$this->faker = \Faker\Factory::create();
Model::reguard();
$this->makeTestData();
2019-04-26 13:02:52 +02:00
}
2019-04-26 13:18:23 +02:00
/**
* @test
* @covers App\Factory\ProductFactory
*/
public function testProductionCreation()
{
$product = ProductFactory::create($this->company->id, $this->user->id);
$product->save();
$this->assertNotNull($product);
$this->assertIsInt($product->id);
2019-04-26 13:18:23 +02:00
}
/**
* @test
* @covers App\Factory\InvoiceFactory
*/
public function testInvoiceCreation()
{
$client = ClientFactory::create($this->company->id, $this->user->id);
$client->save();
$invoice = InvoiceFactory::create($this->company->id, $this->user->id); //stub the company and user_id
2019-04-26 13:18:23 +02:00
$invoice->client_id = $client->id;
$invoice->save();
$this->assertNotNull($invoice);
$this->assertIsInt($invoice->id);
2019-04-26 13:18:23 +02:00
}
/**
* @test
2019-05-03 10:34:27 +02:00
* @covers App\Factory\CloneInvoiceFactory
2019-04-26 13:18:23 +02:00
*/
public function testCloneInvoiceCreation()
{
$client = ClientFactory::create($this->company->id, $this->user->id);
$client->save();
$invoice = InvoiceFactory::create($this->company->id, $this->user->id); //stub the company and user_id
2019-04-26 13:18:23 +02:00
$invoice->client_id = $client->id;
$invoice->save();
$this->assertNotNull($invoice);
$this->assertIsInt($invoice->id);
2019-04-26 13:18:23 +02:00
$clone = CloneInvoiceFactory::create($invoice, $this->user->id);
$clone->save();
$this->assertNotNull($clone);
$this->assertIsInt($clone->id);
2019-04-26 13:18:23 +02:00
}
2019-04-26 13:02:52 +02:00
/**
* @test
2019-05-03 10:34:27 +02:00
* @covers App\Factory\ClientFactory
2019-04-26 13:02:52 +02:00
*/
public function testClientCreate()
{
$cliz = ClientFactory::create($this->company->id, $this->user->id);
2019-04-26 13:02:52 +02:00
$cliz->save();
2019-04-26 13:02:52 +02:00
$this->assertNotNull($cliz);
2019-04-26 13:02:52 +02:00
$this->assertIsInt($cliz->id);
2019-04-26 13:02:52 +02:00
}
/**
* @test
2019-05-03 10:34:27 +02:00
* @covers App\Factory\ClientContactFactory
2019-04-26 13:02:52 +02:00
*/
public function testClientContactCreate()
{
$cliz = ClientFactory::create($this->company->id, $this->user->id);
2019-04-26 13:02:52 +02:00
$cliz->save();
2019-04-26 13:02:52 +02:00
$this->assertNotNull($cliz->contacts);
$this->assertEquals(0, $cliz->contacts->count());
$this->assertIsInt($cliz->id);
2019-04-26 12:51:02 +02:00
}
2019-04-26 13:02:52 +02:00
/**
* @test
2019-05-03 10:34:27 +02:00
* @covers App\Factory\UserFactory
2019-04-26 13:02:52 +02:00
*/
2019-04-26 12:51:02 +02:00
public function testUserCreate()
{
$new_user = UserFactory::create($this->account->id);
$new_user->email = $this->faker->freeEmail();
2019-04-26 12:51:02 +02:00
$new_user->save();
$this->assertNotNull($new_user);
$this->assertIsInt($new_user->id);
2019-04-26 12:51:02 +02:00
}
}