diff options
| -rw-r--r-- | api/src/glfs-fops.c | 1 | ||||
| -rw-r--r-- | tests/basic/gfapi/gfapi-dup.c | 82 | ||||
| -rwxr-xr-x | tests/basic/gfapi/gfapi-dup.sh | 27 | 
3 files changed, 110 insertions, 0 deletions
diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c index 55474693731..c981297b0b9 100644 --- a/api/src/glfs-fops.c +++ b/api/src/glfs-fops.c @@ -4055,6 +4055,7 @@ pub_glfs_dup (struct glfs_fd *glfd)  	}  	dupfd->fd = fd_ref (fd); +        dupfd->state = glfd->state;  out:  	if (fd)  		fd_unref (fd); diff --git a/tests/basic/gfapi/gfapi-dup.c b/tests/basic/gfapi/gfapi-dup.c new file mode 100644 index 00000000000..450fbdc4186 --- /dev/null +++ b/tests/basic/gfapi/gfapi-dup.c @@ -0,0 +1,82 @@ +#include <stdio.h> +#include <string.h> +#include <errno.h> +#include <glusterfs/api/glfs.h> +#include <glusterfs/api/glfs-handles.h> + +#define VALIDATE_AND_GOTO_LABEL_ON_ERROR(func, ret, label) do { \ +        if (ret < 0) {            \ +                fprintf (stderr, "%s : returned error %d (%s)\n", \ +                         func, ret, strerror (errno)); \ +                goto label; \ +        } \ +        } while (0) + +int +main (int argc, char *argv[]) +{ +        int             ret = -1; +        int             flags = O_RDWR|O_SYNC; +        glfs_t         *fs = NULL; +        glfs_fd_t      *fd1 = NULL; +        glfs_fd_t      *fd2 = NULL; +        char           *volname = NULL; +        char           *logfile = NULL; +        const char     *filename = "file_tmp"; +        const char     *buff = "An opinion should be the result of thought, " +                                "not a substitute for it."; + +        if (argc != 3) { +                fprintf (stderr, "Invalid argument\n"); +                return 1; +        } + +        volname = argv[1]; +        logfile = argv[2]; + +        fs = glfs_new (volname); +        if (!fs) +                VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_new", ret, out); + +        ret = glfs_set_volfile_server (fs, "tcp", "localhost", 24007); +        VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_set_volfile_server", ret, out); + +        ret = glfs_set_logging (fs, logfile, 7); +        VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_set_logging", ret, out); + +        ret = glfs_init (fs); +        VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_init", ret, out); + +        fd1 = glfs_creat(fs, filename, flags, 0644); +        if (fd1 == NULL) { +                ret = -1; +                VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_creat", ret, out); +        } + +        ret = glfs_write (fd1, buff, strlen (buff), flags); +        VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_write", ret, out); + +        fd2 = glfs_dup(fd1); +        if (fd2 == NULL) { +                ret = -1; +                VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_dup", ret, out); +        } + +        ret = glfs_lseek (fd2, 0, SEEK_SET); +        VALIDATE_AND_GOTO_LABEL_ON_ERROR ("glfs_lseek", ret, out); + +out: +        if (fd1 != NULL) +                glfs_close(fd1); +        if (fd2 != NULL) +                glfs_close(fd2); +        if (fs) { +                ret = glfs_fini(fs); +                if (ret) +                        fprintf (stderr, "glfs_fini(fs) returned %d\n", ret); +        } + +        return ret; +} + + diff --git a/tests/basic/gfapi/gfapi-dup.sh b/tests/basic/gfapi/gfapi-dup.sh new file mode 100755 index 00000000000..6c89e0e473d --- /dev/null +++ b/tests/basic/gfapi/gfapi-dup.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +. $(dirname $0)/../../include.rc +. $(dirname $0)/../../volume.rc + +cleanup; + +TEST glusterd + +TEST $CLI volume create $V0 localhost:$B0/brick1; +EXPECT 'Created' volinfo_field $V0 'Status'; + +TEST $CLI volume start $V0; +EXPECT 'Started' volinfo_field $V0 'Status'; + +logdir=`gluster --print-logdir` + +build_tester $(dirname $0)/gfapi-dup.c -lgfapi -o $(dirname $0)/gfapi-dup + +TEST ./$(dirname $0)/gfapi-dup $V0  $logdir/gfapi-dup.log + +cleanup_tester $(dirname $0)/gfapi-dup + +TEST $CLI volume stop $V0 +TEST $CLI volume delete $V0 + +cleanup;  | 
