How to Unit Test your Forms

Caution

注意

This article is intended for developers who create custom form types. If you are using the built-in Symfony form types or the form types provided by third-party bundles, you don't need to unit test them.

この記事は、カスタム フォーム タイプを作成する開発者を対象としています。組み込みの Symfony フォーム タイプまたはサードパーティ バンドルによって提供されるフォーム タイプを使用している場合、それらを単体テストする必要はありません。

The Form component consists of 3 core objects: a form type (implementing FormTypeInterface), the Form and the FormView.

フォーム コンポーネントは、フォーム タイプ (FormTypeInterface を実装する)、フォーム、およびフォーム ビューの 3 つのコア オブジェクトで構成されます。

The only class that is usually manipulated by programmers is the form type class which serves as a form blueprint. It is used to generate the Form and the FormView. You could test it directly by mocking its interactions with the factory but it would be complex. It is better to pass it to FormFactory like it is done in a real application. It is easier to bootstrap and you can trust the Symfony components enough to use them as a testing base.

プログラマーが通常操作する唯一のクラスは、フォームの設計図として機能するフォーム タイプ クラスです。 Form と FormView を生成するために使用されます。ファクトリとの相互作用をモックすることで直接テストできますが、複雑になります。実際のアプリケーションで行われるように、FormFactory に渡す方がよいでしょう。ブートストラップが容易で、Symfony コンポーネントをテストベースとして使用するのに十分信頼できます。

There is already a class that you can benefit from for testing: TypeTestCase. It is used to test the core types and you can use it to test your types too.

テストのために利用できるクラスが既にあります:TypeTestCase.コア型のテストに使用され、型のテストにも使用できます。

Note

ノート

Depending on the way you installed your Symfony or Symfony Form component the tests may not be downloaded. Use the --prefer-source option with Composer if this is the case.

Symfony または Symfony Form コンポーネントをインストールした方法によっては、テストがダウンロードされない場合があります。その場合は、Composer で --prefer-source オプションを使用してください。

The Basics

The simplest TypeTestCase implementation looks like the following:

最も単純な TypeTestCase の実装は次のようになります。
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
// tests/Form/Type/TestedTypeTest.php
namespace App\Tests\Form\Type;

use App\Form\Type\TestedType;
use App\Model\TestObject;
use Symfony\Component\Form\Test\TypeTestCase;

class TestedTypeTest extends TypeTestCase
{
    public function testSubmitValidData()
    {
        $formData = [
            'test' => 'test',
            'test2' => 'test2',
        ];

        $model = new TestObject();
        // $model will retrieve data from the form submission; pass it as the second argument
        $form = $this->factory->create(TestedType::class, $model);

        $expected = new TestObject();
        // ...populate $expected properties with the data stored in $formData

        // submit the data to the form directly
        $form->submit($formData);

        // This check ensures there are no transformation failures
        $this->assertTrue($form->isSynchronized());

        // check that $model was modified as expected when the form was submitted
        $this->assertEquals($expected, $model);
    }

    public function testCustomFormView()
    {
        $formData = new TestObject();
        // ... prepare the data as you need

        // The initial data may be used to compute custom view variables
        $view = $this->factory->create(TestedType::class, $formData)
            ->createView();

        $this->assertArrayHasKey('custom_var', $view->vars);
        $this->assertSame('expected value', $view->vars['custom_var']);
    }
}

So, what does it test? Here comes a detailed explanation.

それで、それは何をテストしますか?ここに詳細な説明があります。

First you verify if the FormType compiles. This includes basic class inheritance, the buildForm() method and options resolution. This should be the first test you write:

まず、FormType がコンパイルされるかどうかを確認します。これには、基本的なクラスの継承、buildForm() メソッド、およびオプションの解決が含まれます。これはあなたが書く最初のテストであるべきです:
1
$form = $this->factory->create(TestedType::class, $formData);

This test checks that none of your data transformers used by the form produces an error. The isSynchronized() method is only set to false if a data transformer throws an exception:

このテストでは、フォームで使用されるデータ トランスフォーマーでエラーが発生しないことを確認します。 isSynchronized() メソッドは、データ トランスフォーマーが例外をスローした場合にのみ false に設定されます。
1
2
$form->submit($formData);
$this->assertTrue($form->isSynchronized());

Note

ノート

Don't test the validation: it is applied by a listener that is not active in the test case and it relies on validation configuration. Instead, unit test your custom constraints directly or read how to add custom extensions in the last section of this page.

検証をテストしないでください: テスト ケースでアクティブでないリスナーによって適用され、検証構成に依存します。代わりに、カスタム制約を直接単体テストするか、このページの最後のセクションにあるカスタム拡張機能の追加方法をお読みください。

Next, verify the submission and mapping of the form. The test below checks if all the fields are correctly specified:

次に、フォームの送信とマッピングを確認します。以下のテストでは、すべてのフィールドが正しく指定されているかどうかをチェックします。
1
$this->assertEquals($expected, $formData);

Finally, check the creation of the FormView. You can check that a custom variable exists and will be available in your form themes:

最後に、FormView の作成を確認します。カスタム変数が存在し、フォーム テーマで使用できることを確認できます。
1
2
$this->assertArrayHasKey('custom_var', $view->vars);
$this->assertSame('expected value', $view->vars['custom_var']);

Tip

ヒント

Use PHPUnit data providers to test multiple form conditions using the same test code.

PHPUnit データ プロバイダーを使用して、同じテスト コードを使用して複数のフォーム条件をテストします。

Caution

注意

When your type relies on the EntityType, you should register the DoctrineOrmExtension, which will need to mock the ManagerRegistry.

タイプが EntityType に依存する場合、DoctrineOrmExtension を登録する必要があります。これは ManagerRegistry をモックする必要があります。

However, If you cannot use a mock to write your test, you should extend the KernelTestCase instead and use the form.factory service to create the form.

ただし、モックを使用してテストを記述できない場合は、代わりに KernelTestCase を拡張し、form.factory サービスを使用してフォームを作成する必要があります。

Testing Types Registered as Services

Your form may be used as a service, as it depends on other services (e.g. the Doctrine entity manager). In these cases, using the above code won't work, as the Form component instantiates the form type without passing any arguments to the constructor.

あなたのフォームは、他のサービス (Doctrine エンティティ マネージャーなど) に依存するため、サービスとして使用される場合があります。このような場合、フォーム コンポーネントはコンストラクタに引数を渡さずにフォーム タイプをインスタンス化するため、上記のコードを使用しても機能しません。

To solve this, you have to mock the injected dependencies, instantiate your own form type and use the PreloadedExtension to make sure the FormRegistry uses the created instance:

これを解決するには、注入された依存関係をモックし、独自のフォーム タイプをインスタンス化し、PreloadedExtension を使用して FormRegistry が作成されたインスタンスを使用するようにする必要があります。
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
// tests/Form/Type/TestedTypeTest.php
namespace App\Tests\Form\Type;

use App\Form\Type\TestedType;
use Doctrine\Persistence\ObjectManager;
use Symfony\Component\Form\PreloadedExtension;
use Symfony\Component\Form\Test\TypeTestCase;
// ...

class TestedTypeTest extends TypeTestCase
{
    private $objectManager;

    protected function setUp(): void
    {
        // mock any dependencies
        $this->objectManager = $this->createMock(ObjectManager::class);

        parent::setUp();
    }

    protected function getExtensions()
    {
        // create a type instance with the mocked dependencies
        $type = new TestedType($this->objectManager);

        return [
            // register the type instances with the PreloadedExtension
            new PreloadedExtension([$type], []),
        ];
    }

    public function testSubmitValidData()
    {
        // ...

        // Instead of creating a new instance, the one created in
        // getExtensions() will be used.
        $form = $this->factory->create(TestedType::class, $formData);

        // ... your test
    }
}

Adding Custom Extensions

It often happens that you use some options that are added by form extensions. One of the cases may be the ValidatorExtension with its invalid_message option. The TypeTestCase only loads the core form extension, which means an InvalidOptionsException will be raised if you try to test a class that depends on other extensions. The getExtensions() method allows you to return a list of extensions to register:

フォーム拡張によって追加されたいくつかのオプションを使用することがよくあります。そのケースの 1 つは、invalid_message オプションを含む ValidatorExtension である可能性があります。登録する拡張子:
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
// tests/Form/Type/TestedTypeTest.php
namespace App\Tests\Form\Type;

// ...
use Symfony\Component\Form\Extension\Validator\ValidatorExtension;
use Symfony\Component\Validator\Validation;

class TestedTypeTest extends TypeTestCase
{
    protected function getExtensions()
    {
        $validator = Validation::createValidator();

        // or if you also need to read constraints from annotations
        $validator = Validation::createValidatorBuilder()
            ->enableAnnotationMapping(true)
            ->addDefaultDoctrineAnnotationReader()
            ->getValidator();

        return [
            new ValidatorExtension($validator),
        ];
    }

    // ... your tests
}

Note

ノート

By default only the CoreExtension is registered in tests. You can find other extensions from the Form component in the Symfony\Component\Form\Extension namespace.

デフォルトでは、CoreExtension のみがテストに登録されます。 Symfony\Component\Form\Extension 名前空間で Form コンポーネントの他の拡張機能を見つけることができます。

It is also possible to load custom form types, form type extensions or type guessers using the getTypes(), getTypeExtensions() and getTypeGuessers() methods.

getTypes()、getTypeExtensions()、および getTypeGuessers() メソッドを使用して、カスタム フォーム タイプ、フォーム タイプ拡張、または typeguessers をロードすることもできます。