Merge branch 'v4-0-test' of git://git.samba.org/samba into 4-0-local
[gd/samba-autobuild/.git] / source4 / torture / raw / mkdir.c
index 52120f0542eeae5bc0642d0f6e05b3a6a50080bb..93e94150d74b9a855f67c2c9791fcb191438b202 100644 (file)
@@ -5,7 +5,7 @@
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "includes.h"
+#include "torture/torture.h"
+#include "libcli/raw/libcliraw.h"
+#include "libcli/libcli.h"
+#include "torture/util.h"
+#include "param/param.h"
+
+#define BASEDIR "\\mkdirtest"
 
 #define CHECK_STATUS(status, correct) do { \
        if (!NT_STATUS_EQUAL(status, correct)) { \
-               printf("(%d) Incorrect status %s - should be %s\n", \
-                      __LINE__, nt_errstr(status), nt_errstr(correct)); \
-               ret = False; \
+               printf("(%s) Incorrect status %s - should be %s\n", \
+                      __location__, nt_errstr(status), nt_errstr(correct)); \
+               ret = false; \
                goto done; \
        }} while (0)
 
 /*
   test mkdir ops
 */
-static BOOL test_mkdir(struct cli_state *cli, TALLOC_CTX *mem_ctx)
+static bool test_mkdir(struct smbcli_state *cli, struct torture_context *tctx)
 {
        union smb_mkdir md;
        struct smb_rmdir rd;
-       const char *path = "\\test_mkdir.dir";
+       const char *path = BASEDIR "\\mkdir.dir";
        NTSTATUS status;
-       BOOL ret = True;
+       bool ret = true;
 
-       /* cleanup */
-       cli_rmdir(cli, path);
-       cli_unlink(cli, path);
+       if (!torture_setup_dir(cli, BASEDIR)) {
+               return false;
+       }
 
        /* 
           basic mkdir
@@ -69,7 +75,7 @@ static BOOL test_mkdir(struct cli_state *cli, TALLOC_CTX *mem_ctx)
        printf("testing mkdir collision with file\n");
 
        /* name collision with a file */
-       cli_close(cli, create_complex_file(cli, mem_ctx, path));
+       smbcli_close(cli->tree, create_complex_file(cli, tctx, path));
        status = smb_raw_mkdir(cli->tree, &md);
        CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_COLLISION);
 
@@ -79,7 +85,7 @@ static BOOL test_mkdir(struct cli_state *cli, TALLOC_CTX *mem_ctx)
        status = smb_raw_rmdir(cli->tree, &rd);
        CHECK_STATUS(status, NT_STATUS_NOT_A_DIRECTORY);
 
-       cli_unlink(cli, path);
+       smbcli_unlink(cli->tree, path);
 
        printf("testing invalid dir\n");
 
@@ -95,23 +101,59 @@ static BOOL test_mkdir(struct cli_state *cli, TALLOC_CTX *mem_ctx)
        md.t2mkdir.in.path = path;
        md.t2mkdir.in.num_eas = 0;      
        status = smb_raw_mkdir(cli->tree, &md);
-       CHECK_STATUS(status, NT_STATUS_UNSUCCESSFUL);
+       CHECK_STATUS(status, NT_STATUS_OK);
+
+       status = smb_raw_rmdir(cli->tree, &rd);
+       CHECK_STATUS(status, NT_STATUS_OK);
+
+       printf("testing t2mkdir bad path\n");
+       md.t2mkdir.in.path = talloc_asprintf(tctx, "%s\\bad_path\\bad_path",
+                                            BASEDIR);
+       status = smb_raw_mkdir(cli->tree, &md);
+       CHECK_STATUS(status, NT_STATUS_OBJECT_PATH_NOT_FOUND);
 
        printf("testing t2mkdir with EAs\n");
 
        /* with EAs */
-       md.t2mkdir.in.num_eas = 1;
-       md.t2mkdir.in.eas = talloc(mem_ctx, sizeof(md.t2mkdir.in.eas[0]));
+       md.t2mkdir.level = RAW_MKDIR_T2MKDIR;
+       md.t2mkdir.in.path = path;
+       md.t2mkdir.in.num_eas = 3;
+       md.t2mkdir.in.eas = talloc_array(tctx, struct ea_struct, md.t2mkdir.in.num_eas);
        md.t2mkdir.in.eas[0].flags = 0;
        md.t2mkdir.in.eas[0].name.s = "EAONE";
-       md.t2mkdir.in.eas[0].value = data_blob_talloc(mem_ctx, "1", 1);
+       md.t2mkdir.in.eas[0].value = data_blob_talloc(tctx, "blah", 4);
+       md.t2mkdir.in.eas[1].flags = 0;
+       md.t2mkdir.in.eas[1].name.s = "EA TWO";
+       md.t2mkdir.in.eas[1].value = data_blob_talloc(tctx, "foo bar", 7);
+       md.t2mkdir.in.eas[2].flags = 0;
+       md.t2mkdir.in.eas[2].name.s = "EATHREE";
+       md.t2mkdir.in.eas[2].value = data_blob_talloc(tctx, "xx1", 3);
        status = smb_raw_mkdir(cli->tree, &md);
-       CHECK_STATUS(status, NT_STATUS_UNSUCCESSFUL);
 
+       if (torture_setting_bool(tctx, "samba3", false)
+           && NT_STATUS_EQUAL(status, NT_STATUS_EAS_NOT_SUPPORTED)) {
+               d_printf("EAS not supported -- not treating as fatal\n");
+       }
+       else {
+               /*
+                * In Samba3, don't see this error as fatal
+                */
+               CHECK_STATUS(status, NT_STATUS_OK);
+
+               status = torture_check_ea(cli, path, "EAONE", "blah");
+               CHECK_STATUS(status, NT_STATUS_OK);
+               status = torture_check_ea(cli, path, "EA TWO", "foo bar");
+               CHECK_STATUS(status, NT_STATUS_OK);
+               status = torture_check_ea(cli, path, "EATHREE", "xx1");
+               CHECK_STATUS(status, NT_STATUS_OK);
+
+               status = smb_raw_rmdir(cli->tree, &rd);
+               CHECK_STATUS(status, NT_STATUS_OK);
+       }
 
 done:
-       cli_rmdir(cli, path);
-       cli_unlink(cli, path);
+       smb_raw_exit(cli->session);
+       smbcli_deltree(cli->tree, BASEDIR);
        return ret;
 }
 
@@ -119,23 +161,14 @@ done:
 /* 
    basic testing of all RAW_MKDIR_* calls 
 */
-BOOL torture_raw_mkdir(int dummy)
+bool torture_raw_mkdir(struct torture_context *torture, 
+                      struct smbcli_state *cli)
 {
-       struct cli_state *cli;
-       BOOL ret = True;
-       TALLOC_CTX *mem_ctx;
-
-       if (!torture_open_connection(&cli)) {
-               return False;
-       }
-
-       mem_ctx = talloc_init("torture_raw_mkdir");
+       bool ret = true;
 
-       if (!test_mkdir(cli, mem_ctx)) {
-               ret = False;
+       if (!test_mkdir(cli, torture)) {
+               ret = false;
        }
 
-       torture_close_connection(cli);
-       talloc_destroy(mem_ctx);
        return ret;
 }