mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-05-17 17:54:25 +00:00
Dashboard: Update the existing WordPress News dashboard widget to also include upcoming meetup events and WordCamps near the current user’s location.
Props @afercia, @andreamiddleton, @azaozz, @camikaos, @coreymckrill, @chanthaboune, @courtneypk, @dd32, @iandunn, @iseulde, @mapk, @mayukojpn, @melchoyce, @nao, @obenland, @pento, @samuelsidler, @stephdau, @tellyworth. See #40702. git-svn-id: https://develop.svn.wordpress.org/trunk@40607 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
258
tests/phpunit/tests/admin/includesCommunityEvents.php
Normal file
258
tests/phpunit/tests/admin/includesCommunityEvents.php
Normal file
@@ -0,0 +1,258 @@
|
||||
<?php
|
||||
/**
|
||||
* Unit tests for methods in WP_Community_Events.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage UnitTests
|
||||
* @since 4.8.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class Test_WP_Community_Events.
|
||||
*
|
||||
* @group admin
|
||||
* @group community-events
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
class Test_WP_Community_Events extends WP_UnitTestCase {
|
||||
/**
|
||||
* An instance of the class to test.
|
||||
*
|
||||
* @access private
|
||||
* @since 4.8.0
|
||||
*
|
||||
* @var WP_Community_Events
|
||||
*/
|
||||
private $instance;
|
||||
|
||||
/**
|
||||
* Performs setup tasks for every test.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
require_once( ABSPATH . 'wp-admin/includes/class-wp-community-events.php' );
|
||||
|
||||
$this->instance = new WP_Community_Events( 1, $this->get_user_location() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Simulates a stored user location.
|
||||
*
|
||||
* @access private
|
||||
* @since 4.8.0
|
||||
*
|
||||
* @return array The mock location.
|
||||
*/
|
||||
private function get_user_location() {
|
||||
return array(
|
||||
'description' => 'San Francisco',
|
||||
'latitude' => '37.7749300',
|
||||
'longitude' => '-122.4194200',
|
||||
'country' => 'US',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test: get_events() should return an instance of WP_Error if the response code is not 200.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function test_get_events_bad_response_code() {
|
||||
add_filter( 'pre_http_request', array( $this, '_http_request_bad_response_code' ) );
|
||||
|
||||
$this->assertWPError( $this->instance->get_events() );
|
||||
|
||||
remove_filter( 'pre_http_request', array( $this, '_http_request_bad_response_code' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Test: The response body should not be cached if the response code is not 200.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function test_get_cached_events_bad_response_code() {
|
||||
add_filter( 'pre_http_request', array( $this, '_http_request_bad_response_code' ) );
|
||||
|
||||
$this->instance->get_events();
|
||||
|
||||
$this->assertFalse( $this->instance->get_cached_events() );
|
||||
|
||||
remove_filter( 'pre_http_request', array( $this, '_http_request_bad_response_code' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Simulates an HTTP response with a non-200 response code.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*
|
||||
* @return array A mock response with a 404 HTTP status code
|
||||
*/
|
||||
public function _http_request_bad_response_code() {
|
||||
return array(
|
||||
'headers' => '',
|
||||
'body' => '',
|
||||
'response' => array(
|
||||
'code' => 404,
|
||||
),
|
||||
'cookies' => '',
|
||||
'filename' => '',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test: get_events() should return an instance of WP_Error if the response body does not have
|
||||
* the required properties.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function test_get_events_invalid_response() {
|
||||
add_filter( 'pre_http_request', array( $this, '_http_request_invalid_response' ) );
|
||||
|
||||
$this->assertWPError( $this->instance->get_events() );
|
||||
|
||||
remove_filter( 'pre_http_request', array( $this, '_http_request_invalid_response' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Test: The response body should not be cached if it does not have the required properties.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function test_get_cached_events_invalid_response() {
|
||||
add_filter( 'pre_http_request', array( $this, '_http_request_invalid_response' ) );
|
||||
|
||||
$this->instance->get_events();
|
||||
|
||||
$this->assertFalse( $this->instance->get_cached_events() );
|
||||
|
||||
remove_filter( 'pre_http_request', array( $this, '_http_request_invalid_response' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Simulates an HTTP response with a body that does not have the required properties.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*
|
||||
* @return array A mock response that's missing required properties.
|
||||
*/
|
||||
public function _http_request_invalid_response() {
|
||||
return array(
|
||||
'headers' => '',
|
||||
'body' => wp_json_encode( array() ),
|
||||
'response' => array(
|
||||
'code' => 200,
|
||||
),
|
||||
'cookies' => '',
|
||||
'filename' => '',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test: With a valid response, get_events() should return an associated array containing a location array and
|
||||
* an events array with individual events that have formatted time and date.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function test_get_events_valid_response() {
|
||||
add_filter( 'pre_http_request', array( $this, '_http_request_valid_response' ) );
|
||||
|
||||
$response = $this->instance->get_events();
|
||||
|
||||
$this->assertNotWPError( $response );
|
||||
$this->assertEqualSetsWithIndex( $this->get_user_location(), $response['location'] );
|
||||
$this->assertEquals( date( 'l, M j, Y', strtotime( 'next Sunday 1pm' ) ), $response['events'][0]['formatted_date'] );
|
||||
$this->assertEquals( '1:00 pm', $response['events'][0]['formatted_time'] );
|
||||
|
||||
remove_filter( 'pre_http_request', array( $this, '_http_request_valid_response' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Test: get_cached_events() should return the same data as get_events(), including formatted time
|
||||
* and date values for each event.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*/
|
||||
public function test_get_cached_events_valid_response() {
|
||||
add_filter( 'pre_http_request', array( $this, '_http_request_valid_response' ) );
|
||||
|
||||
$this->instance->get_events();
|
||||
|
||||
$cached_events = $this->instance->get_cached_events();
|
||||
|
||||
$this->assertNotWPError( $cached_events );
|
||||
$this->assertEqualSetsWithIndex( $this->get_user_location(), $cached_events['location'] );
|
||||
$this->assertEquals( date( 'l, M j, Y', strtotime( 'next Sunday 1pm' ) ), $cached_events['events'][0]['formatted_date'] );
|
||||
$this->assertEquals( '1:00 pm', $cached_events['events'][0]['formatted_time'] );
|
||||
|
||||
remove_filter( 'pre_http_request', array( $this, '_http_request_valid_response' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Simulates an HTTP response with valid location and event data.
|
||||
*
|
||||
* @since 4.8.0
|
||||
*
|
||||
* @return array A mock HTTP response with valid data.
|
||||
*/
|
||||
public function _http_request_valid_response() {
|
||||
return array(
|
||||
'headers' => '',
|
||||
'body' => wp_json_encode( array(
|
||||
'location' => $this->get_user_location(),
|
||||
'events' => array(
|
||||
array(
|
||||
'type' => 'meetup',
|
||||
'title' => 'Flexbox + CSS Grid: Magic for Responsive Layouts',
|
||||
'url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/',
|
||||
'meetup' => 'The East Bay WordPress Meetup Group',
|
||||
'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/',
|
||||
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Sunday 1pm' ) ),
|
||||
'location' => array(
|
||||
'location' => 'Oakland, CA, USA',
|
||||
'country' => 'us',
|
||||
'latitude' => 37.808453,
|
||||
'longitude' => -122.26593,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'type' => 'meetup',
|
||||
'title' => 'Part 3- Site Maintenance - Tools to Make It Easy',
|
||||
'url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/',
|
||||
'meetup' => 'WordPress Bay Area Foothills Group',
|
||||
'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/',
|
||||
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ),
|
||||
'location' => array(
|
||||
'location' => 'Milpitas, CA, USA',
|
||||
'country' => 'us',
|
||||
'latitude' => 37.432813,
|
||||
'longitude' => -121.907095,
|
||||
),
|
||||
),
|
||||
array(
|
||||
'type' => 'wordcamp',
|
||||
'title' => 'WordCamp Kansas City',
|
||||
'url' => 'https://2017.kansascity.wordcamp.org',
|
||||
'meetup' => null,
|
||||
'meetup_url' => null,
|
||||
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Saturday' ) ),
|
||||
'location' => array(
|
||||
'location' => 'Kansas City, MO',
|
||||
'country' => 'US',
|
||||
'latitude' => 39.0392325,
|
||||
'longitude' => -94.577076,
|
||||
),
|
||||
),
|
||||
),
|
||||
) ),
|
||||
'response' => array(
|
||||
'code' => 200,
|
||||
),
|
||||
'cookies' => '',
|
||||
'filename' => '',
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user