Completed
Pull Request — master (#25)
by Kamil
03:01
created

CreatePage::attachImage()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Lakion\SyliusCmsBundle\Tests\Behat\Page\Admin\ProductBlock;
4
5
use Sylius\Behat\Page\Admin\Crud\CreatePage as BaseCreatePage;
6
7
class CreatePage extends BaseCreatePage implements CreatePageInterface
8
{
9
    /**
10
     * {@inheritdoc}
11
     */
12
    public function setBody($body)
13
    {
14
        $this->getSession()->getPage()->fillField('Body', $body);
15
    }
16
17
    /**
18
     * {@inheritdoc}
19
     */
20
    public function setLink($link)
21
    {
22
        $this->getSession()->getPage()->fillField('Link', $link);
23
    }
24
25
    /**
26
     * {@inheritdoc}
27
     */
28
    public function setName($name)
29
    {
30
        $this->getSession()->getPage()->fillField('Name', $name);
31
    }
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    public function setTitle($title)
37
    {
38
        $this->getSession()->getPage()->fillField('Title', $title);
39
    }
40
41
    /**
42
     * {@inheritdoc}
43
     */
44
    public function chooseProduct($productName)
45
    {
46
        $this->getSession()->getPage()->selectFieldOption('Product', $productName);
47
    }
48
49
    /**
50
     * {@inheritdoc}
51
     */
52
    public function attachImage($relativePath)
53
    {
54
        $this->getSession()->getPage()->attachFileToField('Image', (string) $this->getParameter('files_path') . $relativePath);
55
    }
56
57
    /**
58
     * {@inheritdoc}
59
     */
60 View Code Duplication
    protected function getDefinedElements()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
61
    {
62
        return array_merge(parent::getDefinedElements(), [
63
            'body' => '#lakion_sylius_cms_product_block_body',
64
            'link' => '#lakion_sylius_cms_product_block_linkUrl',
65
            'name' => '#lakion_sylius_cms_product_block_name',
66
            'product' => '#lakion_sylius_cms_product_block_product',
67
            'title' => '#lakion_sylius_cms_product_block_title',
68
        ]);
69
    }
70
}
71