-
Notifications
You must be signed in to change notification settings - Fork 3
/
InstallStateCest.php
135 lines (120 loc) · 3.12 KB
/
InstallStateCest.php
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
use Faker\Factory;
/**
* Class InstallStateCest.
*
* @group install
*/
class InstallStateCest {
/**
* Faker service.
*
* @var \Faker\Generator
*/
protected $faker;
/**
* Test constructor.
*/
public function __construct() {
$this->faker = Factory::create();
}
/**
* Default content should be visible.
*/
public function testDefaultContent(AcceptanceTester $I) {
$I->amOnPage('/');
$I->canSeeResponseCodeIs(200);
$I->canSeeElement('input[type="text"]');
$I->canSeeElement('input[value="Search"]');
$I->canSee('Class aptent taciti sociosqu ad litora torquent per conubia nostra');
$I->canSee('About', 'h2');
$I->canSee('People', 'h2');
$I->canSee('Connect With Us', 'h2');
$I->canSee('Contact Us', 'h2');
}
/**
* I can see some links as an admin.
*
* @group roles
*/
public function testVisibleAdminItems(AcceptanceTester $I) {
$I->logInWithRole('administrator');
$I->amOnPage('/admin/content');
$I->canSee('Content');
$I->canSee('Files');
$I->canSee('Media');
$I->canSee('Add content');
$I->canSee('Home Page');
$I->amOnPage('/admin/users');
$I->canSee('Howard');
$I->canSee('Lindsey');
}
/**
* Contributor can see a certain number of shortcuts.
*
* @group shotcuts
* @group roles
*/
public function testContributorShortcuts(AcceptanceTester $I) {
$I->logInWithRole('contributor');
$I->amOnPage('/');
$I->canSeeNumberOfElements('#toolbar-item-shortcuts-tray a', 28);
}
/**
* Site Managers can see a certain number of shortcuts.
*
* @group shotcuts
* @group roles
*/
public function testSiteManagerShortcuts(AcceptanceTester $I) {
$I->logInWithRole('site_manager');
$I->amOnPage('/');
$I->canSeeNumberOfElements('#toolbar-item-shortcuts-tray a', 34);
}
/**
* Developers/Admins can see a certain number of shortcuts.
*
* @group shotcuts
* @group roles
*/
public function testDeveloperShortcuts(AcceptanceTester $I) {
$I->logInWithRole('administrator');
$I->amOnPage('/');
$I->canSeeNumberOfElements('#toolbar-item-shortcuts-tray a', 38);
}
/**
* Test fast 404 page.
*
* @group fast404
*/
public function testFast404(AcceptanceTester $I) {
$path = $this->faker->words(2, TRUE);
$path = preg_replace('/[^a-z]/', '-', strtolower($path));
$I->amOnPage($path);
$I->canSeeResponseCodeIs(404);
$redirect_source = $this->faker->words(2, TRUE);
$redirect_source = preg_replace('/[^a-z]/', '-', strtolower($redirect_source));
$node = $I->createEntity([
'type' => 'hs_basic_page',
'title' => $this->faker->words(3, TRUE),
]);
$I->createEntity([
'redirect_source' => [
[
'path' => $redirect_source,
'query' => [],
],
],
'redirect_redirect' => [
[
'uri' => 'internal:/node/' . $node->id(),
'options' => [],
],
],
'status_code' => 301,
], 'redirect');
$I->amOnPage($redirect_source);
$I->canSeeResponseCodeIs(200);
$I->canSeeInCurrentUrl($node->toUrl()->toString());
}
}