add gating and CI test
Resolves: #2066184 forward-port from rhel8/backport from rawhide gating.yaml was created by Alexandra Fedorova in !1
This commit is contained in:
parent
ead046ebef
commit
e36663000c
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
--- !Policy
|
||||||
|
product_versions:
|
||||||
|
- rhel-9
|
||||||
|
decision_context: osci_compose_gate
|
||||||
|
rules:
|
||||||
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
16
tests/parse/test.py
Normal file
16
tests/parse/test.py
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
codepoints = 0
|
||||||
|
|
||||||
|
file = '/usr/share/unicode/ucd/UnicodeData.txt'
|
||||||
|
|
||||||
|
with open(file, mode='rt', encoding='utf-8') as unicode_data:
|
||||||
|
for line in unicode_data.readlines():
|
||||||
|
codepoint_string, name, category = line.split(';')[:3]
|
||||||
|
codepoint = int(codepoint_string, 16)
|
||||||
|
char = chr(codepoint)
|
||||||
|
codepoints = codepoints + 1
|
||||||
|
|
||||||
|
print(codepoints)
|
||||||
|
# Unicode 13 has 33797
|
||||||
|
assert(codepoints > 33000)
|
13
tests/tests.yml
Normal file
13
tests/tests.yml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
- hosts: localhost
|
||||||
|
tags:
|
||||||
|
- classic
|
||||||
|
roles:
|
||||||
|
- role: standard-test-basic
|
||||||
|
required_packages:
|
||||||
|
- unicode-ucd
|
||||||
|
- python3
|
||||||
|
tests:
|
||||||
|
- parse:
|
||||||
|
run: python3 test.py
|
||||||
|
...
|
Loading…
Reference in New Issue
Block a user