summaryrefslogtreecommitdiff
path: root/t/po.t
blob: 8608855d4cc7b4477410c2384261f95441f575e4 (plain)
  1. #!/usr/bin/perl
  2. # -*- cperl-indent-level: 8; -*-
  3. use warnings;
  4. use strict;
  5. use File::Temp qw{tempdir};
  6. BEGIN {
  7. unless (eval { require Locale::Po4a::Chooser }) {
  8. eval q{
  9. use Test::More skip_all => "Locale::Po4a::Chooser::new is not available"
  10. }
  11. }
  12. unless (eval { require Locale::Po4a::Po }) {
  13. eval q{
  14. use Test::More skip_all => "Locale::Po4a::Po::new is not available"
  15. }
  16. }
  17. }
  18. use Test::More tests => 45;
  19. BEGIN { use_ok("IkiWiki"); }
  20. my $msgprefix;
  21. my $dir = tempdir("ikiwiki-test-po.XXXXXXXXXX",
  22. DIR => File::Spec->tmpdir,
  23. CLEANUP => 1);
  24. ### Init
  25. %config=IkiWiki::defaultconfig();
  26. $config{srcdir} = "$dir/src";
  27. $config{destdir} = "$dir/dst";
  28. $config{discussion} = 0;
  29. $config{po_master_language} = { code => 'en',
  30. name => 'English'
  31. };
  32. $config{po_slave_languages} = {
  33. es => 'Castellano',
  34. fr => "Français"
  35. };
  36. $config{po_translatable_pages}='index or test1 or test2 or translatable';
  37. $config{po_link_to}='negotiated';
  38. IkiWiki::loadplugins();
  39. IkiWiki::checkconfig();
  40. ok(IkiWiki::loadplugin('po'), "po plugin loaded");
  41. ### seed %pagesources and %pagecase
  42. $pagesources{'index'}='index.mdwn';
  43. $pagesources{'index.fr'}='index.fr.po';
  44. $pagesources{'index.es'}='index.es.po';
  45. $pagesources{'test1'}='test1.mdwn';
  46. $pagesources{'test1.fr'}='test1.fr.po';
  47. $pagesources{'test2'}='test2.mdwn';
  48. $pagesources{'test2.es'}='test2.es.po';
  49. $pagesources{'test2.fr'}='test2.fr.po';
  50. $pagesources{'test3'}='test3.mdwn';
  51. $pagesources{'test3.es'}='test3.es.mdwn';
  52. $pagesources{'translatable'}='translatable.mdwn';
  53. $pagesources{'translatable.fr'}='translatable.fr.po';
  54. $pagesources{'translatable.es'}='translatable.es.po';
  55. $pagesources{'nontranslatable'}='nontranslatable.mdwn';
  56. foreach my $page (keys %pagesources) {
  57. $IkiWiki::pagecase{lc $page}=$page;
  58. }
  59. ### istranslatable/istranslation
  60. # we run these tests twice because memoization attempts made them
  61. # succeed once every two tries...
  62. ok(IkiWiki::Plugin::po::istranslatable('index'), "index is translatable");
  63. ok(IkiWiki::Plugin::po::istranslatable('index'), "index is translatable");
  64. ok(! IkiWiki::Plugin::po::istranslatable('index.fr'), "index.fr is not translatable");
  65. ok(! IkiWiki::Plugin::po::istranslatable('index.fr'), "index.fr is not translatable");
  66. ok(! IkiWiki::Plugin::po::istranslatable('index.es'), "index.es is not translatable");
  67. ok(! IkiWiki::Plugin::po::istranslatable('index.es'), "index.es is not translatable");
  68. ok(! IkiWiki::Plugin::po::istranslation('index'), "index is not a translation");
  69. ok(! IkiWiki::Plugin::po::istranslation('index'), "index is not a translation");
  70. ok(IkiWiki::Plugin::po::istranslation('index.fr'), "index.fr is a translation");
  71. ok(IkiWiki::Plugin::po::istranslation('index.fr'), "index.fr is a translation");
  72. ok(IkiWiki::Plugin::po::istranslation('index.es'), "index.es is a translation");
  73. ok(IkiWiki::Plugin::po::istranslation('index.es'), "index.es is a translation");
  74. ok(IkiWiki::Plugin::po::istranslatable('test2'), "test2 is translatable");
  75. ok(IkiWiki::Plugin::po::istranslatable('test2'), "test2 is translatable");
  76. ok(! IkiWiki::Plugin::po::istranslation('test2'), "test2 is not a translation");
  77. ok(! IkiWiki::Plugin::po::istranslation('test2'), "test2 is not a translation");
  78. ok(! IkiWiki::Plugin::po::istranslatable('test3'), "test3 is not translatable");
  79. ok(! IkiWiki::Plugin::po::istranslatable('test3'), "test3 is not translatable");
  80. ok(! IkiWiki::Plugin::po::istranslation('test3'), "test3 is not a translation");
  81. ok(! IkiWiki::Plugin::po::istranslation('test3'), "test3 is not a translation");
  82. ### links
  83. writefile('index.mdwn', $config{srcdir}, '[[translatable]] [[nontranslatable]]');
  84. writefile('translatable.mdwn', $config{srcdir}, '[[nontranslatable]]');
  85. writefile('nontranslatable.mdwn', $config{srcdir}, '[[/]] [[translatable]]');
  86. map IkiWiki::Plugin::po::refreshpot(srcfile($_)), ('index.mdwn', 'translatable.mdwn');
  87. require IkiWiki::Render;
  88. foreach my $masterfile_rel ('index.mdwn', 'translatable.mdwn') {
  89. my $masterfile=srcfile($masterfile_rel);
  90. my @pofiles=IkiWiki::Plugin::po::pofiles($masterfile);
  91. IkiWiki::Plugin::po::refreshpot($masterfile);
  92. IkiWiki::Plugin::po::refreshpofiles($masterfile, @pofiles);
  93. IkiWiki::scan($masterfile_rel);
  94. map IkiWiki::scan(IkiWiki::abs2rel($_, $config{srcdir})), @pofiles;
  95. }
  96. IkiWiki::scan('nontranslatable.mdwn');
  97. use Data::Dumper;
  98. print Dumper(%links);
  99. is_deeply(\@{$links{'index'}}, ['translatable', 'nontranslatable'], 'index');
  100. is_deeply(\@{$links{'index.es'}}, ['translatable.es', 'nontranslatable'], 'index.es');
  101. is_deeply(\@{$links{'index.fr'}}, ['translatable.fr', 'nontranslatable'], 'index.fr');
  102. is_deeply(\@{$links{'translatable'}}, ['nontranslatable'], 'translatable');
  103. is_deeply(\@{$links{'translatable.es'}}, ['nontranslatable'], 'translatable.es');
  104. is_deeply(\@{$links{'translatable.fr'}}, ['nontranslatable'], 'translatable.fr');
  105. is_deeply(\@{$links{'nontranslatable'}}, ['/', 'translatable', 'translatable.fr', 'translatable.es'], 'nontranslatable');
  106. ### targetpage
  107. $config{usedirs}=0;
  108. $msgprefix="targetpage (usedirs=0)";
  109. is(targetpage('test1', 'html'), 'test1.en.html', "$msgprefix test1");
  110. is(targetpage('test1.fr', 'html'), 'test1.fr.html', "$msgprefix test1.fr");
  111. $config{usedirs}=1;
  112. $msgprefix="targetpage (usedirs=1)";
  113. is(targetpage('index', 'html'), 'index.en.html', "$msgprefix index");
  114. is(targetpage('index.fr', 'html'), 'index.fr.html', "$msgprefix index.fr");
  115. is(targetpage('test1', 'html'), 'test1/index.en.html', "$msgprefix test1");
  116. is(targetpage('test1.fr', 'html'), 'test1/index.fr.html', "$msgprefix test1.fr");
  117. is(targetpage('test3', 'html'), 'test3/index.html', "$msgprefix test3 (non-translatable page)");
  118. is(targetpage('test3.es', 'html'), 'test3.es/index.html', "$msgprefix test3.es (non-translatable page)");
  119. ### bestlink
  120. $config{po_link_to}='current';
  121. $msgprefix="bestlink (po_link_to=current)";
  122. is(bestlink('test1.fr', 'test2'), 'test2.fr', "$msgprefix test1.fr -> test2");
  123. is(bestlink('test1.fr', 'test2.es'), 'test2.es', "$msgprefix test1.fr -> test2.es");
  124. $config{po_link_to}='negotiated';
  125. $msgprefix="bestlink (po_link_to=negotiated)";
  126. is(bestlink('test1.fr', 'test2'), 'test2', "$msgprefix test1.fr -> test2");
  127. is(bestlink('test1.fr', 'test2.es'), 'test2.es', "$msgprefix test1.fr -> test2.es");
  128. ### beautify_urlpath
  129. $config{po_link_to}='default';
  130. $msgprefix="beautify_urlpath (po_link_to=default)";
  131. is(IkiWiki::beautify_urlpath('test1/index.en.html'), './test1/index.en.html', "$msgprefix test1/index.en.html");
  132. is(IkiWiki::beautify_urlpath('test1/index.fr.html'), './test1/index.fr.html', "$msgprefix test1/index.fr.html");
  133. $config{po_link_to}='negotiated';
  134. $msgprefix="beautify_urlpath (po_link_to=negotiated)";
  135. is(IkiWiki::beautify_urlpath('test1/index.en.html'), './test1/', "$msgprefix test1/index.en.html");
  136. is(IkiWiki::beautify_urlpath('test1/index.fr.html'), './test1/index.fr.html', "$msgprefix test1/index.fr.html");