preview.t 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Copyright (C) 2015 Alex Schroeder <alex@gnu.org>
  2. #
  3. # This program is free software; you can redistribute it and/or modify it under
  4. # the terms of the GNU General Public License as published by the Free Software
  5. # Foundation; either version 3 of the License, or (at your option) any later
  6. # version.
  7. #
  8. # This program is distributed in the hope that it will be useful, but WITHOUT
  9. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  10. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License along with
  13. # this program. If not, see <http://www.gnu.org/licenses/>.
  14. require './t/test.pl';
  15. package OddMuse;
  16. use Test::More tests => 6;
  17. use utf8;
  18. # This is a page whose HTML will change when we install the Markup Extension.
  19. test_page(update_page('Test', 'This is *bold*.'), '\*bold\*');
  20. # This is a page whose HTML will not change.
  21. update_page('Boring', 'This is just text.');
  22. # New markup module installed but HTML returned is cached.
  23. add_module('markup.pl');
  24. test_page(get_page('Test'), '\*bold\*');
  25. # We can get the new HTML using cache=0.
  26. test_page(get_page('Test?cache=0'), '<b>bold</b>');
  27. # Install Preview Extension.
  28. add_module('preview.pl');
  29. test_page(get_page('action=admin'), 'action=preview');
  30. # See whether Test is listed and Boring is not.
  31. $page = get_page('action=preview');
  32. test_page($page, 'Test');
  33. test_page_negative($page, 'Boring');