mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2026-08-14 06:54:55 -05:00
Web UI integration tests: Verify data after add and mod
https://fedorahosted.org/freeipa/ticket/3744
This commit is contained in:
@@ -28,9 +28,25 @@ DATA = {
|
||||
('textbox', 'givenname', 'Name'),
|
||||
('textbox', 'sn', 'Surname'),
|
||||
],
|
||||
'add_v': [
|
||||
('textbox', 'givenname', 'Name'),
|
||||
('textbox', 'sn', 'Surname'),
|
||||
('label', 'uid', PKEY),
|
||||
],
|
||||
'mod': [
|
||||
('textbox', 'givenname','OtherName'),
|
||||
('textbox', 'sn','OtherSurname'),
|
||||
('multivalued', 'telephonenumber', [
|
||||
('add', '123456789'),
|
||||
('add', '987654321'),
|
||||
]),
|
||||
('combobox', 'manager', 'admin'),
|
||||
],
|
||||
'mod_v': [
|
||||
('textbox', 'givenname', 'OtherName'),
|
||||
('textbox', 'sn', 'OtherSurname'),
|
||||
('multivalued', 'telephonenumber', ['123456789', '987654321']),
|
||||
('combobox', 'manager', 'admin'),
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user