Web UI integration tests: Verify data after add and mod

https://fedorahosted.org/freeipa/ticket/3744
This commit is contained in:
Petr Vobornik
2013-07-26 13:35:12 +02:00
parent bc06e30481
commit a3567cef98
2 changed files with 116 additions and 7 deletions
+16
View File
@@ -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'),
],
}