From 7a2c4acf8631813889982f6059f17a1954308906 Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Wed, 18 Feb 2009 22:51:27 -0800 Subject: s4 torture: Add additional streams create disposition test --- source4/torture/raw/streams.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'source4/torture/raw') diff --git a/source4/torture/raw/streams.c b/source4/torture/raw/streams.c index aff97d08ed..6105fb230f 100644 --- a/source4/torture/raw/streams.c +++ b/source4/torture/raw/streams.c @@ -1438,6 +1438,26 @@ static bool test_stream_create_disposition(struct torture_context *tctx, goto done; } + /* + * check ntcreatex overwrite_if on a stream. + */ + printf("(%s) Checking ntcreatex disp: overwrite_if on stream\n", + __location__); + smbcli_unlink(cli->tree, fname); + if (!create_file_with_stream(tctx, cli, mem_ctx, fname, + fname_stream)) { + goto done; + } + + io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OVERWRITE_IF; + io.ntcreatex.in.fname = fname_stream; + status = smb_raw_open(cli->tree, mem_ctx, &io); + CHECK_STATUS(status, NT_STATUS_OK); + smbcli_close(cli->tree, io.ntcreatex.out.file.fnum); + if (!check_stream_list(cli, fname, 2, &default_stream_name)) { + goto done; + } + /* * check openx overwrite_if */ -- cgit