Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
92.78% covered (success)
92.78%
90 / 97
71.43% covered (warning)
71.43%
10 / 14
CRAP
0.00% covered (danger)
0.00%
0 / 1
LaravelTestApplication
92.78% covered (success)
92.78%
90 / 97
71.43% covered (warning)
71.43%
10 / 14
20.15
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getConsoleApplication
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
1 / 1
1
 getApplicationConfig
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 defineEnvironment
100.00% covered (success)
100.00%
39 / 39
100.00% covered (success)
100.00%
1 / 1
1
 bootApplication
76.92% covered (warning)
76.92%
10 / 13
0.00% covered (danger)
0.00%
0 / 1
2.05
 getServiceContainer
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 cleanApplication
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 httpRequestGet
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
2
 handleResponse
100.00% covered (success)
100.00%
11 / 11
100.00% covered (success)
100.00%
1 / 1
3
 getPackageProviders
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 httpRequest
100.00% covered (success)
100.00%
8 / 8
100.00% covered (success)
100.00%
1 / 1
2
 loginAs
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 logout
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getLoggedInAs
83.33% covered (warning)
83.33%
5 / 6
0.00% covered (danger)
0.00%
0 / 1
2.02
1<?php
2namespace Apie\IntegrationTests\Applications\Laravel;
3
4use Apie\AiInstructor\AiClient;
5use Apie\Common\Events\AddAuthenticationCookie;
6use Apie\Common\IntegrationTestLogger;
7use Apie\Common\ValueObjects\DecryptedAuthenticatedUser;
8use Apie\Common\Wrappers\TextEncrypter;
9use Apie\Core\Other\FileWriterInterface;
10use Apie\Core\Other\MockFileWriter;
11use Apie\IntegrationTests\Applications\MockFactory;
12use Apie\IntegrationTests\Concerns\ItRunsApplications;
13use Apie\IntegrationTests\Config\ApplicationConfig;
14use Apie\IntegrationTests\Config\BoundedContextConfig;
15use Apie\IntegrationTests\Interfaces\TestApplicationInterface;
16use Apie\IntegrationTests\Requests\TestRequestInterface;
17use Apie\LaravelApie\ApieServiceProvider;
18use Illuminate\Contracts\Config\Repository;
19use Illuminate\Contracts\Http\Kernel as HttpKernel;
20use Illuminate\Http\Request;
21use Illuminate\Support\Facades\Auth;
22use Nyholm\Psr7\Factory\Psr17Factory as NyholmPsr17Factory;
23use Orchestra\Testbench\TestCase;
24use Psr\Container\ContainerInterface;
25use Psr\Http\Message\ResponseInterface;
26use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory;
27use Symfony\Bridge\PsrHttpMessage\Factory\PsrHttpFactory;
28use Symfony\Component\Console\Application;
29use Symfony\Component\HttpFoundation\Cookie;
30use Symfony\Component\HttpFoundation\Response as HttpFoundationResponse;
31use Symfony\Component\HttpFoundation\ResponseHeaderBag;
32use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
33
34class LaravelTestApplication extends TestCase implements TestApplicationInterface
35{
36    use ItRunsApplications;
37
38    /**
39     * @phpstan-ignore method.parentMethodFinalByPhpDoc
40     */
41    public function __construct(
42        private readonly ApplicationConfig $applicationConfig,
43        private readonly BoundedContextConfig $boundedContextConfig
44    ) {
45        parent::__construct('Laravel application');
46    }
47
48    public function getConsoleApplication(): Application
49    {
50        $application = new \Illuminate\Console\Application(
51            $this->getServiceContainer(),
52            $this->getServiceContainer()->get(\Illuminate\Contracts\Events\Dispatcher::class),
53            'test'
54        );
55        return $application;
56    }
57
58    public function getApplicationConfig(): ApplicationConfig
59    {
60        return $this->applicationConfig;
61    }
62
63    protected function defineEnvironment($app): void
64    {
65        tap($app->make('config'), function (Repository $config) {
66            $config->set('app.key', 'base64:/aNEFWQbsYwDslb4Xw1RKKj9oCdZdbNhvcyUpVgXPz4=');
67            $config->set('apie.encryption_key', 'test');
68            $config->set(
69                'apie.bounded_contexts',
70                $this->boundedContextConfig->toArray()
71            );
72            $config->set(
73                'apie.scan_bounded_contexts',
74                []
75            );
76            // this has to be explicit because of some code execution order issues
77            $config->set('apie.enable_ai_instructor', true);
78            $config->set('apie.enable_mcp_server', true);
79            $config->set('apie.enable_webdav', true);
80            $config->set(
81                'apie.ai',
82                [
83                    'base_url' => 'http://localbost:11434',
84                    'api_key' => 'test',
85                ]
86            );
87            $config->set(
88                'apie.datalayers',
89                [
90                    'default_datalayer' => $this->applicationConfig->getDatalayerImplementation()->name,
91                ]
92            );
93            $config->set(
94                'apie.doctrine',
95                [
96                    'build_once' => false,
97                    'run_migrations' => true,
98                    'connection_params' => [
99                        'driver' => 'pdo_sqlite'
100                    ]
101                ]
102            );
103            $config->set('apie.remote_mcp_path', '/mcp');
104        });
105    }
106
107    /**
108     * Boot application. Should be called at the start of the test.
109     */
110    public function bootApplication(): void
111    {
112        IntegrationTestLogger::resetLoggedException();
113        $this->setUp();
114        $this->session([]);
115        if (getenv('PHPUNIT_LOG_INTEGRATION_OUTPUT')) {
116            $this->withoutExceptionHandling([
117                NotFoundHttpException::class
118            ]);
119        }
120        $this->app->instance(FileWriterInterface::class, new MockFileWriter());
121        $this->app->instance(
122            AiClient::class,
123            MockFactory::createMockAiClient()
124        );
125        unset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
126    }
127
128    /**
129     * Gets service container of application. Should be used as little as possible.
130     */
131    public function getServiceContainer(): ContainerInterface
132    {
133        return $this->app;
134    }
135
136    /**
137     * Cleans up application. Should be called at the end of the test.
138     */
139    public function cleanApplication(): void
140    {
141        $this->tearDown();
142    }
143
144    /**
145     * Does a HTTP request on the application and returns the response.
146     */
147    public function httpRequestGet(string $uri): ResponseInterface
148    {
149        //workaround against spacebar search test and Laravel doing unneeded things
150        if (str_ends_with($uri, ' ')) {
151            $uri .= '&dummy=1';
152        }
153        $testResponse = $this->get($uri);
154        $laravelResponse = $testResponse->baseResponse;
155        return $this->handleResponse($laravelResponse);
156    }
157
158    private function handleResponse(HttpFoundationResponse $laravelResponse): ResponseInterface
159    {
160        $cookie = $laravelResponse->headers->getCookies(
161            ResponseHeaderBag::COOKIES_ARRAY
162        )[""]["/"][AddAuthenticationCookie::COOKIE_NAME] ?? null;
163        if ($cookie !== null) {
164            $cookie = Cookie::fromString($cookie)->getValue();
165        }
166        if ($cookie) {
167            $this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME] = $cookie;
168        } else {
169            unset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
170        }
171
172        $psrFactory = new NyholmPsr17Factory();
173        $factory = new PsrHttpFactory($psrFactory, $psrFactory, $psrFactory, $psrFactory);
174        return $factory->createResponse($laravelResponse);
175    }
176
177    protected function getPackageProviders($app): array
178    {
179        return [ApieServiceProvider::class];
180    }
181
182    public function httpRequest(TestRequestInterface $testRequest): ResponseInterface
183    {
184        $psrRequest = $testRequest->getRequest();
185        $factory = new HttpFoundationFactory();
186        $sfRequest = $factory->createRequest($psrRequest);
187        $laravelRequest = Request::createFromBase($sfRequest);
188        if (isset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME])) {
189            $laravelRequest->cookies->set(AddAuthenticationCookie::COOKIE_NAME, $this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
190        }
191        $laravelResponse = $this->app->make(HttpKernel::class)->handle($laravelRequest);
192        return $this->handleResponse($laravelResponse);
193    }
194
195    public function loginAs(DecryptedAuthenticatedUser $user): void
196    {
197        $textEncrypter = new TextEncrypter('test');
198        $this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME] = $textEncrypter->encrypt($user->toNative());
199    }
200
201    /**
202     * Forget that you are logged in.
203     */
204    public function logout(): void
205    {
206        Auth::logout();
207        unset($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]);
208    }
209
210    public function getLoggedInAs(): ?DecryptedAuthenticatedUser
211    {
212        if (empty($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME])) {
213            return null;
214        }
215        $textEncrypter = new TextEncrypter('test');
216        return DecryptedAuthenticatedUser::fromNative(
217            $textEncrypter->decrypt($this->defaultCookies[AddAuthenticationCookie::COOKIE_NAME]),
218        );
219    }
220}