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
21aab5e6
Commit
21aab5e6
authored
16 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#276588
by boombatower, jpetso: tests for contact module categories.
parent
a8143e47
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/contact/contact.test
+29
-3
29 additions, 3 deletions
modules/contact/contact.test
with
29 additions
and
3 deletions
modules/contact/contact.test
+
29
−
3
View file @
21aab5e6
...
...
@@ -34,7 +34,8 @@ class ContactSitewideTestCase extends DrupalWebTestCase {
// Set settings.
$edit
=
array
();
$edit
[
'contact_form_information'
]
=
$this
->
randomName
(
100
);
$contact_form_information
=
$this
->
randomName
(
100
);
$edit
[
'contact_form_information'
]
=
$contact_form_information
;
$edit
[
'contact_hourly_threshold'
]
=
3
;
$edit
[
'contact_default_status'
]
=
TRUE
;
$this
->
drupalPost
(
'admin/build/contact/settings'
,
$edit
,
t
(
'Save configuration'
));
...
...
@@ -43,6 +44,13 @@ class ContactSitewideTestCase extends DrupalWebTestCase {
// Delete old categories to ensure that new categories are used.
$this
->
deleteCategories
();
// Ensure that the contact form won't be shown without categories.
$this
->
setPermission
(
'anonymous user'
,
array
(
'access site-wide contact form'
=>
TRUE
));
$this
->
drupalLogout
();
$this
->
drupalGet
(
'contact'
);
$this
->
assertText
(
t
(
'The contact form has not been configured.'
),
t
(
'Contact form will not work without categories configured.'
));
$this
->
drupalLogin
(
$admin_user
);
// Add categories.
// Test invalid recipients.
$invalid_recipients
=
array
(
'invalid'
,
'invalid@'
,
'invalid@site'
,
'invalid@site.'
,
'@site.'
,
'@site.com'
);
...
...
@@ -56,12 +64,12 @@ class ContactSitewideTestCase extends DrupalWebTestCase {
$this
->
assertText
(
t
(
'Category field is required.'
),
t
(
'Caught empty category field'
));
$this
->
assertText
(
t
(
'Recipients field is required.'
),
t
(
'Caught empty recipients field.'
));
// Create valid categor
ies
.
// Create
first
valid categor
y
.
$recipients
=
array
(
'simpletest@example.com'
,
'simpletest2@example.com'
,
'simpletest3@example.com'
);
$this
->
addCategory
(
$category
=
$this
->
randomName
(
16
),
implode
(
','
,
array
(
$recipients
[
0
])),
''
,
TRUE
);
$this
->
assertRaw
(
t
(
'Category %category has been added.'
,
array
(
'%category'
=>
$category
)),
t
(
'Category successfully added.'
));
// Test update contact form category
// Test update contact form category
.
$categories
=
$this
->
getCategories
();
$category_id
=
$this
->
updateCategory
(
$categories
,
$category
=
$this
->
randomName
(
16
),
$recipients_str
=
implode
(
','
,
array
(
$recipients
[
0
],
$recipients
[
1
])),
$reply
=
$this
->
randomName
(
30
),
FALSE
);
$category_array
=
db_fetch_array
(
db_query
(
'SELECT category, recipients, reply, selected FROM {contact} WHERE cid = %d'
,
array
(
$category_id
)));
...
...
@@ -71,6 +79,15 @@ class ContactSitewideTestCase extends DrupalWebTestCase {
$this
->
assertFalse
(
$category_array
[
'selected'
]);
$this
->
assertRaw
(
t
(
'Category %category has been updated.'
,
array
(
'%category'
=>
$category
)),
t
(
'Category successfully updated.'
));
// Ensure that the contact form is shown without a category selection input.
$this
->
setPermission
(
'anonymous user'
,
array
(
'access site-wide contact form'
=>
TRUE
));
$this
->
drupalLogout
();
$this
->
drupalGet
(
'contact'
);
$this
->
assertText
(
$contact_form_information
,
t
(
'Contact form is shown when there is one category.'
));
$this
->
assertNoText
(
t
(
'Category'
),
t
(
'When there is only one category, the category selection element is hidden.'
));
$this
->
drupalLogin
(
$admin_user
);
// Add more categories.
$this
->
addCategory
(
$category
=
$this
->
randomName
(
16
),
implode
(
','
,
array
(
$recipients
[
0
],
$recipients
[
1
])),
''
,
FALSE
);
$this
->
assertRaw
(
t
(
'Category %category has been added.'
,
array
(
'%category'
=>
$category
)),
t
(
'Category successfully added.'
));
...
...
@@ -114,6 +131,15 @@ class ContactSitewideTestCase extends DrupalWebTestCase {
$this
->
submitContact
(
$this
->
randomName
(
16
),
$recipients
[
0
],
$this
->
randomName
(
16
),
$categories
[
0
],
''
);
$this
->
assertText
(
t
(
'Message field is required.'
),
t
(
'Message required.'
));
// Test contact form with no default category selected.
db_query
(
'UPDATE {contact} SET selected = 0'
);
$this
->
drupalGet
(
'contact'
);
$this
->
assertRaw
(
t
(
'- Please choose -'
),
t
(
'Without selected categories the visitor is asked to chose a category.'
));
// Submit contact form with invalid category id (cid 0).
$this
->
submitContact
(
$this
->
randomName
(
16
),
$recipients
[
0
],
$this
->
randomName
(
16
),
0
,
''
);
$this
->
assertText
(
t
(
'You must select a valid category.'
),
t
(
'Valid category required.'
));
// Submit contact form with correct values and check flood interval.
for
(
$i
=
0
;
$i
<
$edit
[
'contact_hourly_threshold'
];
$i
++
)
{
$this
->
submitContact
(
$this
->
randomName
(
16
),
$recipients
[
0
],
$this
->
randomName
(
16
),
$categories
[
0
],
$this
->
randomName
(
64
));
...
...
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