From b4a46e24863f3e624dac77e1b4482cc0117c72ba Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Mon, 12 Aug 2024 13:52:43 +0530 Subject: [PATCH] Resolves:RHEL-52504 - Add conditional for RHEL for using hunspell directory Add tmt CI tests --- .fmf/version | 1 + hunspell-sc.spec | 8 ++++++-- plans/hunspell-sc.fmf | 5 +++++ tests/test_dic_availability.fmf | 6 ++++++ tests/test_dic_availability.py | 10 ++++++++++ tests/test_suggest_words.fmf | 6 ++++++ tests/test_suggest_words.py | 9 +++++++++ 7 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 .fmf/version create mode 100644 plans/hunspell-sc.fmf create mode 100644 tests/test_dic_availability.fmf create mode 100644 tests/test_dic_availability.py create mode 100644 tests/test_suggest_words.fmf create mode 100644 tests/test_suggest_words.py diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/hunspell-sc.spec b/hunspell-sc.spec index 145414e..beb2ef4 100644 --- a/hunspell-sc.spec +++ b/hunspell-sc.spec @@ -1,4 +1,4 @@ -%if 0%{?fedora} > 35 +%if 0%{?fedora} >= 36 || 0%{?rhel} > 9 %global dict_dirname hunspell %else %global dict_dirname myspell @@ -7,7 +7,7 @@ Name: hunspell-sc Summary: Sardinian hunspell dictionaries %global upstreamid 20081101 Version: 0.%{upstreamid} -Release: 35%{?dist} +Release: 36%{?dist} Source: https://ayera.dl.sourceforge.net/project/aoo-extensions/1446/2/dict_sc_it03.oxt URL: http://extensions.services.openoffice.org/project/Dict_sc #The license included is AGPLv3 and pkg-desc/pkg-description.txt @@ -38,6 +38,10 @@ cp -p sc_it.dic $RPM_BUILD_ROOT/%{_datadir}/%{dict_dirname}/sc_IT.dic %{_datadir}/%{dict_dirname}/* %changelog +* Mon Aug 12 2024 Parag Nemade - 0.20081101-36 +- Resolves:RHEL-52504 - Add conditional for RHEL for using hunspell directory +- Add tmt CI tests + * Mon Jun 24 2024 Troy Dawson - 0.20081101-35 - Bump release for June 2024 mass rebuild diff --git a/plans/hunspell-sc.fmf b/plans/hunspell-sc.fmf new file mode 100644 index 0000000..c1627f9 --- /dev/null +++ b/plans/hunspell-sc.fmf @@ -0,0 +1,5 @@ +summary: Basic smoke test +discover: + how: fmf +execute: + how: tmt diff --git a/tests/test_dic_availability.fmf b/tests/test_dic_availability.fmf new file mode 100644 index 0000000..4af64ca --- /dev/null +++ b/tests/test_dic_availability.fmf @@ -0,0 +1,6 @@ +require: +- python3-enchant +- hunspell-sc +test: python3 test_dic_availability.py +framework: shell + diff --git a/tests/test_dic_availability.py b/tests/test_dic_availability.py new file mode 100644 index 0000000..1bd0abe --- /dev/null +++ b/tests/test_dic_availability.py @@ -0,0 +1,10 @@ +#!/usr/bin/python3 + +import enchant + +lang = "sc_IT" +try: + dic = enchant.request_dict(lang) + print("Dictionary for {0} language is available for use".format(lang)) +except enchant.errors.DictNotFoundError: + print("Dictionary is not installed for use") diff --git a/tests/test_suggest_words.fmf b/tests/test_suggest_words.fmf new file mode 100644 index 0000000..cf060d9 --- /dev/null +++ b/tests/test_suggest_words.fmf @@ -0,0 +1,6 @@ +require: +- python3-enchant +- hunspell-sc +test: python3 test_suggest_words.py +framework: shell + diff --git a/tests/test_suggest_words.py b/tests/test_suggest_words.py new file mode 100644 index 0000000..df4e7f4 --- /dev/null +++ b/tests/test_suggest_words.py @@ -0,0 +1,9 @@ +#!/usr/bin/python3 + +import enchant + +wdlst = [ "Hall", "chai", "morge"] +dic = enchant.Dict("sc_IT") +for wd in wdlst: + dic.check(wd) + print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))