Completed
Push — master ( fcb59d...326ddf )
by Ruud
299:19 queued 288:03
created

unit/Entity/PageParts/FileUploadPagePartTest.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\FormBundle\Tests\Entity\PageParts;
4
5
use ArrayObject;
6
use Kunstmaan\FormBundle\Entity\PageParts\FileUploadPagePart;
7
use Kunstmaan\FormBundle\Form\FileUploadPagePartAdminType;
8
use PHPUnit\Framework\TestCase;
9
use Symfony\Component\Form\FormBuilderInterface;
10
11
/**
12
 * Tests for FileUploadPagePart
13
 */
14
class FileUploadPagePartTest extends TestCase
15
{
16
    /**
17
     * @var FileUploadPagePart
18
     */
19
    protected $object;
20
21
    /**
22
     * Sets up the fixture, for example, opens a network connection.
23
     * This method is called before a test is executed.
24
     */
25
    protected function setUp()
26
    {
27
        $this->object = new FileUploadPagePart();
28
    }
29
30
    public function testAdaptForm()
31
    {
32
        $object = $this->object;
33
        $object->setRequired(true);
34
35
        $formBuilder = $this->getMockBuilder('Symfony\Component\Form\FormBuilder')
36
            ->disableOriginalConstructor()
37
            ->getMock();
38
39
        $formBuilder->expects($this->any())
40
            ->method('getData')
41
            ->willReturn([]);
42
43
        $fields = new ArrayObject();
44
45
        $object->setErrorMessageRequired('this is required');
46
        $this->assertEquals(count($fields), 0);
47
        /* @var FormBuilderInterface $formBuilder */
48
        $object->adaptForm($formBuilder, $fields, 0);
49
        $this->assertTrue(count($fields) > 0);
50
        $this->assertEquals('this is required', $object->getErrorMessageRequired());
51
    }
52
53
    public function testGetDefaultView()
54
    {
55
        $stringValue = $this->object->getDefaultView();
56
        $this->assertNotNull($stringValue);
57
        $this->assertInternalType('string', $stringValue);
0 ignored issues
show
Deprecated Code introduced by
The method PHPUnit\Framework\Assert::assertInternalType() has been deprecated with message: https://github.com/sebastianbergmann/phpunit/issues/3369

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
58
    }
59
60
    public function testGetDefaultAdminType()
61
    {
62
        $this->assertEquals(FileUploadPagePartAdminType::class, $this->object->getDefaultAdminType());
63
    }
64
65
    public function testGetSetRequired()
66
    {
67
        $obj = $this->object;
68
        $obj->setRequired(true);
69
        $this->assertTrue($obj->getRequired());
70
    }
71
}
72