s4-smbtorture: Make test names lowercase and dot-separated.
[metze/samba/wip.git] / source4 / torture / rpc / ntsvcs.c
index 3db79ac8bf4185a3a7fdb7cddb73a40c1d51a346..c1418e3ce741b01002c81a18f329c6429f3c5996 100644 (file)
 */
 
 #include "includes.h"
-#include "lib/torture/torture.h"
-#include "torture/rpc/rpc.h"
+#include "torture/rpc/torture_rpc.h"
 #include "librpc/gen_ndr/ndr_ntsvcs_c.h"
-#include "torture/util.h"
-#include "param/param.h"
 
 static bool test_PNP_GetVersion(struct torture_context *tctx,
                                struct dcerpc_pipe *p)
 {
+       struct dcerpc_binding_handle *b = p->binding_handle;
        NTSTATUS status;
        struct PNP_GetVersion r;
        uint16_t version = 0;
 
        r.out.version = &version;
 
-       status = dcerpc_PNP_GetVersion(p, tctx, &r);
+       status = dcerpc_PNP_GetVersion_r(b, tctx, &r);
 
        torture_assert_ntstatus_ok(tctx, status, "PNP_GetVersion");
        torture_assert_werr_ok(tctx, r.out.result, "PNP_GetVersion");
@@ -47,18 +45,27 @@ static bool test_PNP_GetVersion(struct torture_context *tctx,
 static bool test_PNP_GetDeviceListSize(struct torture_context *tctx,
                                       struct dcerpc_pipe *p)
 {
-       NTSTATUS status;
+       struct dcerpc_binding_handle *b = p->binding_handle;
        struct PNP_GetDeviceListSize r;
        uint32_t size = 0;
 
        r.in.devicename = NULL;
-       r.in.flags = 0;
+       r.in.flags = CM_GETIDLIST_FILTER_SERVICE;
        r.out.size = &size;
 
-       status = dcerpc_PNP_GetDeviceListSize(p, tctx, &r);
+       torture_assert_ntstatus_ok(tctx,
+               dcerpc_PNP_GetDeviceListSize_r(b, tctx, &r),
+               "PNP_GetDeviceListSize");
+       torture_assert_werr_equal(tctx, r.out.result, WERR_CM_INVALID_POINTER,
+               "PNP_GetDeviceListSize");
 
-       torture_assert_ntstatus_ok(tctx, status, "PNP_GetDeviceListSize");
-       torture_assert_werr_ok(tctx, r.out.result, "PNP_GetDeviceListSize");
+       r.in.devicename = "Spooler";
+
+       torture_assert_ntstatus_ok(tctx,
+               dcerpc_PNP_GetDeviceListSize_r(b, tctx, &r),
+               "PNP_GetDeviceListSize");
+       torture_assert_werr_ok(tctx, r.out.result,
+               "PNP_GetDeviceListSize");
 
        return true;
 }
@@ -66,7 +73,7 @@ static bool test_PNP_GetDeviceListSize(struct torture_context *tctx,
 static bool test_PNP_GetDeviceList(struct torture_context *tctx,
                                   struct dcerpc_pipe *p)
 {
-       NTSTATUS status;
+       struct dcerpc_binding_handle *b = p->binding_handle;
        struct PNP_GetDeviceList r;
        uint16_t *buffer = NULL;
        uint32_t length = 0;
@@ -74,25 +81,35 @@ static bool test_PNP_GetDeviceList(struct torture_context *tctx,
        buffer = talloc_array(tctx, uint16_t, 0);
 
        r.in.filter = NULL;
-       r.in.flags = 0;
+       r.in.flags = CM_GETIDLIST_FILTER_SERVICE;
        r.in.length = &length;
        r.out.length = &length;
        r.out.buffer = buffer;
 
-       status = dcerpc_PNP_GetDeviceList(p, tctx, &r);
-       torture_assert_ntstatus_ok(tctx, status, "PNP_GetDeviceList");
+       torture_assert_ntstatus_ok(tctx,
+               dcerpc_PNP_GetDeviceList_r(b, tctx, &r),
+               "PNP_GetDeviceList failed");
+       torture_assert_werr_equal(tctx, r.out.result, WERR_CM_INVALID_POINTER,
+               "PNP_GetDeviceList failed");
+
+       r.in.filter = "Spooler";
+
+       torture_assert_ntstatus_ok(tctx,
+               dcerpc_PNP_GetDeviceList_r(b, tctx, &r),
+               "PNP_GetDeviceList failed");
 
        if (W_ERROR_EQUAL(r.out.result, WERR_CM_BUFFER_SMALL)) {
                struct PNP_GetDeviceListSize s;
 
-               s.in.devicename = NULL;
-               s.in.flags = 0;
+               s.in.devicename = "Spooler";
+               s.in.flags = CM_GETIDLIST_FILTER_SERVICE;
                s.out.size = &length;
 
-               status = dcerpc_PNP_GetDeviceListSize(p, tctx, &s);
-
-               torture_assert_ntstatus_ok(tctx, status, "PNP_GetDeviceListSize");
-               torture_assert_werr_ok(tctx, s.out.result, "PNP_GetDeviceListSize");
+               torture_assert_ntstatus_ok(tctx,
+                       dcerpc_PNP_GetDeviceListSize_r(b, tctx, &s),
+                       "PNP_GetDeviceListSize failed");
+               torture_assert_werr_ok(tctx, s.out.result,
+                       "PNP_GetDeviceListSize failed");
        }
 
        buffer = talloc_array(tctx, uint16_t, length);
@@ -101,23 +118,67 @@ static bool test_PNP_GetDeviceList(struct torture_context *tctx,
        r.out.length = &length;
        r.out.buffer = buffer;
 
-       status = dcerpc_PNP_GetDeviceList(p, tctx, &r);
-       torture_assert_ntstatus_ok(tctx, status, "PNP_GetDeviceList");
-       torture_assert_werr_ok(tctx, r.out.result, "PNP_GetDeviceList");
+       torture_assert_ntstatus_ok(tctx,
+               dcerpc_PNP_GetDeviceList_r(b, tctx, &r),
+               "PNP_GetDeviceList failed");
+
+       torture_assert_werr_ok(tctx, r.out.result,
+               "PNP_GetDeviceList failed");
 
        return true;
 }
 
+static bool test_PNP_GetDeviceRegProp(struct torture_context *tctx,
+                                     struct dcerpc_pipe *p)
+{
+       struct dcerpc_binding_handle *b = p->binding_handle;
+       NTSTATUS status;
+       struct PNP_GetDeviceRegProp r;
+
+       enum winreg_Type reg_data_type = REG_NONE;
+       uint32_t buffer_size = 0;
+       uint32_t needed = 0;
+       uint8_t *buffer;
+
+       buffer = talloc(tctx, uint8_t);
+
+       r.in.devicepath = "ACPI\\ACPI0003\\1";
+       r.in.property = DEV_REGPROP_DESC;
+       r.in.flags = 0;
+       r.in.reg_data_type = &reg_data_type;
+       r.in.buffer_size = &buffer_size;
+       r.in.needed = &needed;
+       r.out.buffer = buffer;
+       r.out.reg_data_type = &reg_data_type;
+       r.out.buffer_size = &buffer_size;
+       r.out.needed = &needed;
+
+       status = dcerpc_PNP_GetDeviceRegProp_r(b, tctx, &r);
+       torture_assert_ntstatus_ok(tctx, status, "PNP_GetDeviceRegProp");
+
+       if (W_ERROR_EQUAL(r.out.result, WERR_CM_BUFFER_SMALL)) {
+
+               buffer = talloc_array(tctx, uint8_t, needed);
+               r.in.buffer_size = &needed;
+
+               status = dcerpc_PNP_GetDeviceRegProp_r(b, tctx, &r);
+               torture_assert_ntstatus_ok(tctx, status, "PNP_GetDeviceRegProp");
+       }
+
+       return true;
+}
 
 struct torture_suite *torture_rpc_ntsvcs(TALLOC_CTX *mem_ctx)
 {
        struct torture_rpc_tcase *tcase;
-       struct torture_suite *suite = torture_suite_create(mem_ctx, "NTSVCS");
+       struct torture_suite *suite = torture_suite_create(mem_ctx, "ntsvcs");
        struct torture_test *test;
 
        tcase = torture_suite_add_rpc_iface_tcase(suite, "ntsvcs",
                                                  &ndr_table_ntsvcs);
 
+       test = torture_rpc_tcase_add_test(tcase, "PNP_GetDeviceRegProp",
+                                         test_PNP_GetDeviceRegProp);
        test = torture_rpc_tcase_add_test(tcase, "PNP_GetDeviceList",
                                          test_PNP_GetDeviceList);
        test = torture_rpc_tcase_add_test(tcase, "PNP_GetDeviceListSize",