mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
* Convert string references to `::class` PHP 5.5.9 adds the new static `class` property which provides the fully qualified class name. This is preferred over using strings for class names since the `class` property references are checked by PHP. * Use Faker methods Accessing Faker properties was deprecated in Faker 1.14. * Convert route options to fluent methods Laravel 8 adopts the tuple syntax for controller actions. Since the old options array is incompatible with this syntax, Shift converted them to use modern, fluent methods. * Adopt class based routes * Remove default `app` files * Shift core files * Streamline config files * Set new `ENV` variables * Default new `bootstrap/app.php` * Re-register HTTP middleware * Consolidate service providers * Re-register service providers * Re-register routes * Re-register scheduled commands * Bump Composer dependencies * Use `<env>` tags for configuration `<env>` tags have a lower precedence than system environment variables making it easier to overwrite PHPUnit configuration values in additional environments, such a CI. Review this blog post for more details on configuration precedence when testing Laravel: https://jasonmccreary.me/articles/laravel-testing-configuration-precedence/ * Adopt anonymous migrations * Rename `password_resets` table * Convert `$casts` property to method * Adopt Laravel type hints * Mark base controller as `abstract` * Remove `CreatesApplication` testing trait * Shift cleanup * Fix shift first issues * Updating Rules for laravel 11, sanctum config and pint * Fix Carbon issue on dashboard * Temporary fix for tests while migration is issue fixed on laravel side * Carbon needs numerical values, not strings * Minimum php version * Fix domain installation step not fetching the correct company_id * Fix Role Policy wasn't properly registered ---------
201 lines
4.9 KiB
PHP
201 lines
4.9 KiB
PHP
<?php
|
|
|
|
use App\Http\Controllers\V1\Admin\Settings\CompanyController;
|
|
use App\Http\Requests\CompanyRequest;
|
|
use App\Http\Requests\ProfileRequest;
|
|
use App\Models\Invoice;
|
|
use App\Models\InvoiceItem;
|
|
use App\Models\Tax;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Laravel\Sanctum\Sanctum;
|
|
|
|
use function Pest\Laravel\getJson;
|
|
use function Pest\Laravel\postJson;
|
|
use function Pest\Laravel\putJson;
|
|
|
|
beforeEach(function () {
|
|
Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
|
|
Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
|
|
|
|
$user = User::find(1);
|
|
$this->withHeaders([
|
|
'company' => $user->companies()->first()->id,
|
|
]);
|
|
Sanctum::actingAs(
|
|
$user,
|
|
['*']
|
|
);
|
|
});
|
|
|
|
test('get profile', function () {
|
|
getJson('api/v1/me')
|
|
->assertOk();
|
|
});
|
|
|
|
test('update profile using a form request', function () {
|
|
$this->assertActionUsesFormRequest(
|
|
CompanyController::class,
|
|
'updateProfile',
|
|
ProfileRequest::class
|
|
);
|
|
});
|
|
|
|
test('update profile', function () {
|
|
$user = [
|
|
'name' => 'John Doe',
|
|
'password' => 'admin@123',
|
|
'email' => 'admin@invoiceshelf.com',
|
|
];
|
|
|
|
$response = putJson('api/v1/me', $user);
|
|
|
|
$response->assertOk();
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'name' => $user['name'],
|
|
'email' => $user['email'],
|
|
]);
|
|
});
|
|
|
|
test('update company using a form request', function () {
|
|
$this->assertActionUsesFormRequest(
|
|
CompanyController::class,
|
|
'updateCompany',
|
|
CompanyRequest::class
|
|
);
|
|
});
|
|
|
|
test('update company', function () {
|
|
$company = [
|
|
'name' => 'XYZ',
|
|
'country_id' => 2,
|
|
'state' => 'city',
|
|
'city' => 'state',
|
|
'address_street_1' => 'test1',
|
|
'address_street_2' => 'test2',
|
|
'phone' => '1234567890',
|
|
'zip' => '112233',
|
|
'address' => [
|
|
'country_id' => 2,
|
|
],
|
|
];
|
|
|
|
putJson('api/v1/company', $company)
|
|
->assertOk();
|
|
|
|
$this->assertDatabaseHas('companies', [
|
|
'name' => $company['name'],
|
|
]);
|
|
|
|
$this->assertDatabaseHas('addresses', [
|
|
'country_id' => $company['country_id'],
|
|
]);
|
|
});
|
|
|
|
test('update settings', function () {
|
|
$settings = [
|
|
'currency' => 1,
|
|
'time_zone' => 'Asia/Kolkata',
|
|
'language' => 'en',
|
|
'fiscal_year' => '1-12',
|
|
'carbon_date_format' => 'Y/m/d',
|
|
'moment_date_format' => 'YYYY/MM/DD',
|
|
'notification_email' => 'noreply@invoiceshelf.com',
|
|
'notify_invoice_viewed' => 'YES',
|
|
'notify_estimate_viewed' => 'YES',
|
|
'tax_per_item' => 'YES',
|
|
'discount_per_item' => 'YES',
|
|
];
|
|
|
|
$response = postJson('/api/v1/company/settings', ['settings' => $settings]);
|
|
|
|
$response->assertOk()
|
|
->assertJson([
|
|
'success' => true,
|
|
]);
|
|
|
|
foreach ($settings as $key => $value) {
|
|
$this->assertDatabaseHas('company_settings', [
|
|
'option' => $key,
|
|
'value' => $value,
|
|
]);
|
|
}
|
|
});
|
|
|
|
test('update settings without currency setting', function () {
|
|
$settings = [
|
|
'notification_email' => 'noreply@invoiceshelf.com',
|
|
];
|
|
|
|
$response = postJson('/api/v1/company/settings', ['settings' => $settings]);
|
|
|
|
$response->assertOk()
|
|
->assertJson([
|
|
'success' => true,
|
|
]);
|
|
|
|
foreach ($settings as $key => $value) {
|
|
$this->assertDatabaseHas('company_settings', [
|
|
'option' => $key,
|
|
'value' => $value,
|
|
]);
|
|
}
|
|
});
|
|
|
|
test('update currency settings after company has currency and transactions is not allowed', function () {
|
|
$settings = [
|
|
'currency' => 1,
|
|
];
|
|
|
|
$response = postJson('/api/v1/company/settings', ['settings' => $settings]);
|
|
|
|
$response->assertOk()
|
|
->assertJson([
|
|
'success' => true,
|
|
]);
|
|
|
|
Invoice::factory()
|
|
->raw([
|
|
'taxes' => [Tax::factory()->raw()],
|
|
'items' => [InvoiceItem::factory()->raw()],
|
|
]);
|
|
|
|
$settings = [
|
|
'currency' => 2,
|
|
];
|
|
|
|
$response = postJson('/api/v1/company/settings', ['settings' => $settings]);
|
|
|
|
$response->assertOK()
|
|
->assertJson([
|
|
'success' => false,
|
|
'message' => 'Cannot update company currency after transactions are created.',
|
|
]);
|
|
|
|
$this->assertDatabaseHas('company_settings', [
|
|
'option' => 'currency',
|
|
'value' => 1,
|
|
]);
|
|
});
|
|
|
|
test('get notification email settings', function () {
|
|
$data['settings'] = [
|
|
'currency',
|
|
'time_zone',
|
|
'language',
|
|
'fiscal_year',
|
|
'carbon_date_format',
|
|
'moment_date_format',
|
|
'notification_email',
|
|
'notify_invoice_viewed',
|
|
'notify_estimate_viewed',
|
|
'tax_per_item',
|
|
'discount_per_item',
|
|
];
|
|
|
|
$response = getJson('/api/v1/company/settings?'.http_build_query($data));
|
|
|
|
$response->assertOk();
|
|
});
|