s4-smbtorture: add test for svcctl_QueryServiceConfig2W.
authorGünther Deschner <gd@samba.org>
Fri, 14 Nov 2008 10:36:47 +0000 (11:36 +0100)
committerGünther Deschner <gd@samba.org>
Mon, 17 Nov 2008 12:17:07 +0000 (13:17 +0100)
Guenther

source4/torture/rpc/svcctl.c

index 4c5ccd75ee8054e20aa19db824e4e84886760763..0e440a36214fedb57fca05975de7b93565f9abdf 100644 (file)
@@ -118,6 +118,53 @@ static bool test_QueryServiceStatusEx(struct torture_context *tctx, struct dcerp
        return true;
 }
 
+static bool test_QueryServiceConfig2W(struct torture_context *tctx, struct dcerpc_pipe *p)
+{
+       struct svcctl_QueryServiceConfig2W r;
+       struct policy_handle h, s;
+       NTSTATUS status;
+
+       uint32_t info_level = 0;
+       uint8_t *buffer;
+       uint32_t buf_size = 0;
+       uint32_t bytes_needed = 0;
+
+       if (!test_OpenSCManager(p, tctx, &h))
+               return false;
+
+       if (!test_OpenService(p, tctx, &h, "Netlogon", &s))
+               return false;
+
+       buffer = talloc(tctx, uint8_t);
+
+       r.in.handle = &s;
+       r.in.info_level = 1;
+       r.in.buf_size = buf_size;
+       r.out.buffer = buffer;
+       r.out.bytes_needed = &bytes_needed;
+
+       status = dcerpc_svcctl_QueryServiceConfig2W(p, tctx, &r);
+       torture_assert_ntstatus_ok(tctx, status, "QueryServiceConfig2W failed!");
+
+       if (W_ERROR_EQUAL(r.out.result, WERR_INSUFFICIENT_BUFFER)) {
+               r.in.buf_size = bytes_needed;
+               buffer = talloc_array(tctx, uint8_t, bytes_needed);
+               r.out.buffer = buffer;
+
+               status = dcerpc_svcctl_QueryServiceConfig2W(p, tctx, &r);
+               torture_assert_ntstatus_ok(tctx, status, "QueryServiceConfig2W failed!");
+               torture_assert_werr_ok(tctx, r.out.result, "QueryServiceConfig2W failed!");
+       }
+
+       if (!test_CloseServiceHandle(p, tctx, &s))
+               return false;
+
+       if (!test_CloseServiceHandle(p, tctx, &h))
+               return false;
+
+       return true;
+}
+
 static bool test_EnumServicesStatus(struct torture_context *tctx, struct dcerpc_pipe *p)
 {
        struct svcctl_EnumServicesStatusW r;
@@ -195,6 +242,8 @@ struct torture_suite *torture_rpc_svcctl(TALLOC_CTX *mem_ctx)
                                   test_EnumServicesStatus);
        torture_rpc_tcase_add_test(tcase, "QueryServiceStatusEx",
                                   test_QueryServiceStatusEx);
+       torture_rpc_tcase_add_test(tcase, "QueryServiceConfig2W",
+                                  test_QueryServiceConfig2W);
 
        return suite;
 }