Files
piratepoet/mailpoet/tests/integration/API/JSON/v1/AutomatedLatestContentTest.php
Rodrigo Primo e00d71b781 Remove WP < 4.5.0 compatibility code
This commit removes the method Posts::getTerms() as it existed to add a
compatibility layer for sites running WP < 4.5.0 and we don't support
this version anymore. The signature of the WP get_terms() function was
changed in version 4.5.0 and that is why this compatibility layer was
needed.

The integration test class for this method was also removed. The only
place where this method was used, AutomatedLatestContent::getTerms(),
now call WPFunctions->getTerms() directly. A very basic integration test
was added to cover the happy path of AutomatedLatestContent::getTerms().

[MAILPOET-4225]
2022-04-11 09:20:21 +02:00

46 lines
1.5 KiB
PHP

<?php
namespace MailPoet\Test\API\JSON\v1;
use MailPoet\API\JSON\SuccessResponse;
use MailPoet\API\JSON\v1\AutomatedLatestContent;
class AutomatedLatestContentTest extends \MailPoetTest {
/** @var AutomatedLatestContent */
private $endpoint;
public function _before() {
parent::_before();
$this->endpoint = $this->diContainer->get(AutomatedLatestContent::class);
}
public function testItGetsPostTypes() {
$response = $this->endpoint->getPostTypes();
expect($response->data)->notEmpty();
foreach ($response->data as $postType) {
expect($postType)->count(2);
expect($postType['name'])->notEmpty();
expect($postType['label'])->notEmpty();
}
}
public function testItDoesNotGetPostTypesExludedFromSearch() {
$response = $this->endpoint ->getPostTypes();
// WP's default post type 'revision' is excluded from search
// https://codex.wordpress.org/Post_Types
$revisionPostType = get_post_type_object('revision');
assert($revisionPostType instanceof \WP_Post_Type);
expect($revisionPostType->exclude_from_search)->true(); // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
expect(isset($response->data['revision']))->false();
}
public function testItGetTerms() {
$response = $this->endpoint->getTerms();
$this->assertInstanceOf(SuccessResponse::class, $response);
$this->assertCount(1, $response->data);
$this->assertSame('Uncategorized', $response->data['0']->name);
}
}