diff options
Diffstat (limited to 'test/packaging/rpm/internationalization.py')
-rw-r--r-- | test/packaging/rpm/internationalization.py | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/test/packaging/rpm/internationalization.py b/test/packaging/rpm/internationalization.py index e9fcc12..4b75de4 100644 --- a/test/packaging/rpm/internationalization.py +++ b/test/packaging/rpm/internationalization.py @@ -32,10 +32,10 @@ These are x-rpm-Group, description, summary and the lang_xx file tag. """ import os +import glob import TestSCons -machine = TestSCons.machine _python_ = TestSCons._python_ test = TestSCons.TestSCons() @@ -95,29 +95,30 @@ env.Alias ( 'install', prog ) test.run(arguments='', stderr = None) src_rpm = 'foo-1.2.3-0.src.rpm' -machine_rpm = 'foo-1.2.3-0.%s.rpm' % machine +machine_rpm = 'foo-1.2.3-0.*.rpm' test.must_exist( src_rpm ) -test.must_exist( machine_rpm ) +test.must_exist_one_of( [machine_rpm] ) test.must_not_exist( 'bin/main' ) +machine_rpm_path = glob.glob(machine_rpm)[0].lstrip('./') cmd = 'rpm -qp --queryformat \'%%{GROUP}-%%{SUMMARY}-%%{DESCRIPTION}\' %s' os.environ['LANGUAGE'] = 'de' -out = os.popen( cmd % test.workpath(machine_rpm) ).read() +out = os.popen( cmd % test.workpath(machine_rpm_path) ).read() test.fail_test( out != 'Applikation/büro-hallo-das sollte wirklich lang sein' ) os.environ['LANGUAGE'] = 'fr' -out = os.popen( cmd % test.workpath(machine_rpm) ).read() +out = os.popen( cmd % test.workpath(machine_rpm_path) ).read() test.fail_test( out != 'Application/bureau-bonjour-ceci devrait être vraiment long' ) os.environ['LANGUAGE'] = 'en' -out = os.popen( cmd % test.workpath(machine_rpm) ).read() +out = os.popen( cmd % test.workpath(machine_rpm_path) ).read() test.fail_test( out != 'Application/office-hello-this should be really long' ) os.environ['LC_ALL'] = 'ae' -out = os.popen( cmd % test.workpath(machine_rpm) ).read() +out = os.popen( cmd % test.workpath(machine_rpm_path) ).read() test.fail_test( out != 'Application/office-hello-this should be really long' ) # @@ -176,7 +177,7 @@ env.Alias ( 'install', [ prog, man_pages ] ) test.run(arguments='--install-sandbox=blubb install', stderr = None) test.must_exist( src_rpm ) -test.must_exist( machine_rpm ) +test.must_exist_one_of( [machine_rpm] ) test.pass_test() |