mirror of
https://github.com/flarum/core.git
synced 2025-08-18 06:11:23 +02:00
* feat: allow replacing of blade template namespaces
* wip: add `prependNamespace` support
* test: add replace namespace test
* Apply fixes from StyleCI
[ci skip] [skip ci]
* fix: add missing property
* test: add prepend test
* fix: add view namespaces before resolving
Allows `replaceNamespace()` extender to actually remove old routes.
* test: make replace test ensure that replaced view does not exist
* docs: update docblock
* Apply fixes from StyleCI
[ci skip] [skip ci]
* fix: missing `\` before class
* fix: change test view namespace
* chore: simplify test
* Remove replace namespace code
We only really need prepend.
* chore: rename extender
* ci: add override test
* Apply fixes from StyleCI
[ci skip] [skip ci]
* fix(tests): add `trim` call
* revert: 3d46ead14b
Co-authored-by: luceos <luceos@users.noreply.github.com>
70 lines
1.9 KiB
PHP
70 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Tests\integration\extenders;
|
|
|
|
use Flarum\Extend;
|
|
use Flarum\Testing\integration\TestCase;
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
class ViewTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function custom_view_namespace_does_not_exist_by_default()
|
|
{
|
|
$this->expectException(\InvalidArgumentException::class);
|
|
$this->app()->getContainer()->make(Factory::class)->make('integration.test::test');
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function custom_view_namespace_can_be_added_by_extender()
|
|
{
|
|
$this->extend(
|
|
(new Extend\View)
|
|
->namespace('integration.test', dirname(__FILE__, 3).'/fixtures/views')
|
|
);
|
|
|
|
$this->assertEquals('<html><body>Hello World!</body></html>', trim($this->app()->getContainer()->make(Factory::class)->make('integration.test::test')->render()));
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function can_add_view_to_namespace_by_prepend_extender()
|
|
{
|
|
$this->extend(
|
|
(new Extend\View)
|
|
->extendNamespace('flarum', dirname(__FILE__, 3).'/fixtures/views')
|
|
);
|
|
|
|
$this->assertEquals('<html><body>Hello World!</body></html>', trim($this->app()->getContainer()->make(Factory::class)->make('flarum::test')->render()));
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function can_override_view_in_namespace_by_prepend_extender()
|
|
{
|
|
$this->extend(
|
|
(new Extend\View)
|
|
->extendNamespace('flarum', dirname(__FILE__, 3).'/fixtures/views/override')
|
|
);
|
|
|
|
$response = $this->send(
|
|
$this->request('GET', '/')
|
|
);
|
|
|
|
$this->assertEquals('<html><body>We have overridden the core app view.</body></html>', trim($response->getBody()->getContents()));
|
|
}
|
|
}
|