common_mock_sdap.c revision 78fb1789e8a5c2c7c51ad9002bbbdf0a1e390bdf
/*
Authors:
Pavel Březina <pbrezina@redhat.com>
Copyright (C) 2013 Red Hat
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/>.
*/
#include <talloc.h>
#include "providers/ldap/ldap_common.h"
#include "tests/cmocka/common_mock.h"
struct sdap_options *sdap_opts)
{
struct sdap_id_ctx *sdap_id_ctx;
return sdap_id_ctx;
}
struct sss_domain_info *domain,
struct confdb_ctx *confdb_ctx,
const char *conf_path)
{
return NULL;
}
return opts;
}
{
/* we will never connect to any LDAP server and any sdap API that
* access sdap_handle should be mocked, thus returning empty structure
* is enough */
return handle;
}
/*
* Mock sdap_async.c
*
* Every function that is placed in sdap_async.c module has to be mocked,
* to avoid any attempt to communicate with remote servers. Therefore no test
* can be compiled with sdap_async.c. If any of these functions is needed,
* their mock equivalent shall be used.
*/
{
return sss_mock_type(bool);
}
struct tevent_context *ev,
struct sdap_options *opts,
struct sdap_handle *sh,
const char *search_base,
int scope,
const char *filter,
const char **attrs,
struct sdap_attr_map *map,
int map_num_attrs,
int timeout,
bool allow_paging)
{
}
struct sysdb_attrs ***reply)
{
return sss_mock_type(int);
}
struct tevent_context *ev,
struct sdap_options *opts,
struct sdap_handle *sh,
const char *base_dn,
const char *deref_attr,
const char **attrs,
int num_maps,
struct sdap_attr_map_info *maps,
int timeout)
{
}
struct sdap_deref_attrs ***reply)
{
sss_mock_ptr_type(struct sdap_deref_attrs **));
return EOK;
}