zephyr/tests/net/socket/socketpair/src/expected_failures.c
Jukka Rissanen 0512e7ffae tests: net: sockets: Remove use of NET_SOCKETS_POSIX_NAMES
The setting is deprecated so change the code to either use the
native zsock_* API or enable POSIX_API to use the BSD socket API.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
2024-03-27 13:40:13 -05:00

63 lines
1.7 KiB
C

/*
* Copyright (c) 2020 Friedt Professional Engineering Services, Inc
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "_main.h"
ZTEST_USER_F(net_socketpair, test_expected_failures)
{
int res;
/* Use invalid values in fields starting from left to right */
res = zsock_socketpair(AF_INET, SOCK_STREAM, 0, fixture->sv);
if (res != -1) {
for (int i = 0; i < 2; ++i) {
zassert_ok(zsock_close(fixture->sv[i]));
fixture->sv[i] = -1;
}
}
zassert_equal(res, -1, "socketpair should fail with bad address family");
zassert_equal(errno, EAFNOSUPPORT,
"errno should be EAFNOSUPPORT with bad address family");
res = zsock_socketpair(AF_UNIX, 42, 0, fixture->sv);
if (res != -1) {
for (int i = 0; i < 2; ++i) {
zassert_ok(zsock_close(fixture->sv[i]));
fixture->sv[i] = -1;
}
}
zassert_equal(res, -1,
"socketpair should fail with unsupported socket type");
zassert_equal(errno, EPROTOTYPE,
"errno should be EPROTOTYPE with bad socket type");
res = zsock_socketpair(AF_UNIX, SOCK_STREAM, IPPROTO_TLS_1_0, fixture->sv);
if (res != -1) {
for (int i = 0; i < 2; ++i) {
zassert_ok(zsock_close(fixture->sv[i]));
fixture->sv[i] = -1;
}
}
zassert_equal(res, -1,
"socketpair should fail with unsupported protocol");
zassert_equal(errno, EPROTONOSUPPORT,
"errno should be EPROTONOSUPPORT with bad protocol");
/* This is not a POSIX requirement, but should be safe */
res = zsock_socketpair(AF_UNIX, SOCK_STREAM, 0, NULL);
if (res != -1) {
for (int i = 0; i < 2; ++i) {
zassert_ok(zsock_close(fixture->sv[i]));
fixture->sv[i] = -1;
}
}
zassert_equal(res, -1,
"socketpair should fail with invalid socket vector");
zassert_equal(errno, EFAULT,
"errno should be EFAULT with bad socket vector");
}