VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTUdp-1.cpp@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/* $Id: tstRTUdp-1.cpp 93115 2022-01-01 11:31:46Z vboxsync $ */
2/** @file
3 * IPRT testcase - UDP.
4 */
5
6/*
7 * Copyright (C) 2015-2022 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/udp.h>
32
33#include <iprt/err.h>
34#include <iprt/string.h>
35#include <iprt/test.h>
36
37/* Server address must be "localhost" */
38#define RT_TEST_UDP_LOCAL_HOST "localhost"
39#define RT_TEST_UDP_SERVER_PORT 52000
40
41
42/*********************************************************************************************************************************
43* Global Variables *
44*********************************************************************************************************************************/
45static RTTEST g_hTest;
46
47
48/* * * * * * * * Test 1 * * * * * * * */
49
50static DECLCALLBACK(int) test1Server(RTSOCKET hSocket, void *pvUser)
51{
52 RTTestSetDefault(g_hTest, NULL);
53
54 char szBuf[512];
55 RTTESTI_CHECK_RET(pvUser == NULL, VERR_UDP_SERVER_STOP);
56
57 RTNETADDR ClientAddress;
58
59 /* wait for exclamation! */
60 size_t cbReallyRead;
61 RTTESTI_CHECK_RC_RET(RTSocketReadFrom(hSocket, szBuf, sizeof("dude!\n") - 1, &cbReallyRead, &ClientAddress), VINF_SUCCESS,
62 VERR_UDP_SERVER_STOP);
63 szBuf[sizeof("dude!\n") - 1] = '\0';
64 RTTESTI_CHECK_RET(cbReallyRead == sizeof("dude!\n") - 1, VERR_UDP_SERVER_STOP);
65 RTTESTI_CHECK_RET(strcmp(szBuf, "dude!\n") == 0, VERR_UDP_SERVER_STOP);
66
67 /* say hello. */
68 RTTESTI_CHECK_RC_RET(RTSocketWriteTo(hSocket, "hello\n", sizeof("hello\n") - 1, &ClientAddress), VINF_SUCCESS,
69 VERR_UDP_SERVER_STOP);
70
71 /* wait for goodbye. */
72 RTTESTI_CHECK_RC_RET(RTSocketReadFrom(hSocket, szBuf, sizeof("byebye\n") - 1, &cbReallyRead, &ClientAddress), VINF_SUCCESS,
73 VERR_UDP_SERVER_STOP);
74 RTTESTI_CHECK_RET(cbReallyRead == sizeof("byebye\n") - 1, VERR_UDP_SERVER_STOP);
75 szBuf[sizeof("byebye\n") - 1] = '\0';
76 RTTESTI_CHECK_RET(strcmp(szBuf, "byebye\n") == 0, VERR_UDP_SERVER_STOP);
77
78 /* say buhbye */
79 RTTESTI_CHECK_RC_RET(RTSocketWriteTo(hSocket, "buh bye\n", sizeof("buh bye\n") - 1, &ClientAddress), VINF_SUCCESS,
80 VERR_UDP_SERVER_STOP);
81
82 return VINF_SUCCESS;
83}
84
85
86static void test1()
87{
88 RTTestSub(g_hTest, "Simple server-client setup");
89
90 /*
91 * Set up server address (port) for UDP.
92 */
93 RTNETADDR ServerAddress;
94 RTTESTI_CHECK_RC_RETV(RTSocketParseInetAddress(RT_TEST_UDP_LOCAL_HOST, RT_TEST_UDP_SERVER_PORT, &ServerAddress),
95 VINF_SUCCESS);
96
97 PRTUDPSERVER pServer;
98 RTTESTI_CHECK_RC_RETV(RTUdpServerCreate(RT_TEST_UDP_LOCAL_HOST, RT_TEST_UDP_SERVER_PORT, RTTHREADTYPE_DEFAULT, "server-1",
99 test1Server, NULL, &pServer), VINF_SUCCESS);
100
101 int rc;
102 RTSOCKET hSocket;
103 RTTESTI_CHECK_RC(rc = RTUdpCreateClientSocket(RT_TEST_UDP_LOCAL_HOST, RT_TEST_UDP_SERVER_PORT, NULL, &hSocket), VINF_SUCCESS);
104 if (RT_SUCCESS(rc))
105 {
106 do /* break non-loop */
107 {
108 char szBuf[512];
109 RT_ZERO(szBuf);
110 RTTESTI_CHECK_RC_BREAK(RTSocketWrite(hSocket, "dude!\n", sizeof("dude!\n") - 1), VINF_SUCCESS);
111
112 RTTESTI_CHECK_RC_BREAK(RTSocketRead(hSocket, szBuf, sizeof("hello\n") - 1, NULL), VINF_SUCCESS);
113 szBuf[sizeof("hello!\n") - 1] = '\0';
114 RTTESTI_CHECK_BREAK(strcmp(szBuf, "hello\n") == 0);
115
116 RTTESTI_CHECK_RC_BREAK(RTSocketWrite(hSocket, "byebye\n", sizeof("byebye\n") - 1), VINF_SUCCESS);
117 RT_ZERO(szBuf);
118 RTTESTI_CHECK_RC_BREAK(RTSocketRead(hSocket, szBuf, sizeof("buh bye\n") - 1, NULL), VINF_SUCCESS);
119 RTTESTI_CHECK_BREAK(strcmp(szBuf, "buh bye\n") == 0);
120 } while (0);
121
122 RTTESTI_CHECK_RC(RTSocketClose(hSocket), VINF_SUCCESS);
123 }
124
125 RTTESTI_CHECK_RC(RTUdpServerDestroy(pServer), VINF_SUCCESS);
126}
127
128
129int main()
130{
131 RTEXITCODE rcExit = RTTestInitAndCreate("tstRTUdp-1", &g_hTest);
132 if (rcExit != RTEXITCODE_SUCCESS)
133 return rcExit;
134 RTTestBanner(g_hTest);
135
136 test1();
137
138 /** @todo test the full RTUdp API. */
139
140 return RTTestSummaryAndDestroy(g_hTest);
141}
142
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette