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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
// SPDX-License-Identifier: BSD-3-Clause
/* Copyright 2020, Intel Corporation */
/*
* utils-get_ibv_context.c -- a unit test for rpma_utils_get_ibv_context()
*/
#include <stdio.h>
#include <stdlib.h>
#include <rdma/rdma_cma.h>
#include "cmocka_headers.h"
#include "librpma.h"
#include "mocks-ibverbs.h"
#include "info.h"
#include "test-common.h"
#define TYPE_UNKNOWN (enum rpma_util_ibv_context_type)(-1)
/*
* sanity__type_unknown - TYPE_UNKNOWN != RPMA_UTIL_IBV_CONTEXT_LOCAL &&
* TYPE_UNKNOWN != RPMA_UTIL_IBV_CONTEXT_REMOTE
*/
static void
sanity__type_unknown(void **unused)
{
/* run test */
assert_int_not_equal(TYPE_UNKNOWN, RPMA_UTIL_IBV_CONTEXT_LOCAL);
assert_int_not_equal(TYPE_UNKNOWN, RPMA_UTIL_IBV_CONTEXT_REMOTE);
}
/*
* get_ibvc__addr_NULL - test NULL addr parameter
*/
static void
get_ibvc__addr_NULL(void **unused)
{
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(NULL, RPMA_UTIL_IBV_CONTEXT_REMOTE,
&ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_INVAL);
assert_null(ibv_ctx);
}
/*
* get_ibvc__ibv_ctx_NULL - test NULL ibv_ctx parameter
*/
static void
get_ibvc__ibv_ctx_NULL(void **unused)
{
/* run test */
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_REMOTE, NULL);
/* verify the results */
assert_int_equal(ret, RPMA_E_INVAL);
}
/*
* get_ibvc__type_unknown - type == TYPE_UNKNOWN
*/
static void
get_ibvc__type_unknown(void **unused)
{
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
TYPE_UNKNOWN, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_INVAL);
}
/*
* get_ibvc__addr_NULL_ibv_ctx_NULL_type_unknown - test NULL addr and
* ibv_ctx parameter and type == TYPE_UNKNOWN
*/
static void
get_ibvc__addr_NULL_ibv_ctx_NULL_type_unknown(void **unused)
{
/* run test */
int ret = rpma_utils_get_ibv_context(NULL, TYPE_UNKNOWN, NULL);
/* verify the results */
assert_int_equal(ret, RPMA_E_INVAL);
}
/*
* get_ibvc__info_new_failed_E_PROVIDER - rpma_info_new fails with
* RPMA_E_PROVIDER
*/
static void
get_ibvc__info_new_failed_E_PROVIDER(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, NULL /* info_ptr */);
will_return(rpma_info_new, RPMA_E_PROVIDER);
will_return(rpma_info_new, MOCK_ERRNO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return_maybe(rdma_create_id, &id);
will_return_maybe(rdma_destroy_id, 0);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_REMOTE, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_PROVIDER);
assert_null(ibv_ctx);
}
/*
* get_ibvc__info_new_failed_E_NOMEM - rpma_info_new fails with RPMA_E_NOMEM
*/
static void
get_ibvc__info_new_failed_E_NOMEM(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, NULL /* info_ptr */);
will_return(rpma_info_new, RPMA_E_NOMEM);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return_maybe(rdma_create_id, &id);
will_return_maybe(rdma_destroy_id, 0);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_REMOTE, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_NOMEM);
assert_null(ibv_ctx);
}
/*
* get_ibvc__create_id_failed - rdma_create_id fails with MOCK_ERRNO
*/
static void
get_ibvc__create_id_failed(void **unused)
{
/*
* Configure mocks.
* We assume it is not important which call of rpma_info_new()
* succeeds (active or passive), since failing rdma_create_id()
* should look and behaves the same.
* Here we assume that if rpma_info_new() is called, it will succeed
* for a local address (passive side).
*/
will_return_maybe(rpma_info_new, MOCK_INFO);
will_return(rdma_create_id, NULL);
will_return(rdma_create_id, MOCK_ERRNO);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_LOCAL, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_PROVIDER);
assert_null(ibv_ctx);
}
/*
* get_ibvc__bind_addr_failed_E_PROVIDER - rpma_info_bind_addr fails
* with RPMA_E_PROVIDER
*/
static void
get_ibvc__bind_addr_failed_E_PROVIDER(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, MOCK_INFO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return(rdma_create_id, &id);
/* a local address (passive side) */
expect_value(rpma_info_bind_addr, info, MOCK_INFO);
expect_value(rpma_info_bind_addr, id, &id);
will_return(rpma_info_bind_addr, RPMA_E_PROVIDER);
will_return(rpma_info_bind_addr, MOCK_ERRNO);
will_return(rdma_destroy_id, 0);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_LOCAL, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_PROVIDER);
assert_null(ibv_ctx);
}
/*
* get_ibvc__resolve_addr_failed_E_PROVIDER - rpma_info_resolve_addr fails
* with RPMA_E_PROVIDER
*/
static void
get_ibvc__resolve_addr_failed_E_PROVIDER(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, MOCK_INFO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return(rdma_create_id, &id);
/* a remote address (active side) */
expect_value(rpma_info_resolve_addr, info, MOCK_INFO);
expect_value(rpma_info_resolve_addr, id, &id);
will_return(rpma_info_resolve_addr, RPMA_E_PROVIDER);
will_return(rpma_info_resolve_addr, MOCK_ERRNO);
will_return(rdma_destroy_id, 0);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_REMOTE, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, RPMA_E_PROVIDER);
assert_null(ibv_ctx);
}
/*
* get_ibvc__success_destroy_id_failed_passive - test if
* rpma_utils_get_ibv_context() succeeds if rdma_destroy_id() fails
*/
static void
get_ibvc__success_destroy_id_failed_passive(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, MOCK_INFO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return(rdma_create_id, &id);
/* a local address (passive side) */
expect_value(rpma_info_bind_addr, info, MOCK_INFO);
expect_value(rpma_info_bind_addr, id, &id);
will_return(rpma_info_bind_addr, 0);
will_return(rdma_destroy_id, MOCK_ERRNO);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_LOCAL, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, 0);
assert_ptr_equal(ibv_ctx, MOCK_VERBS);
}
/*
* get_ibvc__success_destroy_id_failed_active - test if
* rpma_utils_get_ibv_context() succeeds if rdma_destroy_id() fails
*/
static void
get_ibvc__success_destroy_id_failed_active(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, MOCK_INFO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return(rdma_create_id, &id);
/* a remote address (active side) */
expect_value(rpma_info_resolve_addr, info, MOCK_INFO);
expect_value(rpma_info_resolve_addr, id, &id);
will_return(rpma_info_resolve_addr, 0);
will_return(rdma_destroy_id, MOCK_ERRNO);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_REMOTE, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, 0);
assert_ptr_equal(ibv_ctx, MOCK_VERBS);
}
/*
* get_ibvc__success_passive - test the 'all is OK' situation
*/
static void
get_ibvc__success_passive(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, MOCK_INFO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return(rdma_create_id, &id);
expect_value(rpma_info_bind_addr, info, MOCK_INFO);
expect_value(rpma_info_bind_addr, id, &id);
will_return(rpma_info_bind_addr, 0);
will_return(rdma_destroy_id, 0);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_LOCAL, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, 0);
assert_ptr_equal(ibv_ctx, MOCK_VERBS);
}
/*
* get_ibvc__success_active - test the 'all is OK' situation
*/
static void
get_ibvc__success_active(void **unused)
{
/* configure mocks */
will_return(rpma_info_new, MOCK_INFO);
struct rdma_cm_id id;
id.verbs = MOCK_VERBS;
will_return(rdma_create_id, &id);
expect_value(rpma_info_resolve_addr, info, MOCK_INFO);
expect_value(rpma_info_resolve_addr, id, &id);
will_return(rpma_info_resolve_addr, 0);
will_return(rdma_destroy_id, 0);
/* run test */
struct ibv_context *ibv_ctx = NULL;
int ret = rpma_utils_get_ibv_context(MOCK_IP_ADDRESS,
RPMA_UTIL_IBV_CONTEXT_REMOTE, &ibv_ctx);
/* verify the results */
assert_int_equal(ret, 0);
assert_ptr_equal(ibv_ctx, MOCK_VERBS);
}
int
main(int argc, char *argv[])
{
const struct CMUnitTest tests[] = {
/* sanity */
cmocka_unit_test(sanity__type_unknown),
cmocka_unit_test(get_ibvc__addr_NULL),
cmocka_unit_test(get_ibvc__ibv_ctx_NULL),
cmocka_unit_test(get_ibvc__type_unknown),
cmocka_unit_test(get_ibvc__addr_NULL_ibv_ctx_NULL_type_unknown),
cmocka_unit_test(get_ibvc__info_new_failed_E_PROVIDER),
cmocka_unit_test(get_ibvc__info_new_failed_E_NOMEM),
cmocka_unit_test(get_ibvc__create_id_failed),
cmocka_unit_test(get_ibvc__bind_addr_failed_E_PROVIDER),
cmocka_unit_test(get_ibvc__resolve_addr_failed_E_PROVIDER),
cmocka_unit_test(get_ibvc__success_destroy_id_failed_passive),
cmocka_unit_test(get_ibvc__success_destroy_id_failed_active),
cmocka_unit_test(get_ibvc__success_passive),
cmocka_unit_test(get_ibvc__success_active),
};
return cmocka_run_group_tests(tests, NULL, NULL);
}
|