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
|
/*
Unix SMB/CIFS implementation.
Example echo torture tests
Copyright (C) 2010 Kai Blin <kai@samba.org>
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 "includes.h"
#include "torture/smbtorture.h"
#include "libcli/resolve/resolve.h"
#include <tevent.h>
#include "libcli/util/ntstatus.h"
#include "libcli/echo/libecho.h"
NTSTATUS torture_libcli_echo_init(void);
/* Basic test function that sends an echo request and checks the reply */
static bool echo_udp_basic(struct torture_context *tctx, const char *address)
{
struct tevent_req *req;
NTSTATUS status;
const char *msg_send = "This is a test string\n";
char *msg_recv;
req = echo_request_send(tctx, tctx->ev, address, msg_send);
torture_assert(tctx, req != NULL,
"echo_request_send returned non-null tevent_req");
while(tevent_req_is_in_progress(req)) {
tevent_loop_once(tctx->ev);
}
status = echo_request_recv(req, tctx, &msg_recv);
torture_assert_ntstatus_ok(tctx, status,
"echo_request_recv returned ok");
torture_assert_str_equal(tctx, msg_recv, msg_send,
"Echo server echoed request string");
return true;
}
/*Test case to set up the environment and perform UDP-based echo tests */
static bool torture_echo_udp(struct torture_context *tctx)
{
const char *address;
struct nbt_name name;
NTSTATUS status;
bool ret = true;
make_nbt_name_server(&name,
torture_setting_string(tctx, "host", NULL));
status = resolve_name_ex(lpcfg_resolve_context(tctx->lp_ctx),
0, 0,
&name, tctx,
&address, tctx->ev);
if (!NT_STATUS_IS_OK(status)) {
printf("Failed to resolve %s - %s\n", name.name,
nt_errstr(status));
return false;
}
/* All tests are now called here */
ret &= echo_udp_basic(tctx, address);
return ret;
}
/* Test suite that bundles all the libecho tests */
NTSTATUS torture_libcli_echo_init(void)
{
struct torture_suite *suite;
suite = torture_suite_create(talloc_autofree_context(), "echo");
NT_STATUS_HAVE_NO_MEMORY(suite);
torture_suite_add_simple_test(suite, "udp", torture_echo_udp);
suite->description = talloc_strdup(suite, "libcli/echo interface tests");
torture_register_suite(suite);
return NT_STATUS_OK;
}
|