Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
22f70763
Commit
22f70763
authored
Sep 28, 2012
by
Jennifer Hodgdon
Browse files
Issue
#1797374
by xjm: Remove t() from test assertions in PHP module
parent
74d05293
Changes
3
Hide whitespace changes
Inline
Side-by-side
core/modules/php/lib/Drupal/php/Tests/PhpAccessTest.php
View file @
22f70763
...
...
@@ -30,10 +30,10 @@ function testNoPrivileges() {
// Make sure that the PHP code shows up as text.
$this
->
drupalGet
(
'node/'
.
$node
->
nid
);
$this
->
assertText
(
'print'
,
t
(
'PHP code was not evaluated.'
)
)
;
$this
->
assertText
(
'print'
,
'PHP code was not evaluated.'
);
// Make sure that user doesn't have access to filter.
$this
->
drupalGet
(
'node/'
.
$node
->
nid
.
'/edit'
);
$this
->
assertNoRaw
(
'<option value="'
.
$this
->
php_code_format
->
format
.
'">'
,
t
(
'PHP code format not available.'
)
)
;
$this
->
assertNoRaw
(
'<option value="'
.
$this
->
php_code_format
->
format
.
'">'
,
'PHP code format not available.'
);
}
}
core/modules/php/lib/Drupal/php/Tests/PhpFilterTest.php
View file @
22f70763
...
...
@@ -40,10 +40,10 @@ function testPhpFilter() {
$langcode
=
LANGUAGE_NOT_SPECIFIED
;
$edit
[
"body[
$langcode
][0][format]"
]
=
$this
->
php_code_format
->
format
;
$this
->
drupalPost
(
'node/'
.
$node
->
nid
.
'/edit'
,
$edit
,
t
(
'Save'
));
$this
->
assertRaw
(
t
(
'Basic page %title has been updated.'
,
array
(
'%title'
=>
$node
->
label
())),
t
(
'PHP code filter turned on.'
)
)
;
$this
->
assertRaw
(
t
(
'Basic page %title has been updated.'
,
array
(
'%title'
=>
$node
->
label
())),
'PHP code filter turned on.'
);
// Make sure that the PHP code shows up as text.
$this
->
assertNoText
(
'print "SimpleTest PHP was executed!"'
,
t
(
"PHP code isn't displayed."
)
)
;
$this
->
assertText
(
'SimpleTest PHP was executed!'
,
t
(
'PHP code has been evaluated.'
)
)
;
$this
->
assertNoText
(
'print "SimpleTest PHP was executed!"'
,
"PHP code isn't displayed."
);
$this
->
assertText
(
'SimpleTest PHP was executed!'
,
'PHP code has been evaluated.'
);
}
}
core/modules/php/lib/Drupal/php/Tests/PhpTestBase.php
View file @
22f70763
...
...
@@ -36,20 +36,20 @@ function setUp() {
// Verify that the PHP code text format was inserted.
$php_format_id
=
'php_code'
;
$this
->
php_code_format
=
filter_format_load
(
$php_format_id
);
$this
->
assertEqual
(
$this
->
php_code_format
->
name
,
'PHP code'
,
t
(
'PHP code text format was created.'
)
)
;
$this
->
assertEqual
(
$this
->
php_code_format
->
name
,
'PHP code'
,
'PHP code text format was created.'
);
// Verify that the format has the PHP code filter enabled.
$filters
=
filter_list_format
(
$php_format_id
);
$this
->
assertTrue
(
$filters
[
'php_code'
]
->
status
,
t
(
'PHP code filter is enabled.'
)
)
;
$this
->
assertTrue
(
$filters
[
'php_code'
]
->
status
,
'PHP code filter is enabled.'
);
// Verify that the format exists on the administration page.
$this
->
drupalGet
(
'admin/config/content/formats'
);
$this
->
assertText
(
'PHP code'
,
t
(
'PHP code text format was created.'
)
)
;
$this
->
assertText
(
'PHP code'
,
'PHP code text format was created.'
);
// Verify that anonymous and authenticated user roles do not have access.
$this
->
drupalGet
(
'admin/config/content/formats/'
.
$php_format_id
);
$this
->
assertFieldByName
(
'roles['
.
DRUPAL_ANONYMOUS_RID
.
']'
,
FALSE
,
t
(
'Anonymous users do not have access to PHP code format.'
)
)
;
$this
->
assertFieldByName
(
'roles['
.
DRUPAL_AUTHENTICATED_RID
.
']'
,
FALSE
,
t
(
'Authenticated users do not have access to PHP code format.'
)
)
;
$this
->
assertFieldByName
(
'roles['
.
DRUPAL_ANONYMOUS_RID
.
']'
,
FALSE
,
'Anonymous users do not have access to PHP code format.'
);
$this
->
assertFieldByName
(
'roles['
.
DRUPAL_AUTHENTICATED_RID
.
']'
,
FALSE
,
'Authenticated users do not have access to PHP code format.'
);
}
/**
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment