torture: add new tests for dfsblobs
authorMatthieu Patou <mat@matws.net>
Sun, 13 Dec 2009 15:41:53 +0000 (18:41 +0300)
committerStefan Metzmacher <metze@samba.org>
Mon, 14 Dec 2009 09:58:32 +0000 (10:58 +0100)
Signed-off-by: Stefan Metzmacher <metze@samba.org>
source4/librpc/config.mk
source4/torture/config.mk
source4/torture/ndr/dfsblob.c [new file with mode: 0644]
source4/torture/ndr/ndr.c

index 501b88bb36974c59a91c970124290337eab4ff5e..5f8bc880d16f0b58eb6961ea465f611dae9e0672 100644 (file)
@@ -134,6 +134,11 @@ PUBLIC_DEPENDENCIES = LIBNDR NDR_DRSUAPI
 
 NDR_DRSBLOBS_OBJ_FILES = ../librpc/gen_ndr/ndr_drsblobs.o ../librpc/ndr/ndr_drsblobs.o
 
+[SUBSYSTEM::NDR_DFSBLOBS]
+PUBLIC_DEPENDENCIES = LIBNDR
+
+NDR_DFSBLOBS_OBJ_FILES = ../librpc/gen_ndr/ndr_dfsblobs.o
+
 [SUBSYSTEM::NDR_SASL_HELPERS]
 PUBLIC_DEPENDENCIES = LIBNDR
 
@@ -352,7 +357,7 @@ PUBLIC_DEPENDENCIES = \
        NDR_FRSRPC NDR_FRSAPI NDR_FRSTRANS \
        NDR_NFS4ACL NDR_NTP_SIGND \
        NDR_DCOM NDR_WMI NDR_NAMED_PIPE_AUTH \
-       NDR_NTLMSSP
+       NDR_NTLMSSP NDR_DFSBLOBS
 
 NDR_TABLE_OBJ_FILES = ../librpc/ndr/ndr_table.o $(gen_ndrsrcdir)/tables.o
 
index 00362b6358357cdc9f341935ee0798a21f9eb5d9..7976df267dec390ac8501665704108c9c268c14c 100644 (file)
@@ -94,7 +94,7 @@ mkinclude libnetapi/config.mk
 [SUBSYSTEM::TORTURE_NDR]
 PRIVATE_DEPENDENCIES = torture SERVICE_SMB
 
-TORTURE_NDR_OBJ_FILES = $(addprefix $(torturesrcdir)/ndr/, ndr.o winreg.o atsvc.o lsa.o epmap.o dfs.o netlogon.o drsuapi.o spoolss.o samr.o)
+TORTURE_NDR_OBJ_FILES = $(addprefix $(torturesrcdir)/ndr/, ndr.o winreg.o atsvc.o lsa.o epmap.o dfs.o netlogon.o drsuapi.o spoolss.o samr.o dfsblob.o)
 
 $(eval $(call proto_header_template,$(torturesrcdir)/ndr/proto.h,$(TORTURE_NDR_OBJ_FILES:.o=.c)))
 
diff --git a/source4/torture/ndr/dfsblob.c b/source4/torture/ndr/dfsblob.c
new file mode 100644 (file)
index 0000000..353f9f5
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+   Unix SMB/CIFS implementation.
+
+   Test DFS blobs.
+
+   Copyright (C) Matthieu Patou <mat@matws.net> 2009
+
+   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/ndr/ndr.h"
+#include "librpc/gen_ndr/ndr_dfsblobs.h"
+
+static const uint8_t dfs_get_ref_in[] = {
+       0x03, 0x00, 0x5c, 0x00, 0x57, 0x00, 0x32, 0x00,
+       0x4b, 0x00, 0x33, 0x00, 0x00, 0x00 };
+
+static const uint8_t dfs_get_ref_out[] = {
+       0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
+       0x00, 0x00, 0x03, 0x00, 0x22, 0x00, 0x00, 0x00,
+       0x02, 0x00, 0x58, 0x02, 0x00, 0x00, 0x22, 0x00,
+       0x01, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00,
+       0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+       0x00, 0x00, 0x00, 0x00, 0x5c, 0x00, 0x57, 0x00,
+       0x32, 0x00, 0x4b, 0x00, 0x33, 0x00, 0x00, 0x00,
+       0x5c, 0x00, 0x57, 0x00, 0x32, 0x00, 0x4b, 0x00,
+       0x33, 0x00, 0x2d, 0x00, 0x31, 0x00, 0x30, 0x00,
+       0x31, 0x00, 0x00, 0x00 };
+
+struct torture_suite *ndr_dfsblob_suite(TALLOC_CTX *ctx)
+{
+       struct torture_suite *suite = torture_suite_create(ctx, "dfsblob");
+
+       torture_suite_add_ndr_pull_fn_test(suite, dfs_GetDFSReferral, dfs_get_ref_in, NDR_IN, NULL);
+       torture_suite_add_ndr_pull_fn_test(suite, dfs_GetDFSReferral, dfs_get_ref_out, NDR_OUT, NULL);
+
+       return suite;
+}
index 7bd3631ad0dc3bed8cbf2265f9f998f3e8619dd5..86020030174c517b0bb78cbf022659c7dd20104a 100644 (file)
@@ -252,6 +252,7 @@ struct torture_suite *torture_local_ndr(TALLOC_CTX *mem_ctx)
        torture_suite_add_suite(suite, ndr_lsa_suite(suite));
        torture_suite_add_suite(suite, ndr_epmap_suite(suite));
        torture_suite_add_suite(suite, ndr_dfs_suite(suite));
+       torture_suite_add_suite(suite, ndr_dfsblob_suite(suite));
        torture_suite_add_suite(suite, ndr_netlogon_suite(suite));
        torture_suite_add_suite(suite, ndr_drsuapi_suite(suite));
        torture_suite_add_suite(suite, ndr_spoolss_suite(suite));