mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 08:21:05 -06:00
8d508b8e95
Extend test_selinuxusermap.py suite with new test cases. Details in the ticket. We also modify "add_table_associations" to handle "cancel" and "negative" in the way other methods works. Lastly, we start using dialog_btn=None to test keyboard confirmation as we did use it incorrectly with "Negative=True" where it was already confirmed by "click". Added tests: addselinuxusermap_MLS_singlelevel addselinuxusermap_cancel addselinuxusermap_disabledhbacrule addselinuxusermap_MLS_range addselinuxusermap_MCS_range addselinuxusermap_MCS_commas addselinuxusermap_MLS_singlevalue addselinuxusermap_multiple addandeditselinuxusermap selinuxusermap_undo selinuxusermap_refresh selinuxusermap_reset selinuxusermap_update selinuxusermap_backlink_cancel selinuxusermap_backlink_reset selinuxusermap_backlink_update selinuxusermap_deletemultiple add_user_selinuxusermap_cancel add_host_selinuxusermap_cancel add_hostgroup_selinuxusermap_cancel selinuxusermap_requiredfield selinuxusermap_duplicate selinuxusermap_nonexistinguser selinuxusermap_invalidusersyntaxMCS selinuxusermap_invalidusersyntaxMLS add_usernegative_selinuxusermap selinuxusermap_addNegativeHBACrule selinuxusermap_search selinuxusermap_searchnegative selinuxusermap_disablemultiple selinuxusermap_enablemultiple selinuxusermap_deleteNegativeHBACrule add_selinuxusermap_adder_dialog_bug910463 delete_selinuxusermap_deleter_dialog_bug910463 https://pagure.io/freeipa/issue/7544 Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
101 lines
2.4 KiB
Python
101 lines
2.4 KiB
Python
#
|
|
# Copyright (C) 2018 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
ENTITY = 'selinuxusermap'
|
|
|
|
PKEY = 'itest-selinuxusermap'
|
|
DATA = {
|
|
'pkey': PKEY,
|
|
'add': [
|
|
('textbox', 'cn', PKEY),
|
|
('textbox', 'ipaselinuxuser', 'user_u:s0'),
|
|
],
|
|
'mod': [
|
|
('textarea', 'description', 'itest-selinuxusermap desc'),
|
|
],
|
|
}
|
|
|
|
PKEY2 = 'itest-selinuxusermap2'
|
|
DATA2 = {
|
|
'pkey': PKEY2,
|
|
'add': [
|
|
('textbox', 'cn', PKEY2),
|
|
('textbox', 'ipaselinuxuser', 'unconfined_u:s0-s0:c0.c1023'),
|
|
],
|
|
'mod': [
|
|
('textarea', 'description', 'itest-selinuxusermap desc2'),
|
|
],
|
|
}
|
|
|
|
PKEY_MLS_RANGE = 'itest-selinuxusermap_MLS_range'
|
|
DATA_MLS_RANGE = {
|
|
'pkey': PKEY_MLS_RANGE,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_MLS_RANGE),
|
|
('textbox', 'ipaselinuxuser', 'user_u:s0-s1'),
|
|
],
|
|
}
|
|
|
|
PKEY_MCS_RANGE = 'itest-selinuxusermap_MLS_range'
|
|
DATA_MCS_RANGE = {
|
|
'pkey': PKEY_MCS_RANGE,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_MCS_RANGE),
|
|
('textbox', 'ipaselinuxuser', 'user_u:s0-s15:c0.c1023'),
|
|
],
|
|
}
|
|
|
|
PKEY_MCS_COMMAS = 'itest-selinuxusermap_MCS_commas'
|
|
DATA_MCS_COMMAS = {
|
|
'pkey': PKEY_MCS_COMMAS,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_MCS_COMMAS),
|
|
('textbox', 'ipaselinuxuser', 'user_u:s0-s1:c0,c2,c15.c26'),
|
|
],
|
|
}
|
|
|
|
PKEY_MLS_SINGLE_VAL = 'itest-selinuxusermap_MLS_single_val'
|
|
DATA_MLS_SINGLE_VAL = {
|
|
'pkey': PKEY_MLS_SINGLE_VAL,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_MLS_SINGLE_VAL),
|
|
('textbox', 'ipaselinuxuser', 'user_u:s0-s0:c0.c1023'),
|
|
],
|
|
}
|
|
|
|
PKEY_NON_EXIST_SEUSER = 'itest-selinuxusermap_nonexistent_user'
|
|
DATA_NON_EXIST_SEUSER = {
|
|
'pkey': PKEY_NON_EXIST_SEUSER,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_NON_EXIST_SEUSER),
|
|
('textbox', 'ipaselinuxuser', 'abc:s0'),
|
|
],
|
|
}
|
|
|
|
PKEY_INVALID_MCS = 'itest-selinuxusermap_invalid_MCS'
|
|
DATA_INVALID_MCS = {
|
|
'pkey': PKEY_INVALID_MCS,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_INVALID_MCS),
|
|
('textbox', 'ipaselinuxuser', 'user:s0:c'),
|
|
],
|
|
}
|
|
|
|
PKEY_INVALID_MLS = 'itest-selinuxusermap_invalid_MLS'
|
|
DATA_INVALID_MLS = {
|
|
'pkey': PKEY_INVALID_MLS,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_INVALID_MLS),
|
|
('textbox', 'ipaselinuxuser', 'user'),
|
|
],
|
|
}
|
|
|
|
PKEY_FIELD_REQUIRED = 'itest-selinuxusermap_without_SELinux_user'
|
|
DATA_FIELD_REQUIRED = {
|
|
'pkey': PKEY_FIELD_REQUIRED,
|
|
'add': [
|
|
('textbox', 'cn', PKEY_FIELD_REQUIRED),
|
|
],
|
|
}
|