From Fedora Project Wiki
(add to 'langpacks' package test case category (this is more a langpacks test than a dnf one, in fact, but leave it in dnf category in case dnf stuffs up weak deps)) |
m (Adamwill moved page QA:Testcase dnf langpacks packages to QA:Testcase langpacks packages: ok, not really a 'dnf' test, just a langpacks package test. i swear to god this is the last time) |
||
(No difference)
|
Revision as of 19:24, 11 April 2016
Description
This test case tests whether RPM weak dependency-based langpacks can be queried, installed and removed, and whether they install the appropriate packages. For testing the feature rather than the availability of support for a given language, it is recommended to use a common locale, e.g. 'fr'. The results section assumes the use of 'fr'.
How to test
- To list the already installed language support, run the following command:
dnf list installed "langpacks*"
- To check if any language support is available for another language, run the following command:
dnf list available "langpacks*"
- To list what packages will get installed for any language, run the following command:
dnf repoquery --whatsupplements langpacks-<locale_code>
- To add new language support, run the following command:
dnf install langpacks-<locale_code>
- To remove installed language support, run the following command:
dnf remove langpacks-<locale_code>
Expected Results
dnf list installed "langpacks*"
should list any installed langpacksdnf list available "langpacks*"
should list many results for different localesdnf repoquery --whatsupplements langpacks-fr
should show a list of the packages that may be installed to provide French support for various applications and componentsdnf install langpacks-fr
should install all packages that provide French support for installed applications and components (but not packages relating to non-installed applications and components). For e.g. if Libreoffice is installed,libreoffice-langpack-fr
should be installed, but not if Libreoffice is not installeddnf remove langpacks-<locale_code>
should removelangpacks-fr
and all the support packages that were installed along with it