Files
oddmuse/t/diff.t
Alex Schroeder a5f5607667 Format the summaries of changes in a diff
Make sure entries consisting of nothing but whitespace are also
skipped.
2019-01-18 21:09:07 +01:00

79 lines
4.5 KiB
Perl
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Copyright (C) 2006-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 => 30;
use utf8;
# encoding stuff
update_page('dash', "- en dash\n");
update_page('dash', "- en dash\n— em “dash”\n");
test_page(get_page('action=browse diff=1 id=dash'),
'<div class="new"><p>&gt; — em “dash”</p></div>',
'- en dash — em “dash”');
# Highlighting differences
update_page('xah', "When we judge people in society, often, we can see people's true nature not by the official defenses and behaviors, but by looking at the statistics (past records) of their behavior and the circumstances it happens.\n"
. "For example, when we look at the leader in human history. Great many of them have caused thousands and millions of intentional deaths. Some of these leaders are hated by many, yet great many of them are adored and admired and respected... (ok, i'm digressing...)\n");
update_page('xah', "When we judge people in society, often, we can see people's true nature not by the official defenses and behaviors, but by looking at some subtleties, and also the statistics (past records) of their behavior and the circumstances they were in.\n"
. "For example, when we look at leaders in history. Great many of them have caused thousands and millions of intentional deaths. Some of these leaders are hated by many, yet great many of them are adored and admired and respected... (ok, i'm digressing...)\n");
test_page(get_page('action=browse diff=1 id=xah'),
'<strong class="changes">it happens</strong>',
'<strong class="changes">the leader</strong>',
'<strong class="changes">human</strong>',
'<strong class="changes">some subtleties, and also</strong>',
'<strong class="changes">they were in</strong>',
'<strong class="changes">leaders</strong>',
);
update_page('code', 'This is the & character.');
update_page('code', 'This is the <code>&</code> character.');
test_page(get_page('action=browse diff=1 id=code'),
'<strong class="changes">&lt;code&gt;</strong>&amp;<strong class="changes">&lt;/code&gt;</strong>');
# make sure revision and diffrevision work correctly
update_page('david', 'this is the first revision', 'first revision');
update_page('david', 'this is the second revision', 'second revision');
update_page('david', 'this is the third revision', 'third revision');
update_page('david', 'this is the fourth revision', ' ');
update_page('david', 'this is the fifth revision', '');
# first make sure the history page shows the appropriate labels and
# summaries
test_page(get_page('action=history id=david'),
'Revision 1', 'first revision',
'Revision 2', 'second revision',
'Revision 3', 'third revision',
'Revision 4');
# using diffrevision=1 will make sure that the third revision is not shown
xpath_test(get_page('action=browse diff=1 id=david revision=2 diffrevision=1'),
'//p[@class="summary"][text()="Summary: second revision"]',
'//div[@class="old"]/p/strong[text()="first"]',
'//div[@class="new"]/p/strong[text()="second"]',
'//div[@class="content browse"]/p[text()="this is the second revision"]');
# check with cache = 0
xpath_test(get_page('action=browse diff=1 id=david revision=2 diffrevision=1 cache=0'),
'//p[@class="summary"][text()="Summary: second revision"]',
'//div[@class="old"]/p/strong[text()="first"]',
'//div[@class="new"]/p/strong[text()="second"]',
'//div[@class="content browse"]/p[text()="this is the second revision"]');
# check summaries
$page = get_page('action=browse diff=1 id=david revision=5 diffrevision=1 cache=0');
xpath_test($page,
'//div[@class="summary"]/ul/li[text()="second revision"]',
'//div[@class="summary"]/ul/li[text()="third revision"]',
'//div[@class="summary"]/ul[count(li)=2]',
'//div[@class="old"]/p/strong[text()="first"]',
'//div[@class="new"]/p/strong[text()="fifth"]',
'//div[@class="content browse"]/p[text()="this is the fifth revision"]');