1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
#
# Copyright (C) 2018 FreeIPA Contributors see COPYING for license
#
ENTITY = 'selfservice'
PKEY = 'itest-selfservice-rule'
DATA = {
'pkey': PKEY,
'add': [
('textbox', 'aciname', PKEY),
('checkbox', 'attrs', 'audio'),
('checkbox', 'attrs', 'businesscategory'),
],
'mod': [
('checkbox', 'attrs', 'businesscategory'),
],
}
PKEY1 = 'itest-selfservice-rule1'
DATA1 = {
'pkey': PKEY1,
'add': [
('textbox', 'aciname', PKEY1),
('checkbox', 'attrs', 'businesscategory'),
],
'mod': [
('checkbox', 'attrs', 'businesscategory'),
('checkbox', 'attrs', 'departmentnumber'),
('checkbox', 'attrs', 'destinationindicator'),
],
}
DATA2 = [
('checkbox', 'attrs', 'businesscategory'),
('checkbox', 'attrs', 'departmentnumber'),
('checkbox', 'attrs', 'destinationindicator'),
]
DATA_ALL = {
'pkey': PKEY,
'add': [
('textbox', 'aciname', PKEY),
('checkbox', 'attrs', 'audio'),
('checkbox', 'attrs', 'businesscategory'),
('checkbox', 'attrs', 'carlicense'),
('checkbox', 'attrs', 'cn'),
('checkbox', 'attrs', 'departmentnumber'),
('checkbox', 'attrs', 'description'),
('checkbox', 'attrs', 'destinationindicator'),
('checkbox', 'attrs', 'displayname'),
('checkbox', 'attrs', 'employeenumber'),
('checkbox', 'attrs', 'employeetype'),
('checkbox', 'attrs', 'facsimiletelephonenumber'),
('checkbox', 'attrs', 'gecos'),
('checkbox', 'attrs', 'gidnumber'),
('checkbox', 'attrs', 'givenname'),
('checkbox', 'attrs', 'homedirectory'),
('checkbox', 'attrs', 'homephone'),
('checkbox', 'attrs', 'homepostaladdress'),
('checkbox', 'attrs', 'inetuserhttpurl'),
('checkbox', 'attrs', 'inetuserstatus'),
('checkbox', 'attrs', 'initials'),
('checkbox', 'attrs', 'internationalisdnnumber'),
('checkbox', 'attrs', 'ipacertmapdata'),
('checkbox', 'attrs', 'ipakrbauthzdata'),
('checkbox', 'attrs', 'ipasshpubkey'),
('checkbox', 'attrs', 'ipatokenradiusconfiglink'),
('checkbox', 'attrs', 'ipatokenradiususername'),
('checkbox', 'attrs', 'ipauniqueid'),
('checkbox', 'attrs', 'ipauserauthtype'),
('checkbox', 'attrs', 'jpegphoto'),
('checkbox', 'attrs', 'krballowedtodelegateto'),
('checkbox', 'attrs', 'krbcanonicalname'),
('checkbox', 'attrs', 'krbextradata'),
('checkbox', 'attrs', 'krblastadminunlock'),
('checkbox', 'attrs', 'krblastfailedauth'),
('checkbox', 'attrs', 'krblastpwdchange'),
('checkbox', 'attrs', 'krblastsuccessfulauth'),
('checkbox', 'attrs', 'krbloginfailedcount'),
('checkbox', 'attrs', 'krbmaxrenewableage'),
('checkbox', 'attrs', 'krbmaxticketlife'),
('checkbox', 'attrs', 'krbpasswordexpiration'),
('checkbox', 'attrs', 'krbprincipalaliases'),
('checkbox', 'attrs', 'krbprincipalauthind'),
('checkbox', 'attrs', 'krbprincipalexpiration'),
('checkbox', 'attrs', 'krbprincipalkey'),
('checkbox', 'attrs', 'krbprincipalname'),
('checkbox', 'attrs', 'krbprincipaltype'),
('checkbox', 'attrs', 'krbpwdhistory'),
('checkbox', 'attrs', 'krbpwdpolicyreference'),
('checkbox', 'attrs', 'krbticketflags'),
('checkbox', 'attrs', 'krbticketpolicyreference'),
('checkbox', 'attrs', 'krbupenabled'),
('checkbox', 'attrs', 'l'),
('checkbox', 'attrs', 'labeleduri'),
('checkbox', 'attrs', 'loginshell'),
('checkbox', 'attrs', 'mail'),
('checkbox', 'attrs', 'manager'),
('checkbox', 'attrs', 'memberof'),
('checkbox', 'attrs', 'mepmanagedentry'),
('checkbox', 'attrs', 'mobile'),
('checkbox', 'attrs', 'o'),
('checkbox', 'attrs', 'objectclass'),
('checkbox', 'attrs', 'ou'),
('checkbox', 'attrs', 'pager'),
('checkbox', 'attrs', 'photo'),
('checkbox', 'attrs', 'physicaldeliveryofficename'),
('checkbox', 'attrs', 'postaladdress'),
('checkbox', 'attrs', 'postalcode'),
('checkbox', 'attrs', 'postofficebox'),
('checkbox', 'attrs', 'preferreddeliverymethod'),
('checkbox', 'attrs', 'preferredlanguage'),
('checkbox', 'attrs', 'registeredaddress'),
('checkbox', 'attrs', 'roomnumber'),
('checkbox', 'attrs', 'secretary'),
('checkbox', 'attrs', 'seealso'),
('checkbox', 'attrs', 'sn'),
('checkbox', 'attrs', 'st'),
('checkbox', 'attrs', 'street'),
('checkbox', 'attrs', 'telephonenumber'),
('checkbox', 'attrs', 'teletexterminalidentifier'),
('checkbox', 'attrs', 'telexnumber'),
('checkbox', 'attrs', 'title'),
('checkbox', 'attrs', 'uid'),
('checkbox', 'attrs', 'uidnumber'),
('checkbox', 'attrs', 'usercertificate'),
('checkbox', 'attrs', 'userclass'),
('checkbox', 'attrs', 'userpassword'),
('checkbox', 'attrs', 'userpkcs12'),
('checkbox', 'attrs', 'usersmimecertificate'),
('checkbox', 'attrs', 'x121address'),
('checkbox', 'attrs', 'x500uniqueidentifier'),
],
}
|