Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php use Illuminate\Support\Arr; use Webkul\Tax\Models\TaxCategory; use Webkul\Tax\Model..
Decoded Output download
<?php
use Illuminate\Support\Arr;
use Webkul\Tax\Models\TaxCategory;
use Webkul\Tax\Models\TaxRate;
use function Pest\Laravel\deleteJson;
use function Pest\Laravel\get;
use function Pest\Laravel\postJson;
use function Pest\Laravel\putJson;
it('should returns the tax category index page', function () {
// Act and Assert.
$this->loginAsAdmin();
get(route('admin.settings.taxes.categories.index'))
->assertOk()
->assertSeeText(trans('admin::app.settings.taxes.categories.index.title'))
->assertSeeText(trans('admin::app.settings.taxes.categories.index.create.title'));
});
it('should fail the validation with errors when certain field not provided when store the tax categories', function () {
// Act and Assert.
$this->loginAsAdmin();
postJson(route('admin.settings.taxes.categories.store'))
->assertJsonValidationErrorFor('code')
->assertJsonValidationErrorFor('name')
->assertJsonValidationErrorFor('description')
->assertJsonValidationErrorFor('taxrates')
->assertUnprocessable();
});
it('should store the tax category', function () {
// Act and Assert.
$this->loginAsAdmin();
postJson(route('admin.settings.taxes.categories.store'), $data = [
'code' => fake()->numerify('code#######'),
'name' => fake()->words(2, true),
'description' => fake()->sentence(10),
'taxrates' => TaxRate::factory()->count(2)->create()->pluck('id')->toArray(),
])
->assertOk()
->assertSeeText(trans('admin::app.settings.taxes.categories.index.create-success'));
$this->assertModelWise([
TaxCategory::class => [
[
'code' => $data['code'],
'name' => $data['name'],
'description' => $data['description'],
],
],
]);
});
it('should returns the edit page of the tax category', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
get(route('admin.settings.taxes.categories.edit', $taxCategory->id))
->assertOk()
->assertJsonFragment(Arr::except($taxCategory->toArray(), ['created_at', 'updated_at']));
});
it('should fail the validation with errors when certain field not provided when update the tax categories', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
putJson(route('admin.settings.taxes.categories.update'), [
'id' => $taxCategory->id,
])
->assertJsonValidationErrorFor('code')
->assertJsonValidationErrorFor('name')
->assertJsonValidationErrorFor('description')
->assertJsonValidationErrorFor('taxrates')
->assertUnprocessable();
});
it('should update the tax category', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
putJson(route('admin.settings.taxes.categories.update'), $data = [
'id' => $taxCategory->id,
'code' => fake()->numerify('code#######'),
'name' => fake()->words(2, true),
'description' => fake()->sentence(10),
'taxrates' => TaxRate::factory()->count(2)->create()->pluck('id')->toArray(),
])
->assertOk()
->assertJsonPath('message', trans('admin::app.settings.taxes.categories.index.update-success'));
$this->assertModelWise([
TaxCategory::class => [
[
'code' => $data['code'],
'name' => $data['name'],
'description' => $data['description'],
],
],
]);
});
it('should delete the tax category', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
deleteJson(route('admin.settings.taxes.categories.delete', $taxCategory->id))
->assertOk()
->assertJsonPath('message', trans('admin::app.settings.taxes.categories.index.delete-success'));
});
?>
Did this file decode correctly?
Original Code
<?php
use Illuminate\Support\Arr;
use Webkul\Tax\Models\TaxCategory;
use Webkul\Tax\Models\TaxRate;
use function Pest\Laravel\deleteJson;
use function Pest\Laravel\get;
use function Pest\Laravel\postJson;
use function Pest\Laravel\putJson;
it('should returns the tax category index page', function () {
// Act and Assert.
$this->loginAsAdmin();
get(route('admin.settings.taxes.categories.index'))
->assertOk()
->assertSeeText(trans('admin::app.settings.taxes.categories.index.title'))
->assertSeeText(trans('admin::app.settings.taxes.categories.index.create.title'));
});
it('should fail the validation with errors when certain field not provided when store the tax categories', function () {
// Act and Assert.
$this->loginAsAdmin();
postJson(route('admin.settings.taxes.categories.store'))
->assertJsonValidationErrorFor('code')
->assertJsonValidationErrorFor('name')
->assertJsonValidationErrorFor('description')
->assertJsonValidationErrorFor('taxrates')
->assertUnprocessable();
});
it('should store the tax category', function () {
// Act and Assert.
$this->loginAsAdmin();
postJson(route('admin.settings.taxes.categories.store'), $data = [
'code' => fake()->numerify('code#######'),
'name' => fake()->words(2, true),
'description' => fake()->sentence(10),
'taxrates' => TaxRate::factory()->count(2)->create()->pluck('id')->toArray(),
])
->assertOk()
->assertSeeText(trans('admin::app.settings.taxes.categories.index.create-success'));
$this->assertModelWise([
TaxCategory::class => [
[
'code' => $data['code'],
'name' => $data['name'],
'description' => $data['description'],
],
],
]);
});
it('should returns the edit page of the tax category', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
get(route('admin.settings.taxes.categories.edit', $taxCategory->id))
->assertOk()
->assertJsonFragment(Arr::except($taxCategory->toArray(), ['created_at', 'updated_at']));
});
it('should fail the validation with errors when certain field not provided when update the tax categories', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
putJson(route('admin.settings.taxes.categories.update'), [
'id' => $taxCategory->id,
])
->assertJsonValidationErrorFor('code')
->assertJsonValidationErrorFor('name')
->assertJsonValidationErrorFor('description')
->assertJsonValidationErrorFor('taxrates')
->assertUnprocessable();
});
it('should update the tax category', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
putJson(route('admin.settings.taxes.categories.update'), $data = [
'id' => $taxCategory->id,
'code' => fake()->numerify('code#######'),
'name' => fake()->words(2, true),
'description' => fake()->sentence(10),
'taxrates' => TaxRate::factory()->count(2)->create()->pluck('id')->toArray(),
])
->assertOk()
->assertJsonPath('message', trans('admin::app.settings.taxes.categories.index.update-success'));
$this->assertModelWise([
TaxCategory::class => [
[
'code' => $data['code'],
'name' => $data['name'],
'description' => $data['description'],
],
],
]);
});
it('should delete the tax category', function () {
// Arrange.
$taxCategory = TaxCategory::factory()->create();
// Act and Assert.
$this->loginAsAdmin();
deleteJson(route('admin.settings.taxes.categories.delete', $taxCategory->id))
->assertOk()
->assertJsonPath('message', trans('admin::app.settings.taxes.categories.index.delete-success'));
});
Function Calls
None |
Stats
MD5 | fbaf5c30f58ee006f0e448954fb02d72 |
Eval Count | 0 |
Decode Time | 86 ms |