2013-05-24 06:48:53 -05:00
|
|
|
# Authors:
|
|
|
|
# Petr Vobornik <pvoborni@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2013 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
ENTITY = 'group'
|
|
|
|
DEFAULT_FACET = 'member_user'
|
|
|
|
|
|
|
|
PKEY = 'itest-group'
|
|
|
|
DATA = {
|
|
|
|
'pkey': PKEY,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY),
|
2013-07-24 06:24:02 -05:00
|
|
|
('textarea', 'description', 'test-group desc'),
|
2016-10-20 08:25:13 -05:00
|
|
|
('radio', 'type', 'nonposix'),
|
2013-05-24 06:48:53 -05:00
|
|
|
],
|
|
|
|
'mod': [
|
2013-07-24 06:24:02 -05:00
|
|
|
('textarea', 'description', 'test-group desc modified'),
|
2013-05-24 06:48:53 -05:00
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY2 = 'itest-group2'
|
|
|
|
DATA2 = {
|
|
|
|
'pkey': PKEY2,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY2),
|
2013-07-24 06:24:02 -05:00
|
|
|
('textarea', 'description', 'test-group2 desc'),
|
2013-05-24 06:48:53 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY3 = 'itest-group3'
|
2013-07-24 06:24:02 -05:00
|
|
|
DATA3 = {
|
2013-05-24 06:48:53 -05:00
|
|
|
'pkey': PKEY3,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY3),
|
2013-07-24 06:24:02 -05:00
|
|
|
('textarea', 'description', 'test-group3 desc'),
|
2013-05-24 06:48:53 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY4 = 'itest-group4'
|
2013-07-24 06:24:02 -05:00
|
|
|
DATA4 = {
|
2013-05-24 06:48:53 -05:00
|
|
|
'pkey': PKEY4,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY4),
|
2013-07-24 06:24:02 -05:00
|
|
|
('textarea', 'description', 'test-group4 desc'),
|
2013-05-24 06:48:53 -05:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY5 = 'itest-group5'
|
2013-07-24 06:24:02 -05:00
|
|
|
DATA5 = {
|
2013-05-24 06:48:53 -05:00
|
|
|
'pkey': PKEY5,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY5),
|
2013-07-24 06:24:02 -05:00
|
|
|
('textarea', 'description', 'test-group5 desc'),
|
2013-05-24 06:48:53 -05:00
|
|
|
]
|
2013-07-24 06:24:02 -05:00
|
|
|
}
|
2016-02-25 08:00:49 -06:00
|
|
|
|
|
|
|
PKEY6 = 'itest-group6'
|
|
|
|
DATA6 = {
|
|
|
|
'pkey': PKEY6,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY6),
|
|
|
|
('textarea', 'description', 'test-group6 desc'),
|
|
|
|
('textbox', 'gidnumber', '77777'),
|
|
|
|
]
|
|
|
|
}
|
2018-04-05 02:51:51 -05:00
|
|
|
|
|
|
|
PKEY7 = ''
|
|
|
|
DATA7 = {
|
|
|
|
'pkey': PKEY7,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY7),
|
|
|
|
('textarea', 'description', 'Empty Group name'),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY8 = ';test-gr@up'
|
|
|
|
DATA8 = {
|
|
|
|
'pkey': PKEY8,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY8),
|
|
|
|
('textarea', 'description', 'Invalid Group name'),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY9 = 'itest-group9'
|
|
|
|
DATA9 = {
|
|
|
|
'pkey': PKEY9,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY9),
|
|
|
|
('textarea', 'description', 'test-group9 desc'),
|
|
|
|
('radio', 'type', 'nonposix'),
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
PKEY10 = 'itest-group10'
|
|
|
|
DATA10 = {
|
|
|
|
'pkey': PKEY10,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY10),
|
|
|
|
('textarea', 'description', 'test-group10 desc'),
|
|
|
|
('radio', 'type', 'nonposix'),
|
|
|
|
]
|
|
|
|
}
|
ui_tests: extend test_pwpolicy.py suite
Extend WebUI test_pwpolicy suite with the following test cases
Details in the ticket https://pagure.io/freeipa/issue/7574
Added tests:
krbpwdminlength: lower range integer
krbmaxpwdlife: non-integer, abc
krbmaxpwdlife: upper range integer,2147483648
krbmaxpwdlife: lower range integer,-1
krbminpwdlife: non-integer,edf
krbminpwdlife: upper range integer,2147483648
krbminpwdlife: lower range integer,-1
krbpwdhistorylength: non-integer,HIJ
krbpwdhistorylength: upper range integer,2147483648
krbpwdhistorylength: lower range integer,-1
krbpwdmindiffchars: noon-integer,3lm
krbpwdmindiffchars: upper range integer,2147483648
krbpwdmindiffchars: lower range integer, -1
krbpwdminlength: non-integer, n0p
krbpwdminlength: upper range integer,2147483648
krbpwdminlength: lower range integer, -1
cospriority: non-integer, abc
cospriority: upper range integer,2147483648
cospriority: lower range integer,-1
krbpwdmaxfailure: non-integer
krbpwdmaxfailure: upper range integer
krbpwdmaxfailure: lower range integer
krbpwdfailurecountinterval: non-integer
krbpwdfailurecountinterval: upper range integer
krbpwdfailurecountinterval: lower range integer
krbpwdlockoutduration: non-integer
krbpwdlockoutduration: upper range integer
krbpwdlockoutduration: lower range integer
deletePolicy_with various scenario
MeasurementUnitAdded_Bug798363
Delete global password policy
add_Policy_adder_dialog_bug910463
delete_Policy_deleter_dialog_bug910463
test field: cospriority
modifyPolicy(undo/refresh/reset)
empty policy name
upper bound of data range
lower bound of data range
non integer for policy priority
Signed-off-by: Varun Mylaraiah <mvarun@redhat.com>
Reviewed-By: Pavel Picka <ppicka@redhat.com>
2018-05-30 12:50:09 -05:00
|
|
|
|
|
|
|
PKEY_SPECIAL_CHAR_GROUP = 'itest...group_-$'
|
|
|
|
DATA_SPECIAL_CHAR_GROUP = {
|
|
|
|
'pkey': PKEY_SPECIAL_CHAR_GROUP,
|
|
|
|
'add': [
|
|
|
|
('textbox', 'cn', PKEY_SPECIAL_CHAR_GROUP),
|
|
|
|
('textarea', 'description', 'special characters group desc'),
|
|
|
|
]
|
|
|
|
}
|