Files
oddmuse/t/weblog-3.t
Aleks-Daniel Jakimenko c4671a8909 Removing clear_pages() from the beginning of tests (part 1)
This script was used:
perl -0pi -e 's/(use Test[^\n]+)\n+clear_pages\(\);[^\n]*\n+/$1\n\n/' *.t
2015-07-05 03:28:46 +03:00

158 lines
5.1 KiB
Perl

# Copyright (C) 2011 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 => 45;
add_module('weblog-3.pl');
update_page('This_paragraph', 'bla');
update_page('link', 'bla');
update_page('First_Item', 'bla');
update_page('Second_Item', 'bla');
# default empty homepage defaults to journal
test_page(update_page('2012-12-31_Foo_Baz', 'bla'), 'bla');
xpath_test(get_page('HomePage'),
'//h1/a[text()="2012-12-31 Foo Baz"]');
# update HomePage with some links for the goto-bar
my $text = <<EOT;
This is not a list.
* [[This paragraph]] did not start with a list.
* This does not start with a [[link]].
* [[First Item]] in the goto-bar.
** [[Second Item]] in the goto-bar.
EOT
# check goto-bar
$page = update_page('HomePage', $text);
xpath_test($page,
'//ul/li/a[text()="This paragraph"]',
'//ul/li/a[text()="link"]',
'//ul/li/a[text()="First Item"]',
'//ul/li/a[text()="Second Item"]',
'//span[@class="gotobar bar"]/a[text()="HomePage"]',
'//span[@class="gotobar bar"]/a[text()="RecentChanges"]',
'//span[@class="gotobar bar"]/a[text()="New"]',
'//span[@class="gotobar bar"]/a[text()="First Item"]',
'//span[@class="gotobar bar"]/a[text()="Second Item"]');
xpath_test_negative($page,
'//span[@class="gotobar bar"]/a[text()="This paragraph"]',
'//span[@class="gotobar bar"]/a[text()="link"]');
xpath_test($page,
'//a[text()="HomePage"]/following-sibling::*[1][text()="RecentChanges"]',
'//a[text()="RecentChanges"]/following-sibling::*[1][text()="First Item"]',
'//a[text()="First Item"]/following-sibling::*[1][text()="Second Item"]',
'//a[text()="Second Item"]/following-sibling::*[1][text()="New"]');
# Create category pagse
update_page('Foo', 'bla');
update_page('Bar', 'bla');
# don't create 'Quux'
$text = <<EOT;
This is not a list.
* [[This paragraph]] did not start with a list.
* This does not start with a [[link]].
* [[Foo]] in the goto-bar.
** [[Bar]] in the goto-bar.
* [[Quux]] in the goto-bar bit does not exist.
EOT
# Categories page
$page = update_page('Categories', $text);
xpath_test($page,
'//ul/li/a[text()="This paragraph"]',
'//ul/li/a[text()="link"]',
'//ul/li/a[text()="Foo"]',
'//ul/li/a[text()="Bar"]',
'//ul/li/a[@title="Click to edit this page"]');
xpath_test_negative($page,
'//span[@class="gotobar bar"]/a[text()="This paragraph"]',
'//span[@class="gotobar bar"]/a[text()="link"]');
# New page lists categories, even if the page does not exist
$page = get_page('action=new');
xpath_test($page,
'//a[text()="Categories"]',
'//a[text()="First Item"]',
'//a[text()="Second Item"]',
'//a[text()="Quux"]');
xpath_test_negative($page,
'//a[text()="This paragraph"]',
'//a[text()="link"]');
# current category is added to the list
$page = get_page('2012-12-31_Foo_Baz');
xpath_test($page,
'//a[text()="HomePage"]/following-sibling::*[1][text()="RecentChanges"]',
'//a[text()="RecentChanges"]/following-sibling::*[1][text()="First Item"]',
'//a[text()="First Item"]/following-sibling::*[1][text()="Second Item"]',
'//a[text()="Second Item"]/following-sibling::*[1][text()="Foo"]',
'//a[text()="Foo"]/following-sibling::*[1][text()="Baz"]',
'//a[text()="Baz"]/following-sibling::*[1][text()="New"]');
# links added from the HomePage are ordinary links
# category links are ordinary links (because the code knows they are categories)
# dynamic category links from the page name have stuff added (to make sure the code knows)
xpath_test($page,
'//a[text()="First Item"][@href="http://localhost/wiki.pl/First_Item"]',
'//a[text()="Foo"][@href="http://localhost/wiki.pl/Foo"]',
'//a[text()="Baz"][@href="http://localhost/wiki.pl?tag=1;action=browse;id=Baz"]');
# Foo has existing content, thus no journal
$page = get_page('Foo');
xpath_test($page, '//p[text()="bla"]');
xpath_test_negative($page, '//h1/a[text()="2012-12-31 Foo Baz"]');
# Quux does not have existing content and defaults to a journal
# because it is a known category (but there are no matching pages)
$page = get_page('Quux');
xpath_test($page, '//p[text()="Matching pages:"]');
# Baz has no existing content and is no known category, thus without
# the tag parameter, it doesn't exists
$page = get_page('Baz');
xpath_test($page, '//p[contains(text(),"This page does not exist")]');
xpath_test_negative($page, '//h1/a[text()="2012-12-31 Foo Baz"]');
# Baz with the tag parameter defaults to the journal.
$page = get_page('tag=1 action=browse id=Baz');
xpath_test($page, '//h1/a[text()="2012-12-31 Foo Baz"]');