1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

s4-smbtorture: add test_netremotetod.

Guenther

Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Mon May 16 12:45:52 CEST 2011 on sn-devel-104
This commit is contained in:
Günther Deschner 2011-05-11 23:50:23 +02:00
parent b1948659ad
commit 74d82faa78
2 changed files with 18 additions and 0 deletions

View File

@ -41,6 +41,7 @@ samba4.base.charset.*.Testing partial surrogate
samba4.rap.*netservergetinfo
samba4.rap.*netsessionenum
samba4.rap.*netsessiongetinfo
samba4.rap.*netremotetod
samba4.smb2.persistent.handles1
samba4.winbind.struct.*.show_sequence # Not yet working in winbind
samba4.winbind.struct.*.getpwent # Not yet working in winbind

View File

@ -206,6 +206,21 @@ static bool test_netsessiongetinfo(struct torture_context *tctx,
return true;
}
static bool test_netremotetod(struct torture_context *tctx,
struct smbcli_state *cli)
{
struct rap_NetRemoteTOD r;
r.in.bufsize = 8192;
torture_assert_ntstatus_ok(tctx,
smbcli_rap_netremotetod(cli->tree, tctx, &r),
"smbcli_rap_netremotetod failed");
torture_assert_werr_ok(tctx, W_ERROR(r.out.status),
"smbcli_rap_netremotetod failed");
return true;
}
bool torture_rap_scan(struct torture_context *torture, struct smbcli_state *cli)
{
@ -246,6 +261,8 @@ NTSTATUS torture_rap_init(void)
test_netsessionenum);
torture_suite_add_1smb_test(suite_basic, "netsessiongetinfo",
test_netsessiongetinfo);
torture_suite_add_1smb_test(suite_basic, "netremotetod",
test_netremotetod);
torture_suite_add_1smb_test(suite, "scan", torture_rap_scan);