]>
Commit | Line | Data |
---|---|---|
ba43064d A |
1 | <?php |
2 | ||
3 | declare(strict_types=1); | |
4 | ||
5 | namespace Shaarli\Front\Controller\Admin; | |
6 | ||
7 | use PHPUnit\Framework\TestCase; | |
8 | use Slim\Http\Request; | |
9 | use Slim\Http\Response; | |
10 | ||
b93cfeba | 11 | class ToolsControllerTest extends TestCase |
ba43064d A |
12 | { |
13 | use FrontAdminControllerMockHelper; | |
14 | ||
15 | /** @var ToolsController */ | |
16 | protected $controller; | |
17 | ||
18 | public function setUp(): void | |
19 | { | |
20 | $this->createContainer(); | |
21 | ||
22 | $this->controller = new ToolsController($this->container); | |
23 | } | |
24 | ||
25 | public function testDefaultInvokeWithHttps(): void | |
26 | { | |
ba43064d A |
27 | $request = $this->createMock(Request::class); |
28 | $response = new Response(); | |
29 | ||
30 | $this->container->environment = [ | |
31 | 'SERVER_NAME' => 'shaarli', | |
32 | 'SERVER_PORT' => 443, | |
33 | 'HTTPS' => 'on', | |
34 | ]; | |
35 | ||
36 | // Save RainTPL assigned variables | |
37 | $assignedVariables = []; | |
38 | $this->assignTemplateVars($assignedVariables); | |
39 | ||
40 | $result = $this->controller->index($request, $response); | |
41 | ||
42 | static::assertSame(200, $result->getStatusCode()); | |
43 | static::assertSame('tools', (string) $result->getBody()); | |
b93cfeba | 44 | static::assertSame('https://shaarli/', $assignedVariables['pageabsaddr']); |
ba43064d A |
45 | static::assertTrue($assignedVariables['sslenabled']); |
46 | } | |
47 | ||
48 | public function testDefaultInvokeWithoutHttps(): void | |
49 | { | |
ba43064d A |
50 | $request = $this->createMock(Request::class); |
51 | $response = new Response(); | |
52 | ||
53 | $this->container->environment = [ | |
54 | 'SERVER_NAME' => 'shaarli', | |
55 | 'SERVER_PORT' => 80, | |
56 | ]; | |
57 | ||
58 | // Save RainTPL assigned variables | |
59 | $assignedVariables = []; | |
60 | $this->assignTemplateVars($assignedVariables); | |
61 | ||
62 | $result = $this->controller->index($request, $response); | |
63 | ||
64 | static::assertSame(200, $result->getStatusCode()); | |
65 | static::assertSame('tools', (string) $result->getBody()); | |
b93cfeba | 66 | static::assertSame('http://shaarli/', $assignedVariables['pageabsaddr']); |
ba43064d A |
67 | static::assertFalse($assignedVariables['sslenabled']); |
68 | } | |
69 | } |