123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- # Copyright (C) 2019 Alex Schroeder <alex@gnu.org>
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- require './t/test.pl';
- package OddMuse;
- use Test::More tests => 21;
- use LWP::UserAgent;
- use XML::LibXML;
- add_module('webmention.pl');
- AppendStringToFile($ConfigFile, <<'EOT');
- $CommentsPrefix = 'Comments_on_';
- $FooterNote = '<p>Author: <a rel="author" href="https://alexschroeder.ch/">Alex Schroeder</a></p>';
- EOT
- $CommentsPrefix = 'Comments_on_';
- like(get_page(''), qr/webmention/,
- "Webmention link for default URL");
- like(get_page('HomePage'), qr/webmention/,
- "Webmention link for homepage");
- unlike(get_page('Comments_on_HomePage'), qr/webmention/,
- "No webmention link for comment pages");
- unlike(get_page('action=history id=HomePage'), qr/webmention/,
- "No webmention link for history action");
- unlike(get_page('action=browse id=HomePage revision=1'), qr/webmention/,
- "No webmention link for browse action with revision");
- $UsePathInfo = 1;
- # This test is is going to use two servers in addition to this script, but in
- # actual fact we are all going to share the data directory.
- test_page(update_page('Target', 'This is the test page.'), 'This is the test page');
- # Server 1 is going to be the webmention server.
- start_server();
- # Check whether the child is up and running
- my $ua = LWP::UserAgent->new;
- my $response = $ua->get("$ScriptName?action=version");
- ok($response->is_success, "There is a wiki running at $ScriptName");
- like($response->decoded_content, qr/\bwebmention\.pl/, "The server has the webmention extension installed");
- # Now that we have the webmention server running, we need to get the URL of the
- # test page, including its port.
- my $target_url = ScriptUrl('Target');
- # Verify that the target exists via external request
- $response = $ua->get($target_url);
- ok($response->is_success, "Target URL response");
- like($response->decoded_content, qr/This is the test page/, "Target URL decoded");
- # Create the Source page before starting the next server (so that it knows about
- # the new page)
- test_page(update_page('Source', "Link to $target_url"), 'Link to');
- # Server 2 is going to be the source server.
- start_server(2);
- # Check whether the child is up and running (with a new $ScriptName!)
- $response = $ua->get("$ScriptName?action=version");
- ok($response->is_success, "There is a wiki running at $ScriptName");
- # New script name means we can now get the source_url.
- my $source_url = ScriptUrl('Source');
- # Verify that the source exists via external request
- $response = $ua->get($source_url);
- ok($response->is_success, "Source URL response");
- like($response->decoded_content, qr/Link to/, "Source URL decoded");
- like($response->decoded_content, qr/$target_url/, "Source page links to Target page");
- # Find the Webmention URL
- $response = $ua->get($target_url);
- ok($response->is_success, "Target URL response");
- like($response->decoded_content, qr/rel="webmention"/, "Target page has webmention link");
- # Parse target page
- my $parser = XML::LibXML->new(recover => 2);
- my $dom = $parser->load_html(string => $response->decoded_content);
- my $webmention = $dom->findvalue('//link[@rel="webmention"]/@href');
- $response = $ua->post($webmention, { source => $source_url, target => $target_url });
- ok($response->is_success, 'Got webmention response: ' . $response->message);
- $page = get_page('Comments_on_Target');
- test_page($page, 'Webmention:', $source_url);
- xpath_test($page, '//a[@class="url https outside"][@href="https://alexschroeder.ch/"][text()="Alex Schroeder"]');
|