summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c')
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c65
1 files changed, 65 insertions, 0 deletions
diff --git a/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c
new file mode 100644
index 0000000..49547bc
--- /dev/null
+++ b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c
@@ -0,0 +1,65 @@
+#include "test.h"
+#include "mongo.h"
+
+#include "libmongo-private.h"
+
+#include <unistd.h>
+
+void
+test_mongo_sync_gridfs_stream_seek (void)
+{
+ mongo_sync_connection *conn;
+ mongo_sync_gridfs *gfs;
+ mongo_sync_gridfs_stream *stream;
+
+ mongo_util_oid_init (0);
+
+ ok (mongo_sync_gridfs_stream_seek (NULL, 0, SEEK_SET) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with a NULL stream");
+
+ begin_network_tests (8);
+
+ conn = mongo_sync_connect (config.primary_host, config.primary_port, FALSE);
+ gfs = mongo_sync_gridfs_new (conn, config.gfs_prefix);
+
+ stream = mongo_sync_gridfs_stream_new (gfs, NULL);
+
+ ok (mongo_sync_gridfs_stream_seek (stream, 0, SEEK_SET) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with a write stream");
+
+ stream->file.type = LMC_GRIDFS_FILE_STREAM_READER;
+
+ ok (mongo_sync_gridfs_stream_seek (stream, -1, SEEK_SET) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with SEEK_SET and a negative "
+ "position");
+
+ ok (mongo_sync_gridfs_stream_seek (stream, 10, SEEK_SET) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with SEEK_SET and a position "
+ "past EOF");
+
+ ok (mongo_sync_gridfs_stream_seek (stream, -1, SEEK_CUR) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with SEEK_CUR and a position "
+ "before the start");
+
+ ok (mongo_sync_gridfs_stream_seek (stream, 10, SEEK_CUR) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with SEEK_CUR and a position "
+ "past EOF");
+
+ ok (mongo_sync_gridfs_stream_seek (stream, 1, SEEK_END) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with SEEK_END and a position "
+ "past EOF");
+
+ ok (mongo_sync_gridfs_stream_seek (stream, -1, SEEK_END) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with SEEK_END and a position "
+ "before the start");
+
+ ok (mongo_sync_gridfs_stream_seek (stream, 0, 42) == FALSE,
+ "mongo_sync_gridfs_stream_seek() fails with an invalid whence");
+
+ mongo_sync_gridfs_stream_close (stream);
+ mongo_sync_gridfs_free (gfs, TRUE);
+
+ end_network_tests ();
+}
+
+RUN_TEST (9, mongo_sync_gridfs_stream_seek);