menu_attributes.test
9.15 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<?php
/**
* @file
* Functionality tests for Menu attributes.
*
* @ingroup menu_attributes
*/
/**
* Helper test class with some added functions for testing.
*/
class MenuAttributesTestHelper extends DrupalWebTestCase {
protected $admin_user;
protected $menu_attributes_new;
protected $menu_attributes_edit;
function setUp(array $modules = array()) {
$modules[] = 'menu';
$modules[] = 'menu_attributes';
parent::setUp($modules);
// Create and login user.
$this->admin_user = $this->drupalCreateUser(array(
'administer menu attributes',
'access administration pages',
'administer content types',
'administer menu',
'create page content',
'edit any page content',
'delete any page content',
));
$this->menu_attributes_new = array(
'title' => $this->randomName(10),
'id' => $this->randomName(10),
'name' => $this->randomName(10),
'rel' => $this->randomName(10),
'class' => $this->randomName(10),
'style' => $this->randomName(10),
'target' => '_top',
'accesskey' => $this->randomName(1),
);
$this->menu_attributes_edit = array(
'title' => $this->randomName(10),
'id' => $this->randomName(10),
'name' => $this->randomName(10),
'rel' => $this->randomName(10),
'class' => $this->randomName(10),
'style' => $this->randomName(10),
'target' => '_self',
'accesskey' => $this->randomName(1),
);
}
/**
* Add or edit a menu link using the menu module UI.
*
* @param integer $plid Parent menu link id.
* @param string $link Link path.
* @param string $menu_name Menu name.
*
* @return array Menu link created.
*/
function crudMenuLink($mlid = 0, $plid = 0, $link = '<front>', $menu_name = 'navigation') {
// View add/edit menu link page.
if (empty($mlid)) {
$this->drupalGet("admin/structure/menu/manage/$menu_name/add");
$menu_attributes = $this->menu_attributes_new;
}
else {
$this->drupalGet("admin/structure/menu/item/$mlid/edit");
$menu_attributes = $this->menu_attributes_edit;
}
$this->assertResponse(200);
$title = '!link_' . $this->randomName(16);
$edit = array(
'link_path' => $link,
'link_title' => $title,
'enabled' => TRUE, // Use this to disable the menu and test.
'expanded' => TRUE, // Setting this to true should test whether it works when we do the std_user tests.
'parent' => $menu_name . ':' . $plid,
'weight' => '0',
'options[attributes][title]' => $menu_attributes['title'],
'options[attributes][id]' => $menu_attributes['id'],
'options[attributes][name]' => $menu_attributes['name'],
'options[attributes][rel]' => $menu_attributes['rel'],
'options[attributes][class]' => $menu_attributes['class'],
'options[attributes][style]' => $menu_attributes['style'],
'options[attributes][target]' => $menu_attributes['target'],
'options[attributes][accesskey]' => $menu_attributes['accesskey'],
);
// Add menu link.
$this->drupalPost(NULL, $edit, t('Save'));
$item = db_query('SELECT * FROM {menu_links} WHERE link_title = :title', array(':title' => $title))->fetchAssoc();
return $item;
}
function assertMenuAttributes($form_parent, $action = 'new') {
if ($action == 'new') {
foreach ($this->menu_attributes_new as $attribute => $value) {
$this->assertFieldByName($form_parent . '[' . $attribute . ']', $value, t("'$attribute' attribute correct in edit form."));
}
}
else {
foreach ($this->menu_attributes_edit as $attribute => $value) {
$this->assertFieldByName($form_parent . '[' . $attribute . ']', $value, t("New '$attribute' attribute correct in edit form."));
}
}
}
}
/**
* Test basic functionality.
*/
class MenuAttributesTestCase extends MenuAttributesTestHelper {
public static function getInfo() {
return array(
'name' => 'Menu attributes',
'description' => 'Tests menu attributes functionality.',
'group' => 'Menu',
);
}
function setUp(array $modules = array()) {
parent::setUp($modules);
}
/**
* Tests menu attributes functionality.
*/
function testMenuAttributes() {
// Login the user.
$this->drupalLogin($this->admin_user);
$menu_name = 'navigation';
// Add a node to be used as a link for menu links.
$node = $this->drupalCreateNode(array('type' => 'page'));
// Add a menu link.
$item = $this->crudMenuLink(0, 0, 'node/' . $node->nid, $menu_name);
$this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit');
$this->assertMenuAttributes('options[attributes]', 'new');
// Edit the previously created menu link.
$item = $this->crudMenuLink($item['mlid'], 0, 'node/' . $node->nid, $menu_name);
$this->drupalGet('admin/structure/menu/item/' . $item['mlid'] . '/edit');
$this->assertMenuAttributes('options[attributes]', 'edit');
}
}
/**
* Test menu attributes settings for nodes.
*/
class MenuAttributesNodeTestCase extends MenuAttributesTestHelper {
public static function getInfo() {
return array(
'name' => 'Menu attributes settings for nodes',
'description' => 'Add, edit, and delete a node with menu link.',
'group' => 'Menu',
);
}
function setUp(array $modules = array()) {
parent::setUp($modules);
$this->drupalLogin($this->admin_user);
}
/**
* Test creating, editing, deleting menu links via node form widget.
*/
function testMenuNodeFormWidget() {
// Enable Navigation menu as available menu.
$edit = array(
'menu_options[navigation]' => 1,
);
$this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
// Change default parent item to Navigation menu, so we can assert more
// easily.
$edit = array(
'menu_parent' => 'navigation:0',
);
$this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
// Create a node.
$node_title = $this->randomName();
$language = LANGUAGE_NONE;
$edit = array(
"title" => $node_title,
"body[$language][0][value]" => $this->randomString(),
);
$this->drupalPost('node/add/page', $edit, t('Save'));
$node = $this->drupalGetNodeByTitle($node_title);
// Assert that there is no link for the node.
$this->drupalGet('');
$this->assertNoLink($node_title);
// Edit the node, enable the menu link setting, but skip the link title.
$edit = array(
'menu[enabled]' => 1,
);
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
// Assert that there is no link for the node.
$this->drupalGet('');
$this->assertNoLink($node_title);
// Edit the node and create a menu link with attributes.
$edit = array(
'menu[enabled]' => 1,
'menu[link_title]' => $node_title,
'menu[weight]' => 17,
'menu[options][attributes][title]' => $this->menu_attributes_new['title'],
'menu[options][attributes][id]' => $this->menu_attributes_new['id'],
'menu[options][attributes][name]' => $this->menu_attributes_new['name'],
'menu[options][attributes][rel]' => $this->menu_attributes_new['rel'],
'menu[options][attributes][class]' => $this->menu_attributes_new['class'],
'menu[options][attributes][style]' => $this->menu_attributes_new['style'],
'menu[options][attributes][target]' => $this->menu_attributes_new['target'],
'menu[options][attributes][accesskey]' => $this->menu_attributes_new['accesskey'],
);
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
// Assert that the link exists.
$this->drupalGet('');
$this->assertLink($node_title);
// Assert that the link attributes exist.
$this->drupalGet('node/' . $node->nid . '/edit');
$this->assertMenuAttributes('menu[options][attributes]', 'new');
// Edit the node again and change the menu link attributes.
$edit = array(
'menu[enabled]' => 1,
'menu[link_title]' => $node_title,
'menu[weight]' => 17,
'menu[options][attributes][title]' => $this->menu_attributes_edit['title'],
'menu[options][attributes][id]' => $this->menu_attributes_edit['id'],
'menu[options][attributes][name]' => $this->menu_attributes_edit['name'],
'menu[options][attributes][rel]' => $this->menu_attributes_edit['rel'],
'menu[options][attributes][class]' => $this->menu_attributes_edit['class'],
'menu[options][attributes][style]' => $this->menu_attributes_edit['style'],
'menu[options][attributes][target]' => $this->menu_attributes_edit['target'],
'menu[options][attributes][accesskey]' => $this->menu_attributes_edit['accesskey'],
);
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
// Assert that the link attributes exist.
$this->drupalGet('node/' . $node->nid . '/edit');
$this->assertMenuAttributes('menu[options][attributes]', 'edit');
// Edit the node and remove the menu link.
$edit = array(
'menu[enabled]' => FALSE,
);
$this->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
// Assert that there is no link for the node.
$this->drupalGet('');
$this->assertNoLink($node_title);
}
}