summaryrefslogtreecommitdiffstats
path: root/src/tests/cmocka/common_mock_sdap.c
blob: cef321613d5d22db044474b9da63a40135511c88 (plain)
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
135
136
137
138
139
/*
    Authors:
        Pavel Březina <pbrezina@redhat.com>

    Copyright (C) 2013 Red Hat

    This program is free software; you can redistribute it and/or modify
    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 "util/util.h"
#include "providers/ldap/ldap_common.h"
#include "providers/ldap/sdap.h"
#include "tests/cmocka/common_mock.h"

struct sdap_id_ctx *mock_sdap_id_ctx(TALLOC_CTX *mem_ctx,
                                     struct be_ctx *be_ctx,
                                     struct sdap_options *sdap_opts)
{
    struct sdap_id_ctx *sdap_id_ctx;

    sdap_id_ctx = talloc_zero(mem_ctx, struct sdap_id_ctx);
    assert_non_null(sdap_id_ctx);

    sdap_id_ctx->be = be_ctx;
    sdap_id_ctx->opts = sdap_opts;

    return sdap_id_ctx;
}

struct sdap_options *mock_sdap_options_ldap(TALLOC_CTX *mem_ctx,
                                            struct sss_domain_info *domain,
                                            struct confdb_ctx *confdb_ctx,
                                            const char *conf_path)
{
    struct sdap_options *opts = NULL;
    errno_t ret;

    ret = ldap_get_options(mem_ctx, domain, confdb_ctx, conf_path, &opts);
    if (ret != EOK) {
        return NULL;
    }

    return opts;
}

struct sdap_handle *mock_sdap_handle(TALLOC_CTX *mem_ctx)
{
    struct sdap_handle *handle = talloc_zero(mem_ctx, struct sdap_handle);

    /* 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.
 */

bool sdap_has_deref_support(struct sdap_handle *sh, struct sdap_options *opts)
{
    return sss_mock_type(bool);
}

struct tevent_req *sdap_get_generic_send(TALLOC_CTX *mem_ctx,
                                         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)
{
    return test_req_succeed_send(mem_ctx, ev);
}

int sdap_get_generic_recv(struct tevent_req *req,
                          TALLOC_CTX *mem_ctx,
                          size_t *reply_count,
                          struct sysdb_attrs ***reply)
{
    TEVENT_REQ_RETURN_ON_ERROR(req);

    *reply_count = sss_mock_type(size_t);
    *reply = sss_mock_ptr_type(struct sysdb_attrs **);

    return sss_mock_type(int);
}

struct tevent_req * sdap_deref_search_send(TALLOC_CTX *mem_ctx,
                                           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)
{
    return test_req_succeed_send(mem_ctx, ev);
}

int sdap_deref_search_recv(struct tevent_req *req,
                           TALLOC_CTX *mem_ctx,
                           size_t *reply_count,
                           struct sdap_deref_attrs ***reply)
{
    TEVENT_REQ_RETURN_ON_ERROR(req);

    *reply_count = sss_mock_type(size_t);
    *reply = talloc_steal(mem_ctx,
                          sss_mock_ptr_type(struct sdap_deref_attrs **));

    return EOK;
}