wordpress-activitypub/tests/test-class-db-activitypub-followers.php

289 lines
9.8 KiB
PHP
Raw Normal View History

2019-02-19 22:43:14 +01:00
<?php
class Test_Db_Activitypub_Followers extends WP_UnitTestCase {
2023-04-25 09:31:28 +02:00
public static $users = array(
'username@example.org' => array(
'id' => 'https://example.org/users/username',
2023-04-25 09:31:28 +02:00
'url' => 'https://example.org/users/username',
'inbox' => 'https://example.org/users/username/inbox',
'name' => 'username',
2023-07-06 14:42:18 +02:00
'preferredUsername' => 'username',
2023-04-25 09:31:28 +02:00
),
'jon@example.com' => array(
'id' => 'https://example.com/author/jon',
2023-04-25 09:31:28 +02:00
'url' => 'https://example.com/author/jon',
'inbox' => 'https://example.com/author/jon/inbox',
'name' => 'jon',
2023-07-06 14:42:18 +02:00
'preferredUsername' => 'jon',
2023-04-25 09:31:28 +02:00
),
'doe@example.org' => array(
'id' => 'https://example.org/author/doe',
'url' => 'https://example.org/author/doe',
'inbox' => 'https://example.org/author/doe/inbox',
'name' => 'doe',
2023-07-06 14:42:18 +02:00
'preferredUsername' => 'doe',
),
2023-04-25 09:31:28 +02:00
'sally@example.org' => array(
'id' => 'http://sally.example.org',
2023-04-25 09:31:28 +02:00
'url' => 'http://sally.example.org',
'inbox' => 'http://sally.example.org/inbox',
'name' => 'jon',
2023-07-06 14:42:18 +02:00
'preferredUsername' => 'jon',
2023-04-25 09:31:28 +02:00
),
'12345@example.com' => array(
'id' => 'https://12345.example.com',
'url' => 'https://12345.example.com',
'inbox' => 'https://12345.example.com/inbox',
'name' => '12345',
2023-07-06 14:42:18 +02:00
'preferredUsername' => '12345',
),
2023-06-19 11:05:01 +02:00
'user2@example.com' => array(
'id' => 'https://user2.example.com',
2023-06-19 11:05:01 +02:00
'url' => 'https://user2.example.com',
'inbox' => 'https://user2.example.com/inbox',
'name' => 'user2',
2023-07-06 14:42:18 +02:00
'preferredUsername' => 'user2',
2023-06-19 11:05:01 +02:00
),
2023-04-25 09:31:28 +02:00
);
public function set_up() {
parent::set_up();
add_filter( 'pre_get_remote_metadata_by_actor', array( get_called_class(), 'pre_get_remote_metadata_by_actor' ), 10, 2 );
_delete_all_posts();
}
public function tear_down() {
remove_filter( 'pre_get_remote_metadata_by_actor', array( get_called_class(), 'pre_get_remote_metadata_by_actor' ) );
parent::tear_down();
}
2019-02-19 22:43:14 +01:00
public function test_get_followers() {
2023-04-25 09:31:28 +02:00
$followers = array( 'https://example.com/author/jon', 'https://example.org/author/doe', 'http://sally.example.org' );
$pre_http_request = new MockAction();
add_filter( 'pre_http_request', array( $pre_http_request, 'filter' ), 10, 3 );
foreach ( $followers as $follower ) {
$response = \Activitypub\Collection\Followers::add_follower( 1, $follower );
2023-04-25 09:31:28 +02:00
}
2019-02-19 22:43:14 +01:00
2023-04-25 09:31:28 +02:00
$db_followers = \Activitypub\Collection\Followers::get_followers( 1 );
2019-02-19 22:43:14 +01:00
$this->assertEquals( 3, \count( $db_followers ) );
2019-02-19 22:43:14 +01:00
2023-05-11 09:46:26 +02:00
$db_followers = array_map(
function( $item ) {
return $item->get_url();
2023-05-11 09:46:26 +02:00
},
$db_followers
);
2023-06-16 11:40:26 +02:00
$this->assertEquals( array( 'http://sally.example.org', 'https://example.org/author/doe', 'https://example.com/author/jon' ), $db_followers );
2019-02-19 22:43:14 +01:00
}
2019-02-28 19:32:03 +01:00
public function test_add_follower() {
2023-04-25 09:31:28 +02:00
$pre_http_request = new MockAction();
add_filter( 'pre_http_request', array( $pre_http_request, 'filter' ), 10, 3 );
$follower = 'https://12345.example.com';
2023-06-19 11:05:01 +02:00
$follower2 = 'https://user2.example.com';
2023-04-25 09:31:28 +02:00
\Activitypub\Collection\Followers::add_follower( 1, $follower );
2023-06-19 11:05:01 +02:00
\Activitypub\Collection\Followers::add_follower( 2, $follower );
\Activitypub\Collection\Followers::add_follower( 2, $follower2 );
2019-02-28 19:32:03 +01:00
2023-04-25 09:31:28 +02:00
$db_followers = \Activitypub\Collection\Followers::get_followers( 1 );
2023-06-19 11:05:01 +02:00
$db_followers2 = \Activitypub\Collection\Followers::get_followers( 2 );
2019-02-28 19:32:03 +01:00
$this->assertContains( $follower, $db_followers );
2023-06-19 11:05:01 +02:00
$this->assertContains( $follower2, $db_followers2 );
2019-02-28 19:32:03 +01:00
}
2023-04-25 09:31:28 +02:00
2023-04-26 17:22:44 +02:00
public function test_get_follower() {
$followers = array( 'https://example.com/author/jon' );
2023-06-19 11:05:01 +02:00
$followers2 = array( 'https://user2.example.com' );
2023-04-26 17:22:44 +02:00
$pre_http_request = new MockAction();
add_filter( 'pre_http_request', array( $pre_http_request, 'filter' ), 10, 3 );
foreach ( $followers as $follower ) {
\Activitypub\Collection\Followers::add_follower( 1, $follower );
}
2023-06-19 11:05:01 +02:00
foreach ( $followers2 as $follower ) {
\Activitypub\Collection\Followers::add_follower( 2, $follower );
}
2023-04-26 17:22:44 +02:00
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'https://example.com/author/jon' );
$this->assertEquals( 'https://example.com/author/jon', $follower->get_url() );
2023-04-26 17:22:44 +02:00
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'http://sally.example.org' );
$this->assertNull( $follower );
2023-06-19 11:05:01 +02:00
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'https://user2.example.com' );
$this->assertNull( $follower );
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'https://example.com/author/jon' );
$this->assertEquals( 'https://example.com/author/jon', $follower->get_url() );
2023-06-19 11:05:01 +02:00
$follower2 = \Activitypub\Collection\Followers::get_follower( 2, 'https://user2.example.com' );
$this->assertEquals( 'https://user2.example.com', $follower2->get_url() );
2023-06-19 11:05:01 +02:00
}
public function test_delete_follower() {
2023-06-19 11:10:15 +02:00
$followers = array(
'https://example.com/author/jon',
'https://example.org/author/doe',
);
2023-06-19 11:05:01 +02:00
$followers2 = array( 'https://user2.example.com' );
$pre_http_request = new MockAction();
add_filter( 'pre_http_request', array( $pre_http_request, 'filter' ), 10, 3 );
foreach ( $followers as $follower ) {
\Activitypub\Collection\Followers::add_follower( 1, $follower );
\Activitypub\Collection\Followers::add_follower( 1, $follower );
\Activitypub\Collection\Followers::add_follower( 1, $follower );
\Activitypub\Collection\Followers::add_follower( 2, $follower );
}
foreach ( $followers2 as $follower2 ) {
\Activitypub\Collection\Followers::add_follower( 2, $follower2 );
}
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'https://example.com/author/jon' );
$this->assertEquals( 'https://example.com/author/jon', $follower->get_url() );
2023-06-19 11:05:01 +02:00
2023-06-19 11:10:15 +02:00
$followers = \Activitypub\Collection\Followers::get_followers( 1 );
$this->assertEquals( 2, count( $followers ) );
2023-06-19 11:05:01 +02:00
$follower2 = \Activitypub\Collection\Followers::get_follower( 2, 'https://example.com/author/jon' );
$this->assertEquals( 'https://example.com/author/jon', $follower2->get_url() );
2023-06-19 11:05:01 +02:00
\Activitypub\Collection\Followers::remove_follower( 1, 'https://example.com/author/jon' );
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'https://example.com/author/jon' );
$this->assertNull( $follower );
$follower2 = \Activitypub\Collection\Followers::get_follower( 2, 'https://example.com/author/jon' );
$this->assertEquals( 'https://example.com/author/jon', $follower2->get_url() );
2023-06-19 11:10:15 +02:00
$followers = \Activitypub\Collection\Followers::get_followers( 1 );
$this->assertEquals( 1, count( $followers ) );
2023-04-26 17:22:44 +02:00
}
public function test_get_outdated_followers() {
$followers = array( 'https://example.com/author/jon', 'https://example.org/author/doe', 'http://sally.example.org' );
$pre_http_request = new MockAction();
add_filter( 'pre_http_request', array( $pre_http_request, 'filter' ), 10, 3 );
foreach ( $followers as $follower ) {
\Activitypub\Collection\Followers::add_follower( 1, $follower );
}
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'https://example.com/author/jon' );
2023-06-16 11:40:26 +02:00
global $wpdb;
//eg. time one year ago..
$time = time() - 804800;
$mysql_time_format = 'Y-m-d H:i:s';
$post_modified = gmdate( $mysql_time_format, $time );
$post_modified_gmt = gmdate( $mysql_time_format, ( $time + get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) );
$post_id = $follower->get__id();
2023-06-16 11:40:26 +02:00
$wpdb->query(
$wpdb->prepare(
"UPDATE $wpdb->posts SET post_modified = %s, post_modified_gmt = %s WHERE ID = %s",
array(
$post_modified,
$post_modified_gmt,
$post_id,
)
)
);
clean_post_cache( $post_id );
$followers = \Activitypub\Collection\Followers::get_outdated_followers();
$this->assertEquals( 1, count( $followers ) );
$this->assertEquals( 'https://example.com/author/jon', $followers[0] );
}
public function test_get_faulty_followers() {
$followers = array( 'https://example.com/author/jon', 'https://example.org/author/doe', 'http://sally.example.org' );
$pre_http_request = new MockAction();
add_filter( 'pre_http_request', array( $pre_http_request, 'filter' ), 10, 3 );
foreach ( $followers as $follower ) {
\Activitypub\Collection\Followers::add_follower( 1, $follower );
}
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'http://sally.example.org' );
for ( $i = 1; $i <= 15; $i++ ) {
2023-07-06 14:42:18 +02:00
add_post_meta( $follower->get__id(), 'activitypub_errors', 'error ' . $i );
}
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'http://sally.example.org' );
$count = $follower->count_errors();
$followers = \Activitypub\Collection\Followers::get_faulty_followers();
$this->assertEquals( 1, count( $followers ) );
$this->assertEquals( 'http://sally.example.org', $followers[0] );
$follower->reset_errors();
$follower = \Activitypub\Collection\Followers::get_follower( 1, 'http://sally.example.org' );
$count = $follower->count_errors();
$followers = \Activitypub\Collection\Followers::get_faulty_followers();
$this->assertEquals( 0, count( $followers ) );
}
2023-04-25 09:31:28 +02:00
public static function http_request_host_is_external( $in, $host ) {
if ( in_array( $host, array( 'example.com', 'example.org' ), true ) ) {
return true;
}
return $in;
}
public static function http_request_args( $args, $url ) {
if ( in_array( wp_parse_url( $url, PHP_URL_HOST ), array( 'example.com', 'example.org' ), true ) ) {
$args['reject_unsafe_urls'] = false;
}
return $args;
}
public static function pre_http_request( $preempt, $request, $url ) {
return array(
'headers' => array(
'content-type' => 'text/json',
),
'body' => '',
'response' => array(
'code' => 202,
),
);
}
public static function http_response( $response, $args, $url ) {
return $response;
}
public static function pre_get_remote_metadata_by_actor( $pre, $actor ) {
if ( isset( self::$users[ $actor ] ) ) {
return self::$users[ $actor ];
}
foreach ( self::$users as $username => $data ) {
if ( $data['url'] === $actor ) {
return $data;
}
}
return $pre;
}
2019-02-19 22:43:14 +01:00
}