mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 19:04:02 +00:00
* Fix ViteBundler not affecting Vite static calls Replace custom Vite class override with Vite::createAssetPathsUsing() to ensure ViteBundler works for both container and static usage when asset_helper_override is enabled. Fixes #1388 * Remove redundant logic from tests * Simplify test further * Re-add file creation logic --------- Co-authored-by: Samuel Štancl <samuel@archte.ch>
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Foundation\Vite;
|
|
use Illuminate\Support\Facades\File;
|
|
use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper;
|
|
use Stancl\Tenancy\Features\ViteBundler;
|
|
use Stancl\Tenancy\Tests\Etc\Tenant;
|
|
|
|
use function Stancl\Tenancy\Tests\withBootstrapping;
|
|
|
|
beforeEach(function () {
|
|
config([
|
|
'tenancy.filesystem.asset_helper_override' => true,
|
|
'tenancy.bootstrappers' => [FilesystemTenancyBootstrapper::class],
|
|
]);
|
|
|
|
File::ensureDirectoryExists(dirname($manifestPath = public_path('build/manifest.json')));
|
|
File::put($manifestPath, json_encode([
|
|
'foo' => [
|
|
'file' => 'assets/foo-AbC123.js',
|
|
'src' => 'js/foo.js',
|
|
],
|
|
]));
|
|
});
|
|
|
|
test('vite bundler ensures vite assets use global_asset when asset_helper_override is enabled', function () {
|
|
config(['tenancy.features' => [ViteBundler::class]]);
|
|
|
|
withBootstrapping();
|
|
|
|
tenancy()->initialize(Tenant::create());
|
|
|
|
// Not what we want
|
|
expect(asset('foo'))->toBe(route('stancl.tenancy.asset', ['path' => 'foo']));
|
|
|
|
$viteAssetUrl = app(Vite::class)->asset('foo');
|
|
$expectedGlobalUrl = global_asset('build/assets/foo-AbC123.js');
|
|
|
|
expect($viteAssetUrl)->toBe($expectedGlobalUrl);
|
|
expect($viteAssetUrl)->toBe('http://localhost/build/assets/foo-AbC123.js');
|
|
});
|