Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
32898274
Commit
32898274
authored
16 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
#293514
by mikey_p: Add tests for menu_rebuild_needed.
parent
b47ecd8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/simpletest/tests/menu.test
+38
-6
38 additions, 6 deletions
modules/simpletest/tests/menu.test
with
38 additions
and
6 deletions
modules/simpletest/tests/menu.test
+
38
−
6
View file @
32898274
...
@@ -7,9 +7,6 @@
...
@@ -7,9 +7,6 @@
*/
*/
class
MenuIncTestCase
extends
DrupalWebTestCase
{
class
MenuIncTestCase
extends
DrupalWebTestCase
{
/**
* Implementation of getInfo().
*/
function
getInfo
()
{
function
getInfo
()
{
return
array
(
return
array
(
'name'
=>
t
(
'Hook menu tests'
),
'name'
=>
t
(
'Hook menu tests'
),
...
@@ -18,9 +15,6 @@ class MenuIncTestCase extends DrupalWebTestCase {
...
@@ -18,9 +15,6 @@ class MenuIncTestCase extends DrupalWebTestCase {
);
);
}
}
/**
* Implementation of setUp().
*/
function
setUp
()
{
function
setUp
()
{
// Enable dummy module that implements hook_menu.
// Enable dummy module that implements hook_menu.
parent
::
setUp
(
'hook_menu'
);
parent
::
setUp
(
'hook_menu'
);
...
@@ -45,3 +39,41 @@ class MenuIncTestCase extends DrupalWebTestCase {
...
@@ -45,3 +39,41 @@ class MenuIncTestCase extends DrupalWebTestCase {
$this
->
assertEqual
(
$name
,
'changed'
,
t
(
'Menu name was successfully changed after rebuild.'
));
$this
->
assertEqual
(
$name
,
'changed'
,
t
(
'Menu name was successfully changed after rebuild.'
));
}
}
}
}
/**
* Tests rebuilding the menu by setting 'menu_rebuild_needed.'
*/
class
MenuRebuildTestCase
extends
DrupalWebTestCase
{
function
getInfo
()
{
return
array
(
'name'
=>
t
(
'Menu rebuild test'
),
'description'
=>
t
(
'Test rebuilding of menu.'
),
'group'
=>
t
(
'Menu'
),
);
}
/**
* Test if the 'menu_rebuild_needed' variable triggers a menu_rebuild() call.
*/
function
testMenuRebuildByVariable
()
{
// Check if 'admin' path exists.
$admin_exists
=
db_result
(
db_query
(
"SELECT path from
{
menu_router
}
WHERE path = 'admin'"
));
$this
->
assertEqual
(
$admin_exists
,
'admin'
,
t
(
"The path 'admin/' exists prior to deleting."
));
// Delete the path item 'admin', and test that the path doesn't exist in the database.
$delete
=
db_delete
(
'menu_router'
)
->
condition
(
'path'
,
'admin'
)
->
execute
();
$admin_exists
=
db_result
(
db_query
(
"SELECT path from
{
menu_router
}
WHERE path = 'admin'"
));
$this
->
assertFalse
(
$admin_exists
,
t
(
"The path 'admin/' has been deleted and doesn't exist in the database."
));
// Now we enable the rebuild variable and trigger menu_execute_active_handler()
// to rebuild the menu item. Now 'admin' should exist.
variable_set
(
'menu_rebuild_needed'
,
TRUE
);
// menu_execute_active_handler() should trigger the rebuild.
$this
->
drupalGet
(
'<front>'
);
$admin_exists
=
db_result
(
db_query
(
"SELECT path from
{
menu_router
}
WHERE path = 'admin'"
));
$this
->
assertEqual
(
$admin_exists
,
'admin'
,
t
(
"The menu has been rebuilt, the path 'admin' now exists again."
));
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment