123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- # 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"]');
|