diff options
author | Günther Deschner <gd@samba.org> | 2010-06-29 12:14:02 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-06-29 12:27:02 +0200 |
commit | 7ae7750c4085b2d95b46fa4433586e9a68d593ae (patch) | |
tree | 061f67fc158f93fd4d2f5431a1c1c744afb685b9 /source4/torture | |
parent | c02cbaae34bd27826ba13f98fc40a396b0e1530d (diff) | |
download | samba-7ae7750c4085b2d95b46fa4433586e9a68d593ae.tar.gz samba-7ae7750c4085b2d95b46fa4433586e9a68d593ae.tar.bz2 samba-7ae7750c4085b2d95b46fa4433586e9a68d593ae.zip |
s4-smbtorture: add RPC torture test for winreg_QueryMultipleValues2.
Guenther
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/winreg.c | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 9deedbf46f..c0391436ad 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -1645,6 +1645,45 @@ static bool test_QueryMultipleValues(struct dcerpc_binding_handle *b, return true; } +static bool test_QueryMultipleValues2(struct dcerpc_binding_handle *b, + struct torture_context *tctx, + struct policy_handle *handle, + const char *valuename) +{ + struct winreg_QueryMultipleValues2 r; + uint32_t offered = 0, needed; + + ZERO_STRUCT(r); + + r.in.key_handle = handle; + r.in.values_in = r.out.values_out = talloc_zero_array(tctx, struct QueryMultipleValue, 1); + r.in.values_in[0].ve_valuename = talloc(tctx, struct winreg_ValNameBuf); + r.in.values_in[0].ve_valuename->name = valuename; + /* size needs to be set manually for winreg_ValNameBuf */ + r.in.values_in[0].ve_valuename->size = strlen_m_term(valuename)*2; + + r.in.num_values = 1; + r.in.offered = &offered; + r.out.needed = &needed; + + torture_assert_ntstatus_ok(tctx, + dcerpc_winreg_QueryMultipleValues2_r(b, tctx, &r), + "QueryMultipleValues2 failed"); + if (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA)) { + *r.in.offered = *r.out.needed; + r.in.buffer = r.out.buffer = talloc_zero_array(tctx, uint8_t, *r.in.offered); + + torture_assert_ntstatus_ok(tctx, + dcerpc_winreg_QueryMultipleValues2_r(b, tctx, &r), + "QueryMultipleValues2 failed"); + } + + torture_assert_werr_ok(tctx, r.out.result, + "QueryMultipleValues2 failed"); + + return true; +} + static bool test_QueryValue(struct dcerpc_binding_handle *b, struct torture_context *tctx, struct policy_handle *handle, @@ -1813,6 +1852,8 @@ static bool test_EnumValue(struct dcerpc_binding_handle *b, r.out.name->name); ret &= test_QueryMultipleValues(b, tctx, handle, r.out.name->name); + ret &= test_QueryMultipleValues2(b, tctx, handle, + r.out.name->name); } r.in.enum_index++; |