1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/tests/Unit/EntityTranslationTest.php

156 lines
4.8 KiB
PHP
Raw Normal View History

2022-04-06 02:38:01 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
2022-04-06 02:38:01 +02:00
*/
2022-04-06 02:38:01 +02:00
namespace Tests\Unit;
use App\Models\Account;
use App\Models\Client;
use App\Models\Company;
use App\Models\Credit;
use App\Models\Expense;
use App\Models\Invoice;
use App\Models\Payment;
use App\Models\Product;
use App\Models\Project;
use App\Models\Quote;
use App\Models\RecurringExpense;
use App\Models\RecurringInvoice;
use App\Models\RecurringQuote;
use App\Models\Task;
use App\Models\User;
use App\Models\Vendor;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\MockAccountData;
use Tests\TestCase;
/**
* @test
*/
class EntityTranslationTest extends TestCase
{
public $faker;
protected function setUp() :void
2022-04-06 02:38:01 +02:00
{
parent::setUp();
$this->faker = \Faker\Factory::create();
2022-04-06 02:38:01 +02:00
}
public function testTranslations()
{
$account = Account::factory()->create([
'hosted_client_count' => 1000,
'hosted_company_count' => 1000,
2022-04-06 02:38:01 +02:00
]);
2022-04-06 02:38:01 +02:00
$company = Company::factory()->create([
'account_id' => $account->id,
]);
2022-04-06 02:38:01 +02:00
$u = User::factory()->create([
'email' => $this->faker->email(),
'account_id' => $account->id,
2022-04-06 02:38:01 +02:00
]);
$client = Client::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
2022-04-06 02:38:01 +02:00
]);
$credit = Credit::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
$expense = Expense::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
$invoice = Invoice::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
$payment = Payment::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
2022-04-06 02:38:01 +02:00
$product = Product::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
]);
$project = Project::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
$quote = Quote::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
$recurring_expense = RecurringExpense::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
$recurring_invoice = RecurringInvoice::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
2022-04-06 02:38:01 +02:00
$recurring_quote = RecurringQuote::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
2022-04-06 02:38:01 +02:00
$task = Task::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
'client_id' => $client->id,
]);
2022-04-06 02:38:01 +02:00
$vendor = Vendor::factory()->create([
'company_id' => $company->id,
'user_id' => $u->id,
]);
2022-04-06 02:38:01 +02:00
$this->assertEquals(ctrans('texts.user'), $u->translate_entity());
$this->assertEquals(ctrans('texts.company'), $company->translate_entity());
$this->assertEquals(ctrans('texts.client'), $client->translate_entity());
$this->assertEquals(ctrans('texts.credit'), $credit->translate_entity());
$this->assertEquals(ctrans('texts.expense'), $expense->translate_entity());
$this->assertEquals(ctrans('texts.invoice'), $invoice->translate_entity());
$this->assertEquals(ctrans('texts.payment'), $payment->translate_entity());
$this->assertEquals(ctrans('texts.product'), $product->translate_entity());
$this->assertEquals(ctrans('texts.project'), $project->translate_entity());
$this->assertEquals(ctrans('texts.quote'), $quote->translate_entity());
$this->assertEquals(ctrans('texts.recurring_expense'), $recurring_expense->translate_entity());
$this->assertEquals(ctrans('texts.recurring_invoice'), $recurring_invoice->translate_entity());
$this->assertEquals(ctrans('texts.recurring_quote'), $recurring_quote->translate_entity());
$this->assertEquals(ctrans('texts.task'), $task->translate_entity());
$this->assertEquals(ctrans('texts.vendor'), $vendor->translate_entity());
}
}