Add tmt gating plan

Resolves: rhbz#2159305
This commit is contained in:
Lukas Zachar 2023-02-03 11:02:58 +01:00 committed by Charalampos Stratakis
parent 3005cdfb35
commit db207444c9
5 changed files with 36 additions and 0 deletions

1
.fmf/version Normal file
View File

@ -0,0 +1 @@
1

7
gating.yaml Normal file
View File

@ -0,0 +1,7 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

8
plan.fmf Normal file
View File

@ -0,0 +1,8 @@
execute:
how: tmt
discover:
- how: shell
tests:
- name: simple import
test: python3.11 -c 'import pymysql'
- how: fmf

8
tests/smoke_test.fmf Normal file
View File

@ -0,0 +1,8 @@
require:
- mariadb-server
- python3.11-PyMySQL
test: |
systemctl start mariadb &&
python3.11 smoke_test.py &&
systemctl stop mariadb

12
tests/smoke_test.py Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python3
# Modified from
# https://github.com/PyMySQL/PyMySQL/blob/v1.0.2/example.py
import pymysql
connection = pymysql.connect(unix_socket="/var/lib/mysql/mysql.sock", db="mysql")
cursor = connection.cursor()
cursor.execute("SELECT Host,User FROM user")
print(cursor.description)
cursor.close()
connection.close()