diff options
author | Günther Deschner <gd@samba.org> | 2010-02-19 15:25:42 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-02-19 15:25:42 +0100 |
commit | ec0aa8a5c92c634ca3264b65c987b2072875df5c (patch) | |
tree | cce8b5a0470606d63ce616823c89607033bdcec7 | |
parent | 0e95a6a09cda6579be7d01c9e4c78f9f7f7cc54e (diff) | |
download | samba-ec0aa8a5c92c634ca3264b65c987b2072875df5c.tar.gz samba-ec0aa8a5c92c634ca3264b65c987b2072875df5c.tar.bz2 samba-ec0aa8a5c92c634ca3264b65c987b2072875df5c.zip |
s4-smbtorture: more work on devicemode tests.
Guenther
-rw-r--r-- | source4/torture/rpc/spoolss.c | 98 |
1 files changed, 63 insertions, 35 deletions
diff --git a/source4/torture/rpc/spoolss.c b/source4/torture/rpc/spoolss.c index 981eb93f2a..0a915a78f5 100644 --- a/source4/torture/rpc/spoolss.c +++ b/source4/torture/rpc/spoolss.c @@ -1924,40 +1924,6 @@ static bool test_PrinterInfo_DevModes(struct torture_context *tctx, "DM level 8 != DM level 2"); - /* change formname upon open and see if it persists in getprinter calls */ - - devmode->formname = talloc_strdup(tctx, "A4"); - - torture_assert(tctx, call_OpenPrinterEx(tctx, p, name, devmode, &handle_devmode), - "failed to open printer handle"); - - torture_assert(tctx, test_GetPrinter_level(tctx, p, &handle_devmode, 8, &info), ""); - - devmode2 = info.info8.devmode; - - if (strequal(devmode->devicename, devmode2->devicename)) { - torture_fail(tctx, "devicename is the same"); - } - - if (strequal(devmode->formname, devmode2->formname)) { - torture_fail(tctx, "formname is the same"); - } - - torture_assert(tctx, test_GetPrinter_level(tctx, p, &handle_devmode, 2, &info), ""); - - devmode2 = info.info2.devmode; - - if (strequal(devmode->devicename, devmode2->devicename)) { - torture_fail(tctx, "devicename is the same"); - } - - if (strequal(devmode->formname, devmode2->formname)) { - torture_fail(tctx, "formname is the same"); - } - - test_ClosePrinter(tctx, p, &handle_devmode); - - /* set devicemode level 8 and see if it persists */ devmode->copies = 93; @@ -1983,7 +1949,7 @@ static bool test_PrinterInfo_DevModes(struct torture_context *tctx, /* set devicemode level 2 and see if it persists */ devmode->copies = 39; - devmode->formname = talloc_strdup(tctx, "Letter"); + devmode->formname = talloc_strdup(tctx, "Executive"); torture_assert(tctx, test_devmode_set_level(tctx, p, handle, 2, devmode), ""); @@ -2002,6 +1968,66 @@ static bool test_PrinterInfo_DevModes(struct torture_context *tctx, "modified DM level 8 != DM level 2"); + /* change formname upon open and see if it persists in getprinter calls */ + + devmode->formname = talloc_strdup(tctx, "A4"); + devmode->copies = 42; + + torture_assert(tctx, call_OpenPrinterEx(tctx, p, name, devmode, &handle_devmode), + "failed to open printer handle"); + + torture_assert(tctx, test_GetPrinter_level(tctx, p, &handle_devmode, 8, &info), ""); + + devmode2 = info.info8.devmode; + + if (strequal(devmode->devicename, devmode2->devicename)) { + torture_comment(tctx, "devicenames are the same\n"); + } else { + torture_comment(tctx, "devicename passed in for open: %s\n", devmode->devicename); + torture_comment(tctx, "devicename after level 8 get: %s\n", devmode2->devicename); + } + + if (strequal(devmode->formname, devmode2->formname)) { + torture_warning(tctx, "formname are the same\n"); + } else { + torture_comment(tctx, "formname passed in for open: %s\n", devmode->formname); + torture_comment(tctx, "formname after level 8 get: %s\n", devmode2->formname); + } + + if (devmode->copies == devmode2->copies) { + torture_warning(tctx, "copies are the same\n"); + } else { + torture_comment(tctx, "copies passed in for open: %d\n", devmode->copies); + torture_comment(tctx, "copies after level 8 get: %d\n", devmode2->copies); + } + + torture_assert(tctx, test_GetPrinter_level(tctx, p, &handle_devmode, 2, &info), ""); + + devmode2 = info.info2.devmode; + + if (strequal(devmode->devicename, devmode2->devicename)) { + torture_comment(tctx, "devicenames are the same\n"); + } else { + torture_comment(tctx, "devicename passed in for open: %s\n", devmode->devicename); + torture_comment(tctx, "devicename after level 2 get: %s\n", devmode2->devicename); + } + + if (strequal(devmode->formname, devmode2->formname)) { + torture_warning(tctx, "formname is the same\n"); + } else { + torture_comment(tctx, "formname passed in for open: %s\n", devmode->formname); + torture_comment(tctx, "formname after level 2 get: %s\n", devmode2->formname); + } + + if (devmode->copies == devmode2->copies) { + torture_warning(tctx, "copies are the same\n"); + } else { + torture_comment(tctx, "copies passed in for open: %d\n", devmode->copies); + torture_comment(tctx, "copies after level 2 get: %d\n", devmode2->copies); + } + + test_ClosePrinter(tctx, p, &handle_devmode); + return true; } @@ -4333,6 +4359,8 @@ bool test_printer_keys(struct torture_context *tctx, const char **key_array = NULL; int i; + torture_comment(tctx, "\nTesting Printer Keys\n"); + torture_assert(tctx, test_EnumPrinterKey(tctx, p, handle, "", &key_array), "failed to call test_EnumPrinterKey"); |