diff options
Diffstat (limited to 'mnv/src/testdir/test_gettext_make.mnv')
| -rw-r--r-- | mnv/src/testdir/test_gettext_make.mnv | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/mnv/src/testdir/test_gettext_make.mnv b/mnv/src/testdir/test_gettext_make.mnv new file mode 100644 index 0000000000..291ae5adab --- /dev/null +++ b/mnv/src/testdir/test_gettext_make.mnv @@ -0,0 +1,72 @@ +CheckNotMac +CheckFeature gettext + +" Test for package translation Makefile +func Test_gettext_makefile() + cd ../po + if has('win32') + if getenv('GETTEXT_PATH') == v:null + throw 'Skipped: %GETTEXT_PATH% is not set.' + endif + call system('nmake.exe -f Make_mvc.mak "MNVPROG=' .. getenv('MNVPROG') .. + \ '" "GETTEXT_PATH=' .. getenv('GETTEXT_PATH') .. + \ '" PLUGPACKAGE=test_gettext + \ "PO_PLUG_INPUTLIST=..\testdir\test_gettext_makefile_in1.mnv + \ ..\testdir\test_gettext_makefile_in2.mnv + \ ..\testdir\test_gettext_makefile_in3.mnv + \ ..\testdir\test_gettext_makefile_in4.mnv" test_gettext.pot') + else +" Will it work on macOS? + CheckExecutable xgettext + call system("make -f Makefile PLUGPACKAGE=test_gettext + \ PO_PLUG_INPUTLIST=\"../testdir/test_gettext_makefile_in1.mnv + \ ../testdir/test_gettext_makefile_in2.mnv + \ ../testdir/test_gettext_makefile_in3.mnv + \ ../testdir/test_gettext_makefile_in4.mnv\" test_gettext.pot") + endif + if v:shell_error != 0 + throw 'Fail to create test_gettext.pot. Error code: ' .. v:shell_error + endif + let expected =<< trim END + # SOME DESCRIPTIVE TITLE. + # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER + # This file is distributed under the same license as the test_gettext package. + # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. + # + #, fuzzy + msgid "" + msgstr "" + "Project-Id-Version: test_gettext\n" + "Report-Msgid-Bugs-To: \n" + "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" + "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" + "Language-Team: LANGUAGE <LL@li.org>\n" + "Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=CHARSET\n" + "Content-Transfer-Encoding: 8bit\n" + + #: ../testdir/test_gettext_makefile_in1.mnv:4 ../testdir/test_gettext_makefile_in1.mnv:6 + #: ../testdir/test_gettext_makefile_in2.mnv:5 ../testdir/test_gettext_makefile_in4.mnv:4 + msgid "This is a test" + msgstr "" + + #: ../testdir/test_gettext_makefile_in1.mnv:5 + msgid "This is another test" + msgstr "" + + #: ../testdir/test_gettext_makefile_in2.mnv:4 + msgid "This is a test from the second file" + msgstr "" + + #: ../testdir/test_gettext_makefile_in4.mnv:5 + msgid "This is a fourth test" + msgstr "" + END + let potfile = filter(readfile("test_gettext.pot"), 'v:val !~ "POT-Creation-Date"') + call assert_equal(expected, potfile) + call delete('test_gettext.pot') + cd - +endfunc + +" mnv: shiftwidth=2 sts=2 expandtab |
