在phpunit测试中呈现细枝模板时出现问题

在phpunit测试中呈现细枝模板时出现问题,php,symfony,twig,phpunit,Php,Symfony,Twig,Phpunit,我目前正在做一个第一次使用“细枝”的项目,如果这不是很清楚,我很抱歉 我开发了一个自定义函数,将SVG图标嵌入到细枝模板中,但是对于这个特定的项目,我的评分更多的是覆盖率和单元测试。因此,我尝试使用phpunit测试我的函数是否按预期工作 为了做到这一点,我相信我必须在测试文件上呈现自定义函数的一个实例,然后将其与我目录中的原始SVG文件进行比较。但是我在使用渲染方法时遇到了问题。我相信,因为我在测试中没有可用的细枝环境 我在这里寻找类似的东西,我发现了前面的问题:https://stackov

我目前正在做一个第一次使用“细枝”的项目,如果这不是很清楚,我很抱歉

我开发了一个自定义函数,将SVG图标嵌入到细枝模板中,但是对于这个特定的项目,我的评分更多的是覆盖率和单元测试。因此,我尝试使用phpunit测试我的函数是否按预期工作

为了做到这一点,我相信我必须在测试文件上呈现自定义函数的一个实例,然后将其与我目录中的原始SVG文件进行比较。但是我在使用渲染方法时遇到了问题。我相信,因为我在测试中没有可用的细枝环境

我在这里寻找类似的东西,我发现了前面的问题:https://stackoverflow.com/questions/17026405/twig-template-unit-testing?rq=1". 此问题的答案建议使用以下选项:

$twig = self::$kernel->getContainer()->get('twig');
    $html = $twig->render('AppBundle::app/something.html.twig', ['content' => 'I am some variable value']);
    self::assertEquals($html, $response->getContent());
但当我运行该命令时,会出现以下错误:

Error: Access to undeclared static property: App\Tests\Templates\Icons\IconsExtensionTest::$kernel
如何访问内核

这是我当前不工作的测试文件:

<?php

// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social.  If not, see <http://www.gnu.org/licenses/>.

/**
 * This file test the Macro that Embeds SVG icons.
 *
 * @package   Tests
 *
 * @author    Ângelo D. Moura <up201303828@fe.up.pt>
 * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
 * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
 */

namespace App\Tests\Templates\Icons;

use App\Twig\IconsExtension;
use App\Kernel;
use DirectoryIterator;
use PHPUnit\Framework\TestCase;

class IconsExtensionTest extends TestCase
{
    public function testIconsExtension()
    {

        //Get all Icon files names from "public/assets/icons"
        $icon_file_names = [];
        foreach (new DirectoryIterator('public/assets/icons/') as $file) {
            if ($file->isDot()) {
                continue;
            }
            $icon_file_names[] = $file->getFilename();
        }

        //Check if every icon file as a ".svg.twig" extension
        foreach ($icon_file_names as $icon_file_name) {
            static::assertRegExp('#([a-zA-Z0-9\s_\\.\-\(\):])+(.svg.twig)$#', $icon_file_name);
        }



        //Check if the function gives a valid HTML with a class attribute equal to the one passed
        $twig = self::$kernel->getContainer()->get('twig');

        /*
        $icon_template_render = $twig->render('public/icons/logo.svg', ['iconClass' => 'icon icon-logo']);

        $iconsExtension= new IconsExtension();

        $iconsExtension_render = $iconsExtension->embedSvgIcon($twig, 'logo', 'logo');

        self::assertEquals($icon_template_render, $iconsExtension_render);

        // Next I need to verify that the $iconsExtension_render is a valid html code (maybe through regex)

        */
    }
}

TestCase
(测试扩展的phpunit类)不足。您可能没有注意到symfony提供了一个名为的扩展,该扩展提供了一个内核,您可以从中获取twig环境(或者,它还提供了一个客户端,您可以使用该客户端浏览您的网站)

所以不是

use PHPUnit\Framework\TestCase;

class IconsExtensionTest extends TestCase
你能行

use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

class IconsExtensionTest extends KernelTestCase
您可能需要调用
static::bootKernel()初始化内核和容器

那么一切都应该按预期的方式工作

TestCase
(您的测试扩展的phpunit类)是不够的。您可能没有注意到symfony提供了一个名为的扩展,该扩展提供了一个内核,您可以从中获取twig环境(或者,它还提供了一个客户端,您可以使用该客户端浏览您的网站)

所以不是

use PHPUnit\Framework\TestCase;

class IconsExtensionTest extends TestCase
你能行

use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

class IconsExtensionTest extends KernelTestCase
您可能需要调用
static::bootKernel()初始化内核和容器


然后一切都应该按预期进行

如果你想知道,你链接的答案忽略了需要扩展正确类的事实,我刚刚添加了这个事实,所以它之前确实没有说;o) 我尝试使用KernelTestCase,但它仍然给了我一个错误:
error:调用null上的成员函数getContainer()
知道为什么会发生这种情况吗?解决了我的下一个问题:添加了行
static::bootKernel()error:调用null上的成员函数getContainer()
知道为什么会发生这种情况吗?解决了我的下一个问题:添加了行
static::bootKernel()