MailboxesCest::ensureICanSeeBulkSearchBox()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 17

Duplication

Lines 17
Ratio 100 %

Importance

Changes 0
Metric Value
dl 17
loc 17
rs 9.7
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Hosting Plugin for HiPanel
4
 *
5
 * @link      https://github.com/hiqdev/hipanel-module-hosting
6
 * @package   hipanel-module-hosting
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2015-2019, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hipanel\modules\hosting\tests\acceptance\seller;
12
13
use hipanel\helpers\Url;
14
use hipanel\tests\_support\Page\IndexPage;
15
use hipanel\tests\_support\Page\Widget\Input\Input;
16
use hipanel\tests\_support\Page\Widget\Input\Select2;
17
use hipanel\tests\_support\Step\Acceptance\Seller;
18
19 View Code Duplication
class MailboxesCest
0 ignored issues
show
Duplication introduced by
This class 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...
20
{
21
    /**
22
     * @var IndexPage
23
     */
24
    private $index;
25
26
    public function _before(Seller $I)
27
    {
28
        $this->index = new IndexPage($I);
29
    }
30
31
    public function ensureIndexPageWorks(Seller $I)
32
    {
33
        $I->login();
34
        $I->needPage(Url::to('@mail'));
35
        $I->see('Mailboxes', 'h1');
36
        $I->seeLink('Create mailbox', Url::to('create'));
37
        $this->ensureICanSeeAdvancedSearchBox($I);
38
        $this->ensureICanSeeLegendBox();
39
        $this->ensureICanSeeBulkSearchBox();
40
    }
41
42
    private function ensureICanSeeAdvancedSearchBox(Seller $I)
43
    {
44
        $this->index->containsFilters([
45
            Input::asAdvancedSearch($I, 'E-mail'),
46
            Select2::asAdvancedSearch($I, 'Server'),
47
            Select2::asAdvancedSearch($I, 'Status'),
48
            Select2::asAdvancedSearch($I, 'Client'),
49
            Select2::asAdvancedSearch($I, 'Reseller'),
50
            Select2::asAdvancedSearch($I, 'Type'),
51
        ]);
52
    }
53
54
    private function ensureICanSeeLegendBox()
55
    {
56
        $this->index->containsLegend([
57
            'Mail box',
58
            'Mail alias',
59
            'Mail box with aliases',
60
        ]);
61
    }
62
63
    private function ensureICanSeeBulkSearchBox()
64
    {
65
        $this->index->containsBulkButtons([
66
            'Enable',
67
            'Disable',
68
            'Delete',
69
        ]);
70
        $this->index->containsColumns([
71
            'E-mail',
72
            'Forwarding',
73
            'Client',
74
            'Reseller',
75
            'Server',
76
            'Account',
77
            'Status',
78
        ]);
79
    }
80
}
81