aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/front/controller/visitor/OpenSearchControllerTest.php
blob: 42d876c36b0c0352be527e75c4119969c57b3981 (plain) (tree)
1
2
3
4
5
6
7



                        
                                           
 
                     




                                               
                                  





                                    

                                 




                                                                       









                                                                



                                                    
                                                                      
                                                                                         
     
 
<?php

declare(strict_types=1);

namespace Shaarli\Front\Controller\Visitor;

use Shaarli\TestCase;
use Slim\Http\Request;
use Slim\Http\Response;

class OpenSearchControllerTest extends TestCase
{
    use FrontControllerMockHelper;

    /** @var OpenSearchController */
    protected $controller;

    public function setUp(): void
    {
        $this->createContainer();

        $this->controller = new OpenSearchController($this->container);
    }

    public function testOpenSearchController(): void
    {
        $request = $this->createMock(Request::class);
        $response = new Response();

        // Save RainTPL assigned variables
        $assignedVariables = [];
        $this->assignTemplateVars($assignedVariables);

        $result = $this->controller->index($request, $response);

        static::assertSame(200, $result->getStatusCode());
        static::assertStringContainsString(
            'application/opensearchdescription+xml',
            $result->getHeader('Content-Type')[0]
        );
        static::assertSame('opensearch', (string) $result->getBody());
        static::assertSame('http://shaarli/subfolder/', $assignedVariables['serverurl']);
    }
}