Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3443488
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Issue forks
drupal-3443488
Commits
762ca25e
Commit
762ca25e
authored
16 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#296305
by Damien Tournoud, recidive, cwgordon7, chx: 404 page needs a...
- Patch
#296305
by Damien Tournoud, recidive, cwgordon7, chx: 404 page needs a test -- testing party
parent
b63c3166
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/system/system.test
+62
-0
62 additions, 0 deletions
modules/system/system.test
with
62 additions
and
0 deletions
modules/system/system.test
+
62
−
0
View file @
762ca25e
...
...
@@ -320,3 +320,65 @@ class AdminMetaTagTestCase extends DrupalWebTestCase {
$this
->
assertRaw
(
$string
,
t
(
'Fingerprinting meta tag generated correctly.'
),
t
(
'System'
));
}
}
class
PageNotFoundTestCase
extends
DrupalWebTestCase
{
protected
$admin_user
;
/**
* Implementation of getInfo().
*/
function
getInfo
()
{
return
array
(
'name'
=>
t
(
'404 functionality'
),
'description'
=>
t
(
"Tests page not found functionality, including custom 404 pages."
),
'group'
=>
t
(
'System'
)
);
}
/**
* Implementation of setUp().
*/
function
setUp
()
{
parent
::
setUp
();
// Create an administrative user.
$this
->
admin_user
=
$this
->
drupalCreateUser
(
array
(
'administer site configuration'
));
$this
->
drupalLogin
(
$this
->
admin_user
);
}
function
testPageNotFound
()
{
$this
->
drupalGet
(
$this
->
randomName
(
10
));
$this
->
assertText
(
t
(
'Page not found'
),
t
(
'Found the default 404 page'
));
$edit
=
array
(
'title'
=>
$this
->
randomName
(
10
),
'body'
=>
$this
->
randomName
(
100
)
);
$node
=
$this
->
drupalCreateNode
(
$edit
);
// Use a custom 404 page.
$this
->
drupalPost
(
'admin/settings/error-reporting'
,
array
(
'site_404'
=>
'node/'
.
$node
->
nid
),
t
(
'Save configuration'
));
$this
->
drupalGet
(
$this
->
randomName
(
10
));
$this
->
assertText
(
$node
->
title
,
t
(
'Found the custom 404 page'
));
// Logout and check that the user login block is not shown on custom 404 pages.
$this
->
drupalLogout
();
$this
->
drupalGet
(
$this
->
randomName
(
10
));
$this
->
assertText
(
$node
->
title
,
t
(
'Found the custom 404 page'
));
$this
->
assertNoText
(
t
(
'User login'
),
t
(
'Blocks are not shown on the custom 404 page'
));
// Log back in and remove the custom 404 page.
$this
->
drupalLogin
(
$this
->
admin_user
);
$this
->
drupalPost
(
'admin/settings/error-reporting'
,
array
(),
t
(
'Reset to defaults'
));
// Logout and check that the user login block is not shown on default 404 pages.
$this
->
drupalLogout
();
$this
->
drupalGet
(
$this
->
randomName
(
10
));
$this
->
assertText
(
t
(
'Page not found'
),
t
(
'Found the default 404 page'
));
$this
->
assertNoText
(
t
(
'User login'
),
t
(
'Blocks are not shown on the default 404 page'
));
}
}
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