summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync-gridfs-stream
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/mongo/sync-gridfs-stream')
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_close.c41
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_find.c36
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_new.c43
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_read.c44
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_seek.c65
-rw-r--r--tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_write.c50
6 files changed, 279 insertions, 0 deletions
diff --git a/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_close.c b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_close.c
new file mode 100644
index 0000000..3c8a7b3
--- /dev/null
+++ b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_close.c
@@ -0,0 +1,41 @@
+#include "test.h"
+#include "mongo.h"
+
+#include "libmongo-private.h"
+
+void
+test_mongo_sync_gridfs_stream_close (void)
+{
+ mongo_sync_connection *conn;
+ mongo_sync_gridfs *gfs;
+ mongo_sync_gridfs_stream *stream;
+
+ mongo_util_oid_init (0);
+
+ ok (mongo_sync_gridfs_stream_close (NULL) == FALSE,
+ "mongo_sync_gridfs_stream_close() fails with a NULL stream");
+
+ begin_network_tests (3);
+
+ 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_close (stream) == TRUE,
+ "mongo_sync_gridfs_stream_close() works with a write stream");
+
+ stream = mongo_sync_gridfs_stream_new (gfs, NULL);
+ stream->file.type = LMC_GRIDFS_FILE_CHUNKED;
+ ok (mongo_sync_gridfs_stream_close (stream) == FALSE,
+ "mongo_sync_gridfs_stream_close() should fail with a chunked file");
+
+ stream->file.type = LMC_GRIDFS_FILE_STREAM_READER;
+ ok (mongo_sync_gridfs_stream_close (stream) == TRUE,
+ "mongo_sync_gridfs_stream_close() works with a read stream");
+
+ mongo_sync_gridfs_free (gfs, TRUE);
+
+ end_network_tests ();
+}
+
+RUN_TEST (4, mongo_sync_gridfs_stream_close);
diff --git a/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_find.c b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_find.c
new file mode 100644
index 0000000..643a8b2
--- /dev/null
+++ b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_find.c
@@ -0,0 +1,36 @@
+#include "test.h"
+#include "mongo.h"
+
+void
+test_mongo_sync_gridfs_stream_find (void)
+{
+ mongo_sync_connection *conn;
+ mongo_sync_gridfs *gfs;
+ bson *query;
+
+ query = bson_build (BSON_TYPE_STRING, "filename", "bogus-fn", -1,
+ BSON_TYPE_NONE);
+ bson_finish (query);
+
+ ok (mongo_sync_gridfs_stream_find (NULL, query) == NULL,
+ "mongo_sync_gridfs_stream_find() should fail with a NULL connection");
+
+ begin_network_tests (2);
+
+ conn = mongo_sync_connect (config.primary_host, config.primary_port, FALSE);
+ gfs = mongo_sync_gridfs_new (conn, config.gfs_prefix);
+
+ ok (mongo_sync_gridfs_stream_find (gfs, NULL) == NULL,
+ "mongo_sync_gridfs_stream_find() fails with a NULL query");
+
+ ok (mongo_sync_gridfs_stream_find (gfs, query) == NULL,
+ "mongo_sync_gridfs_stream_find() fails if the file is not found");
+
+ mongo_sync_gridfs_free (gfs, TRUE);
+
+ end_network_tests ();
+
+ bson_free (query);
+}
+
+RUN_TEST (3, mongo_sync_gridfs_stream_find);
diff --git a/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_new.c b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_new.c
new file mode 100644
index 0000000..75e4419
--- /dev/null
+++ b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_new.c
@@ -0,0 +1,43 @@
+#include "test.h"
+#include "mongo.h"
+
+void
+test_mongo_sync_gridfs_stream_new (void)
+{
+ mongo_sync_connection *conn;
+ mongo_sync_gridfs *gfs;
+ mongo_sync_gridfs_stream *stream;
+ bson *meta;
+
+ mongo_util_oid_init (0);
+
+ meta = bson_build (BSON_TYPE_STRING, "my-id", "sync_gridfs_stream_new", -1,
+ BSON_TYPE_NONE);
+ bson_finish (meta);
+
+ ok (mongo_sync_gridfs_stream_new (NULL, meta) == FALSE,
+ "mongo_sync_gridfs_stream_new() should fail with a NULL connection");
+
+ begin_network_tests (2);
+
+ 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 (stream != NULL,
+ "mongo_sync_gridfs_stream_new() works with NULL metadata");
+ mongo_sync_gridfs_stream_close (stream);
+
+ stream = mongo_sync_gridfs_stream_new (gfs, meta);
+ ok (stream != NULL,
+ "mongo_sync_gridfs_stream_new() works with metadata");
+ mongo_sync_gridfs_stream_close (stream);
+
+ mongo_sync_gridfs_free (gfs, TRUE);
+
+ end_network_tests ();
+
+ bson_free (meta);
+}
+
+RUN_TEST (3, mongo_sync_gridfs_stream_new);
diff --git a/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_read.c b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_read.c
new file mode 100644
index 0000000..a53aa88
--- /dev/null
+++ b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_read.c
@@ -0,0 +1,44 @@
+#include "test.h"
+#include "mongo.h"
+
+#include "libmongo-private.h"
+
+void
+test_mongo_sync_gridfs_stream_read (void)
+{
+ mongo_sync_connection *conn;
+ mongo_sync_gridfs *gfs;
+ mongo_sync_gridfs_stream *stream;
+ guint8 buffer[4096];
+
+ mongo_util_oid_init (0);
+
+ ok (mongo_sync_gridfs_stream_read (NULL, buffer, sizeof (buffer)) == -1,
+ "mongo_sync_gridfs_stream_read() should fail with a NULL connection");
+
+ begin_network_tests (3);
+
+ 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_read (stream, buffer, sizeof (buffer)) == -1,
+ "mongo-sync_gridfs_stream_read() should fail when the stream is "
+ "write-only");
+
+ stream->file.type = LMC_GRIDFS_FILE_STREAM_READER;
+
+ ok (mongo_sync_gridfs_stream_read (stream, NULL, sizeof (buffer)) == -1,
+ "mongo_sync_gridfs_stream_read() should fail with a NULL buffer");
+ ok (mongo_sync_gridfs_stream_read (stream, buffer, 0) == -1,
+ "mongo_sync_gridfs_stream_read() should fail with a 0 size");
+
+ mongo_sync_gridfs_stream_close (stream);
+
+ mongo_sync_gridfs_free (gfs, TRUE);
+
+ end_network_tests ();
+}
+
+RUN_TEST (4, mongo_sync_gridfs_stream_read);
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);
diff --git a/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_write.c b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_write.c
new file mode 100644
index 0000000..562c7b4
--- /dev/null
+++ b/tests/unit/mongo/sync-gridfs-stream/sync_gridfs_stream_write.c
@@ -0,0 +1,50 @@
+#include "test.h"
+#include "mongo.h"
+
+#include "libmongo-private.h"
+
+void
+test_mongo_sync_gridfs_stream_write (void)
+{
+ mongo_sync_connection *conn;
+ mongo_sync_gridfs *gfs;
+ mongo_sync_gridfs_stream *stream;
+ bson *meta;
+ guint8 buffer[4096];
+
+ mongo_util_oid_init (0);
+
+ meta = bson_build (BSON_TYPE_STRING, "my-id", "sync_gridfs_stream_write", -1,
+ BSON_TYPE_NONE);
+ bson_finish (meta);
+
+ ok (mongo_sync_gridfs_stream_write (NULL, buffer, sizeof (buffer)) == FALSE,
+ "mongo_sync_gridfs_stream_write() should fail with a NULL connection");
+
+ begin_network_tests (4);
+
+ 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, meta);
+
+ ok (mongo_sync_gridfs_stream_write (stream, NULL, sizeof (buffer)) == FALSE,
+ "mongo_sync_gridfs_stream_write() should fail with a NULL buffer");
+ ok (mongo_sync_gridfs_stream_write (stream, buffer, 0) == FALSE,
+ "mongo_sync_gridfs_stream_write() should fail with 0 size");
+ ok (mongo_sync_gridfs_stream_write (stream, buffer, sizeof (buffer)) == TRUE,
+ "mongo_sync_gridfs_stream_write() works");
+
+ stream->file.type = LMC_GRIDFS_FILE_STREAM_READER;
+ ok (mongo_sync_gridfs_stream_write (stream, buffer, sizeof (buffer)) == FALSE,
+ "mongo_sync_gridfs_stream_write() should fail with a read stream");
+
+ mongo_sync_gridfs_stream_close (stream);
+ mongo_sync_gridfs_free (gfs, TRUE);
+
+ end_network_tests ();
+
+ bson_free (meta);
+}
+
+RUN_TEST (5, mongo_sync_gridfs_stream_write);