Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
uw_base_profile
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WCMS
uw_base_profile
Commits
6a65cc2a
Commit
6a65cc2a
authored
4 years ago
by
Lily Yan
Committed by
Liam Morland
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ISTWCMS-4764 Rewrite comments in order to make them clear
parent
d816285c
No related branches found
No related tags found
3 merge requests
!433
ISTWCMS-6296 Create test for all event dates test cases
,
!136
Istwcms 4725 ebremner config sync
,
!126
Feature/istwcms 4764 l26yan remove ff top level remove button
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/src/Functional/UwWcmsBasicTest.php
+3
-4
3 additions, 4 deletions
tests/src/Functional/UwWcmsBasicTest.php
with
3 additions
and
4 deletions
tests/src/Functional/UwWcmsBasicTest.php
+
3
−
4
View file @
6a65cc2a
...
@@ -1200,21 +1200,20 @@ class UwWcmsBasicTest extends BrowserTestBase {
...
@@ -1200,21 +1200,20 @@ class UwWcmsBasicTest extends BrowserTestBase {
$smallhighlight
=
$this
->
assertSession
()
->
optionExists
(
'default_value_input[field_uw_ff_info][0][style]'
,
'small'
);
$smallhighlight
=
$this
->
assertSession
()
->
optionExists
(
'default_value_input[field_uw_ff_info][0][style]'
,
'small'
);
$this
->
assertTrue
(
$smallhighlight
);
$this
->
assertTrue
(
$smallhighlight
);
$this
->
assertEquals
(
'Small highlight'
,
$smallhighlight
->
getText
());
$this
->
assertEquals
(
'Small highlight'
,
$smallhighlight
->
getText
());
// Test case 2:
// Check the configure block by adding facts and figures.
// Make sure adding facts and figures block, the config
// block includes 'Small highlight' with value 'small',
// the default color is 'Default[uWaterloo]' and not have "none" option.
$this
->
drupalGet
(
'node/1/layout'
);
$this
->
drupalGet
(
'node/1/layout'
);
$this
->
assertSession
()
->
statusCodeEquals
(
200
);
$this
->
assertSession
()
->
statusCodeEquals
(
200
);
$this
->
clickLink
(
'Add block'
);
$this
->
clickLink
(
'Add block'
);
$this
->
clickLink
(
'Facts and figures'
);
$this
->
clickLink
(
'Facts and figures'
);
// The top-level remove button doesn't exist.
// The top-level remove button doesn't exist.
$this
->
assertNoFieldByName
(
'settings_block_form_field_uw_ff_fact_figure_0_remove'
);
$this
->
assertNoFieldByName
(
'settings_block_form_field_uw_ff_fact_figure_0_remove'
);
// The default color is 'Default[uWaterloo]' and not have "none" option.
$options
=
$this
->
getOptions
(
'settings[block_form][field_uw_ff_fact_figure][0][subform][field_uw_ff_def_color]'
);
$options
=
$this
->
getOptions
(
'settings[block_form][field_uw_ff_fact_figure][0][subform][field_uw_ff_def_color]'
);
foreach
(
$options
as
$option
)
{
foreach
(
$options
as
$option
)
{
$this
->
assertNotEqual
(
'- None -'
,
$option
);
$this
->
assertNotEqual
(
'- None -'
,
$option
);
}
}
$this
->
assertFieldByXPath
(
'//option[@value="org-default" and @selected="selected"]'
,
NULL
,
'Default uWaterloo is selected.'
);
$this
->
assertFieldByXPath
(
'//option[@value="org-default" and @selected="selected"]'
,
NULL
,
'Default uWaterloo is selected.'
);
// The type includes 'Small highlight' with value 'small'.
$smallhighlight
=
$this
->
assertSession
()
->
optionExists
(
'settings[block_form][field_uw_ff_fact_figure][0][subform][field_uw_fact_figure][0][subform][field_uw_ff_info][0][style]'
,
'small'
);
$smallhighlight
=
$this
->
assertSession
()
->
optionExists
(
'settings[block_form][field_uw_ff_fact_figure][0][subform][field_uw_fact_figure][0][subform][field_uw_ff_info][0][style]'
,
'small'
);
$this
->
assertTrue
(
$smallhighlight
);
$this
->
assertTrue
(
$smallhighlight
);
$this
->
assertEquals
(
'Small highlight'
,
$smallhighlight
->
getText
());
$this
->
assertEquals
(
'Small highlight'
,
$smallhighlight
->
getText
());
...
...
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