59a62a91ab
Gregory Nutt has submitted the SGA Haltian Ltd has submitted the SGA as a result we can migrate the licenses to Apache. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
197 lines
7.2 KiB
C
197 lines
7.2 KiB
C
/****************************************************************************
|
|
* apps/examples/usrsocktest/defines.h
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __APPS_EXAMPLES_USRSOCKTEST_DEFINES_H
|
|
#define __APPS_EXAMPLES_USRSOCKTEST_DEFINES_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <unistd.h>
|
|
#include <fcntl.h>
|
|
#include <pthread.h>
|
|
#include <assert.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
#define USRSOCK_NODE "/dev/usrsock"
|
|
|
|
#define USRSOCKTEST_DAEMON_CONF_DEFAULTS \
|
|
{ \
|
|
.max_sockets = UINT_MAX, \
|
|
.supported_domain = AF_INET, \
|
|
.supported_type = SOCK_STREAM, \
|
|
.supported_protocol = 0, \
|
|
.delay_all_responses = false, \
|
|
.endpoint_addr = "127.0.0.1", \
|
|
.endpoint_port = 255, \
|
|
.endpoint_block_connect = false, \
|
|
.endpoint_block_send = false, \
|
|
.endpoint_recv_avail_from_start = true, \
|
|
.endpoint_recv_avail = 4, \
|
|
}
|
|
|
|
/* Test case macros */
|
|
|
|
#define utest_match(type, should_be_value, test_value) do { \
|
|
type tmp_utest_test_value = (type)(test_value); \
|
|
type tmp_utest_should_value = (type)(should_be_value); \
|
|
if (!usrsocktest_assert_print_value(__func__, __LINE__, \
|
|
"(" #type ")(" #test_value ") == " \
|
|
"(" #type ")(" #should_be_value ")", \
|
|
tmp_utest_test_value, \
|
|
tmp_utest_should_value)) \
|
|
{ \
|
|
usrsocktest_test_failed = true; \
|
|
return; \
|
|
} \
|
|
} while(false)
|
|
|
|
#define utest_match_buf(should_be_valuebuf, test_valuebuf, test_valuebuflen) do { \
|
|
if (!usrsocktest_assert_print_buf(__func__, __LINE__, \
|
|
"memcmp(" #should_be_valuebuf ", " \
|
|
#test_valuebuf ", " \
|
|
#test_valuebuflen ") == 0", \
|
|
should_be_valuebuf, \
|
|
test_valuebuf, \
|
|
test_valuebuflen)) \
|
|
{ \
|
|
usrsocktest_test_failed = true; \
|
|
return; \
|
|
} \
|
|
} while(false)
|
|
|
|
#define RUN_TEST_CASE(g,t) do { \
|
|
if (usrsocktest_test_failed) \
|
|
{ \
|
|
return; \
|
|
} \
|
|
usrsocktest_group_##g##_setup(); \
|
|
usrsocktest_test_##g##_##t(); \
|
|
usrsocktest_group_##g##_teardown(); \
|
|
if (usrsocktest_test_failed) \
|
|
{ \
|
|
return; \
|
|
} \
|
|
} while (false)
|
|
|
|
#define RUN_TEST_GROUP(g) do { \
|
|
extern const char *usrsocktest_group_##g; \
|
|
void usrsocktest_group_##g##_run(void); \
|
|
run_tests(usrsocktest_group_##g, usrsocktest_group_##g##_run); \
|
|
} while (false)
|
|
|
|
#define TEST_GROUP(g) const char *usrsocktest_group_##g = #g; \
|
|
void usrsocktest_group_##g##_run(void)
|
|
#define TEST_SETUP(g) static void usrsocktest_group_##g##_setup(void)
|
|
#define TEST_TEAR_DOWN(g) static void usrsocktest_group_##g##_teardown(void)
|
|
#define TEST(g,t) static void usrsocktest_test_##g##_##t(void)
|
|
|
|
#define TEST_ASSERT_TRUE(v) utest_match(bool, true, (v))
|
|
#define TEST_ASSERT_FALSE(v) utest_match(bool, false, (v))
|
|
#define TEST_ASSERT_EQUAL(e,v) utest_match(ssize_t, (e), (v))
|
|
#define TEST_ASSERT_EQUAL_UINT8_ARRAY(e,v,s) utest_match_buf((e), (v), (s))
|
|
|
|
/****************************************************************************
|
|
* Public Types
|
|
****************************************************************************/
|
|
|
|
struct usrsocktest_daemon_conf_s
|
|
{
|
|
unsigned int max_sockets;
|
|
int8_t supported_domain:8;
|
|
int8_t supported_type:8;
|
|
int8_t supported_protocol:8;
|
|
bool delay_all_responses:1;
|
|
bool endpoint_block_connect:1;
|
|
bool endpoint_block_send:1;
|
|
bool endpoint_recv_avail_from_start:1;
|
|
uint8_t endpoint_recv_avail:8;
|
|
const char *endpoint_addr;
|
|
uint16_t endpoint_port;
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
extern int usrsocktest_endp_malloc_cnt;
|
|
extern int usrsocktest_dcmd_malloc_cnt;
|
|
extern const struct usrsocktest_daemon_conf_s usrsocktest_daemon_defconf;
|
|
extern struct usrsocktest_daemon_conf_s usrsocktest_daemon_config;
|
|
|
|
extern bool usrsocktest_test_failed;
|
|
|
|
/****************************************************************************
|
|
* Inline Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Function Prototypes
|
|
****************************************************************************/
|
|
|
|
bool usrsocktest_assert_print_value(FAR const char *func,
|
|
const int line,
|
|
FAR const char *check_str,
|
|
long int test_value,
|
|
long int should_be);
|
|
|
|
bool usrsocktest_assert_print_buf(FAR const char *func,
|
|
const int line,
|
|
FAR const char *check_str,
|
|
FAR const void *test_buf,
|
|
FAR const void *expect_buf,
|
|
size_t buflen);
|
|
|
|
int usrsocktest_daemon_start(
|
|
FAR const struct usrsocktest_daemon_conf_s *conf);
|
|
|
|
int usrsocktest_daemon_stop(void);
|
|
|
|
int usrsocktest_daemon_get_num_active_sockets(void);
|
|
|
|
int usrsocktest_daemon_get_num_connected_sockets(void);
|
|
|
|
int usrsocktest_daemon_get_num_waiting_connect_sockets(void);
|
|
|
|
int usrsocktest_daemon_get_num_recv_empty_sockets(void);
|
|
|
|
ssize_t usrsocktest_daemon_get_send_bytes(void);
|
|
|
|
ssize_t usrsocktest_daemon_get_recv_bytes(void);
|
|
|
|
int usrsocktest_daemon_get_num_unreachable_sockets(void);
|
|
|
|
int usrsocktest_daemon_get_num_remote_disconnected_sockets(void);
|
|
|
|
bool usrsocktest_daemon_establish_waiting_connections(void);
|
|
|
|
bool usrsocktest_send_delayed_command(char cmd, unsigned int delay_msec);
|
|
|
|
int usrsocktest_daemon_pause_usrsock_handling(bool pause);
|
|
|
|
#endif /* __APPS_EXAMPLES_USRSOCKTEST_DEFINES_H */
|