File size: 1,168 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php

declare(strict_types=1);

use Symfony\Component\DependencyInjection\ContainerInterface;

class AppTestKernel extends AppKernel
{
    private bool $isTestContainerSet = false;

    /**
     * {@inheritdoc}
     */
    protected function isInstalled(): bool
    {
        return true;
    }

    public function getCacheDir(): string
    {
        if ($dir = getenv('TEST_CACHE_DIR')) {
            return dirname(__DIR__).'/'.$dir;
        }

        return parent::getCacheDir();
    }

    public function getLogDir(): string
    {
        if ($dir = getenv('TEST_LOG_DIR')) {
            return dirname(__DIR__).'/'.$dir;
        }

        return parent::getLogDir();
    }

    /**
     * @throws Exception
     */
    public function getContainer(): ContainerInterface
    {
        if (!$this->container) {
            $this->boot();
        }

        if ($this->isTestContainerSet) {
            return $this->container;
        }

        $this->isTestContainerSet = true;

        $testContainer = $this->container->get('test.service_container');
        $testContainer->setPublicContainer($this->container);

        return $this->container;
    }
}