summaryrefslogtreecommitdiffstats
path: root/t/cfg-split.t
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 11:26:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 11:26:17 +0000
commit5df6c2aefebe3d2abcc939a88e294876d59f03ca (patch)
tree63fb332a0f21ddb91cb789c80cf64e134d373463 /t/cfg-split.t
parentInitial commit. (diff)
downloadpo4a-5df6c2aefebe3d2abcc939a88e294876d59f03ca.tar.xz
po4a-5df6c2aefebe3d2abcc939a88e294876d59f03ca.zip
Adding upstream version 0.72.upstream/0.72
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 't/cfg-split.t')
-rw-r--r--t/cfg-split.t108
1 files changed, 108 insertions, 0 deletions
diff --git a/t/cfg-split.t b/t/cfg-split.t
new file mode 100644
index 0000000..a3be132
--- /dev/null
+++ b/t/cfg-split.t
@@ -0,0 +1,108 @@
+#! /usr/bin/perl
+# config file tester.
+
+#########################
+
+use strict;
+use warnings;
+
+use lib q(t);
+use Testhelper;
+
+my @tests;
+push @tests, {
+ 'doc' => 'Split settings, no pot no po',
+ 'po4a.conf' => 'cfg/split-nopotpo/po4a.conf',
+ 'closed_path' => 'cfg/*/', # Do not use or modify the other tests
+ 'expected_files' =>
+ 'first.man.de.po first.man.fr.po first.man.pot second.man.de.po second.man.fr.po second.man.pot',
+ },
+ {
+ 'doc' => 'Split settings, no po',
+ 'po4a.conf' => 'cfg/split-nopo/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' =>
+ 'first.man.de.po first.man.fr.po first.man.pot second.man.de.po second.man.fr.po second.man.pot',
+
+ },
+ {
+ 'doc' => 'Split settings, no po, --no-update',
+ 'po4a.conf' => 'cfg/split-nopo/po4a.conf',
+ 'options' => ' --no-update',
+ 'closed_path' => 'cfg/*/',
+ 'expected_outfile' => 'cfg/split-nopo/_output-noupdate',
+ 'expected_files' => '',
+
+ },
+ {
+ 'doc' => 'Split settings, with translation to create',
+ 'po4a.conf' => 'cfg/split/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.de.po first.man.fr first.man.fr.po first.man.pot '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+
+ },
+ {
+ 'doc' => 'Split settings, grouping several files into a given POT file',
+ 'po4a.conf' => 'cfg/split-multimaster/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.fr third.man.de third.man.fr '
+ . 'Documentation.pot Documentation.de.po Documentation.fr.po '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+ },
+ {
+ 'doc' => 'Split settings, translation uptodate',
+ 'po4a.conf' => 'cfg/split-uptodate/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.de.po first.man.fr first.man.fr.po first.man.pot '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+
+ },
+ {
+ 'doc' => 'Split settings, translation already fuzzy',
+ 'po4a.conf' => 'cfg/split-fuzzy/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.de.po first.man.fr first.man.fr.po first.man.pot '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+
+ },
+ {
+ 'doc' => 'Split settings, translation fuzzied during the update',
+ 'po4a.conf' => 'cfg/split-fuzzied/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.de.po first.man.fr first.man.fr.po first.man.pot '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+
+ },
+ {
+ 'doc' => 'Split settings, translation would be fuzzied if --no-update were not given',
+ 'po4a.conf' => 'cfg/split-fuzzied-noup/po4a.conf',
+ 'options' => '--no-update',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.fr second.man.de second.man.fr',
+
+ },
+ {
+ 'doc' => 'Split settings, with a new string appearing in the master doc',
+ 'po4a.conf' => 'cfg/split-newstr/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.de.po first.man.fr first.man.fr.po first.man.pot '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+ },
+ {
+ 'doc' => 'Split settings, with a separate pot_in file',
+ 'po4a.conf' => 'cfg/split-potin/po4a.conf',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'first.man.de first.man.de.po first.man.fr first.man.fr.po first.man.pot '
+ . 'second.man.de second.man.de.po second.man.fr second.man.fr.po second.man.pot',
+ },
+ {
+ 'doc' => 'Split settings, with an YAML master doc, translation uptodate',
+ 'po4a.conf' => 'cfg/split-yaml/po4a.cfg',
+ 'closed_path' => 'cfg/*/',
+ 'expected_files' => 'content.pot content.vi.po _index.vi.md i18n.pot i18n.vi.po vi.yaml'
+ };
+
+run_all_tests(@tests);
+
+0;