summaryrefslogtreecommitdiffstats
path: root/src/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* tests: unit test for test_sysdb_search_usersJakub Hrozek2013-01-151-0/+31
|
* tests: add a unit test for sysdb_netgroup_base_dnJakub Hrozek2013-01-151-0/+23
|
* Add domain arguments to sysdb ssh functionsSimo Sorce2013-01-151-2/+4
|
* Add domain arguments to sysdb services functionsSimo Sorce2013-01-151-15/+9
| | | | also fix sysdb_svc_add declarations
* Add domain argument to sysdb autofs functionsSimo Sorce2013-01-151-8/+13
|
* Add domain argument to sysdb_remove_attrs()Simo Sorce2013-01-151-4/+4
|
* Add domain argument to sysdb_has/set_enumerated()Simo Sorce2013-01-151-5/+3
|
* Add domain arg to sysdb_search/delete_netgroup()Simo Sorce2013-01-151-1/+2
|
* Add domain argument to sysdb_delete_group()Simo Sorce2013-01-151-5/+8
| | | | Also remove sysdb_delete_domgroup()
* Add domain argument to sysdb_delete_user()Simo Sorce2013-01-151-5/+8
| | | | Also remove sysdb_delete_domuser()
* Add domain to sysdb_delete_customSimo Sorce2013-01-151-1/+1
|
* Add domain argument to sysdb_search_custom()Simo Sorce2013-01-151-1/+3
| | | | Also changes sysdb_search_custom_by_name()
* Add domain argument to sysdb_store_custom()Simo Sorce2013-01-151-1/+1
|
* Add domain argument to sysdb_cache_auth()Simo Sorce2013-01-151-4/+8
|
* Add domain argument to sysdb_cache_password()Simo Sorce2013-01-151-1/+1
|
* Add domain arg to sysdb group member functionsSimo Sorce2013-01-151-6/+10
|
* Add domain argument to sysdb_store_group()Simo Sorce2013-01-151-9/+12
| | | | Also remove sysdb_store_domgroup()
* Add domain argument to sysdb_store_user()Simo Sorce2013-01-151-9/+14
| | | | Also remove sysdb_store_domuser()
* Add domain arguments to sysdb_add_inetgroup fns.Simo Sorce2013-01-151-2/+2
|
* Add domain arguments to sysdb_add_group functions.Simo Sorce2013-01-151-7/+9
|
* Add domain argument to sysdb_add_user()Simo Sorce2013-01-151-2/+2
|
* Add domain argument to sysdb_add_basic_user()Simo Sorce2013-01-151-0/+1
|
* Add domain argument to sysdb_set_netgroup_attr()Simo Sorce2013-01-151-1/+1
|
* Add domain argument to sysdb_set_group_attr()Simo Sorce2013-01-151-12/+12
|
* Add domain argument to sysdb_set_user_attr()Simo Sorce2013-01-151-3/+4
|
* Add domain arg to sysdb_search_netgroup_by_name()Simo Sorce2013-01-151-0/+1
|
* Add domain to sysdb_search_group_by_gid()Simo Sorce2013-01-151-1/+24
| | | | Also remove unused sysdb_search_domgroup_by_gid()
* Add domain to sysdb_search_group_by_name()Simo Sorce2013-01-151-3/+4
| | | | Also remove unused sysdb_search_domgroup_by_name()
* Add domain to sysdb_search_user_by_uid()Simo Sorce2013-01-151-1/+2
| | | | Also remove unused sysdb_search_domuser_by_uid()
* Add domain to sysdb_search_user_by_name()Simo Sorce2013-01-151-3/+4
| | | | Also remove unused sysdb_search_domuser_by_name()
* Add domain argument to sysdb_get_user_attr()Simo Sorce2013-01-151-2/+2
|
* Add domain option to sysdb_get/netgr/attrs() fnsSimo Sorce2013-01-151-3/+3
|
* Pass domain to sysdb_enum<pw/gr>ebt() functionsSimo Sorce2013-01-151-0/+2
|
* Pass domain to sysdb_get<pwu/grg><id() functionsSimo Sorce2013-01-151-0/+2
|
* Pass domain to sysdb_get<pw/gr>nam() functionsSimo Sorce2013-01-151-8/+20
| | | | | | Also allows us to remove sysdb_subdom_get<pw/gr>nam() wrappers and restore fqnames proper value in subdomains, by testing for a parent domain being present or not.
* Make sysdb_domain_dn() require a domain.Simo Sorce2013-01-151-1/+1
|
* Make sysdb_netgroup_dn() require a domain explictly.Simo Sorce2013-01-151-2/+4
|
* Make sysdb_group_dn() require a domain explictly.Simo Sorce2013-01-151-2/+4
|
* Make sysdb_user_dn() require a domain explictly.Simo Sorce2013-01-151-2/+4
|
* Refactor single domain initializationSimo Sorce2013-01-153-9/+9
| | | | | Bring it out of sysdb, which will slowly remove internal dependencies on domains and instead will always require them to be passed by callers.
* Change pam data auth tokens.Simo Sorce2013-01-101-5/+8
| | | | Use the new authtok abstraction and interfaces throught the code.
* Code can only check for cached passwordsSimo Sorce2013-01-101-4/+2
| | | | | Make it clear to the API users that we can not take arbitrary auth tokens. We can only take a password for now so simplify and clarify the interface.
* Remove dead netgroup functionsSimo Sorce2013-01-081-264/+0
|
* Refactor gid handling in the PAC responderSumit Bose2013-01-081-21/+36
| | | | | | Instead of using a single array of gid-domain_pointer pairs, Simo suggested to use a gid array for each domain an store it with a pointer to the domain.
* Add tests for get_gids_from_pac()Sumit Bose2013-01-081-0/+256
|
* Add find_domain_by_id()Sumit Bose2013-01-081-0/+49
| | | | | | | Currently domains can only be searched by name in the global domain list. To make it easier to find the domain for a given SID find_domain_by_id() which returns a pointer to the domain or subdomain entry in the global domain list if a matching id was found.
* Use struct pac_grp instead of gid_t for groups from PACSumit Bose2013-01-081-8/+11
| | | | | To be able to handle groupmemberships from other domains more data than just the gid must be kept for groups given in the PAC.
* Remove unused headerSimo Sorce2013-01-061-1/+0
|
* failover: Protect against empty host namesMichal Zidek2013-01-021-0/+91
| | | | | | | | | | Added new parameter to split_on_separator that allows to skip empty values. The whole function was rewritten. Unit test case was added to check the new implementation. https://fedorahosted.org/sssd/ticket/1484
* MEMBEROF: Keep inherited ghost users around on modify operationJakub Hrozek2012-12-051-0/+248
| | | | | | | | | | | | | https://fedorahosted.org/sssd/ticket/1652 It is possible to simply reset the list of ghost users to a different one during a modify operation. It is also actually how we update entries that are expired in the SSSD cache. In this case, we must be careful and retain the ghost users that are not native to the group we are processing but are rather inherited from child groups. The intention of the replace operation after all is to set the list of direct members of that group, not direct and indirect.