mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
2d278720db
Extend test_config.py suite with new test cases. Added tests: config_email_undo config_groupsearch_reset groupsearchfield_blank groupsearchfield_existing groupsearchfield_leading_space groupsearchfield_notallowed groupsearchfield_trailing_space usersearchfield_trailing_space sizelimit_blank sizelimit_letter sizelimit_space timelimit_blank timelimit_letter timelimit_negative timelimit_space userDefaultShell_blank userDefaultShell_leading_space userDefaultShell_new userDefaultShell_specialchar userDefaultShell_trailing_space useremail_leading_space useremail_new useremail_trailing_space usergroup_new userhomedir_blank userhomedir_leading_space userhomedir_numbers userhomedir_space_inbetween userhomedir_specialchar userhomedir_trailing_space usermigrationmode_disable usermigrationmode_enable usernamelength_blank usernamelength_letters usernamelength_max usernamelength_new usernamelength_space_inbetween usernamelength_specialchar userpwdexpnotify_blank userpwdexpnotify_letters userpwdexpnotify_max userpwdexpnotify_space_inbetween userpwdexpnotify_specialchar usersearchfield_blank usersearchfield_existing usersearchfield_leading_space usersearchfield_new usersearchfield_notallowed https://pagure.io/freeipa/issue/7576 Reviewed-By: Pavel Picka <ppicka@redhat.com>
59 lines
1.0 KiB
Python
59 lines
1.0 KiB
Python
#
|
|
# Copyright (C) 2018 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
ENTITY = 'config'
|
|
|
|
GRP_SEARCH_FIELD_DEFAULT = 'cn,description'
|
|
USR_SEARCH_FIELD_DEFAULT = 'uid,givenname,sn,telephonenumber,ou,title'
|
|
|
|
DATA = {
|
|
'mod': [
|
|
('textbox', 'ipasearchrecordslimit', '200'),
|
|
('textbox', 'ipasearchtimelimit', '3'),
|
|
],
|
|
}
|
|
|
|
DATA2 = {
|
|
'mod': [
|
|
('textbox', 'ipasearchrecordslimit', '100'),
|
|
('textbox', 'ipasearchtimelimit', '2'),
|
|
],
|
|
}
|
|
|
|
DATA_SIZE_LIMIT_LETTER = {
|
|
'mod': [
|
|
('textbox', 'ipasearchrecordslimit', 'a'),
|
|
],
|
|
}
|
|
|
|
DATA_SIZE_LIMIT_SPACE = {
|
|
'mod': [
|
|
('textbox', 'ipasearchrecordslimit', ' space'),
|
|
],
|
|
}
|
|
|
|
DATA_SIZE_LIMIT_NEG = {
|
|
'mod': [
|
|
('textbox', 'ipasearchrecordslimit', '-2'),
|
|
],
|
|
}
|
|
|
|
DATA_TIME_LIMIT_LETTER = {
|
|
'mod': [
|
|
('textbox', 'ipasearchtimelimit', 'a'),
|
|
],
|
|
}
|
|
|
|
DATA_TIME_LIMIT_SPACE = {
|
|
'mod': [
|
|
('textbox', 'ipasearchtimelimit', ' space'),
|
|
],
|
|
}
|
|
|
|
DATA_TIME_LIMIT_NEG = {
|
|
'mod': [
|
|
('textbox', 'ipasearchtimelimit', '-2'),
|
|
],
|
|
}
|