ban-mixed-scripts.t 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright (C) 2018 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 => 4;
  17. use utf8; # tests contain UTF-8 characters and it matters
  18. add_module('ban-mixed-scripts.pl');
  19. # ordinary page editing still works
  20. test_page(update_page('Test', 'This is a test'),
  21. 'This is a test');
  22. test_page(update_page('Test', '🙇🏽‍ 本当にごめんね – I am really sorry.'),
  23. 'I am really sorry');
  24. # mixed scripts are not ok
  25. test_page(update_page('Test', "It's diffіcult to find knowledgeable people on this topic, but youu sound like you know wgat you're taⅼkіng аboսt!"),
  26. 'I am really sorry');
  27. # error message is shown
  28. test_page($redirect, "Mixed scripts");