Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Automatically Paginate Posts
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
WP Plugins
Automatically Paginate Posts
Commits
dc08225c
Commit
dc08225c
authored
2 years ago
by
Erick Hitter
Browse files
Options
Downloads
Patches
Plain Diff
Test coverage
parent
8d71b77a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!5
Add block-editor support
Pipeline
#4961
failed with stages
in 2 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test-automatically-paginate-posts.php
+106
-0
106 additions, 0 deletions
tests/test-automatically-paginate-posts.php
with
106 additions
and
0 deletions
tests/test-automatically-paginate-posts.php
+
106
−
0
View file @
dc08225c
...
...
@@ -27,6 +27,7 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
parent
::
set_up
();
$this
->
_instance
=
new
Automatically_Paginate_Posts
();
$this
->
_instance
->
action_init
();
}
/**
...
...
@@ -74,4 +75,109 @@ class Test_Automatically_Paginate_Posts extends WP_UnitTestCase {
'Failed to assert that settings link is added for this plugin.'
);
}
/**
* Test `the_post` filtering when in admin.
*
* @covers ::filter_the_posts()
*/
public
function
test_filter_the_posts_admin
()
{
$old_screen
=
$GLOBALS
[
'current_screen'
];
$GLOBALS
[
'current_screen'
]
=
new
Test_Autopaging_Admin
();
$test_posts
=
[
'unit-test'
,
];
$this
->
assertEquals
(
$test_posts
,
$this
->
_instance
->
filter_the_posts
(
$test_posts
),
'Failed to assert that posts are not modified in admin.'
);
$GLOBALS
[
'current_screen'
]
=
$old_screen
;
}
/**
* Test modifications to various posts.
*
* @covers ::filter_the_posts()
* @dataProvider data_provider_filter_the_posts
*
* @param string $expected Expected post content.
* @param array $input Test arguments.
*/
public
function
test_filter_the_posts
(
$expected
,
$input
)
{
$post
=
$this
->
factory
->
post
->
create_and_get
(
$input
[
'post_args'
]
);
update_option
(
'autopaging_paging_type'
,
$input
[
'type'
]
);
update_option
(
'autopaging_num_pages'
,
$input
[
'num_pages'
]
);
update_option
(
'autopaging_num_words'
,
$input
[
'num_words'
]
);
$this
->
assertEquals
(
$expected
,
$this
->
_instance
->
filter_the_posts
(
[
$post
]
)[
0
]
->
post_content
);
}
/**
* Data provide to test post filtering.
*
* @return array
*/
public
function
data_provider_filter_the_posts
()
{
return
array
(
'Unsupported type'
=>
array
(
"I am a page.
\r\n\r\n
I should not be paginated."
,
array
(
'post_args'
=>
array
(
'post_type'
=>
'page'
,
'post_content'
=>
"I am a page.
\r\n\r\n
I should not be paginated."
,
),
'type'
=>
'pages'
,
'num_pages'
=>
2
,
'num_words'
=>
2
,
),
),
'Already paginated'
=>
array
(
"1
\r\n\r\n
<!--nextpage-->
\r\n\r\n
2
\r\n\r\n
3"
,
array
(
'post_args'
=>
array
(
'post_type'
=>
'post'
,
'post_content'
=>
"1
\r\n\r\n
<!--nextpage-->
\r\n\r\n
2
\r\n\r\n
3"
,
),
'type'
=>
'pages'
,
'num_pages'
=>
2
,
'num_words'
=>
2
,
),
),
'Classic post, two pages'
=>
array
(
"1
\r\n\r\n
2<!--nextpage-->
\r\n\r\n
3"
,
array
(
'post_args'
=>
array
(
'post_type'
=>
'post'
,
'post_content'
=>
"1
\r\n\r\n
2
\r\n\r\n
3"
,
),
'type'
=>
'pages'
,
'num_pages'
=>
2
,
'num_words'
=>
2
,
),
),
);
}
}
/**
* Test class for admin-related restrictions.
*/
class
Test_Autopaging_Admin
{
/**
* Mock being in wp-admin.
*
* @return bool
*/
public
function
in_admin
()
{
return
true
;
}
}
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