summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_validate_key.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2014-12-02 10:06:21 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2014-12-02 10:06:21 +0100
commitfd841e416881cc0392e61ec312c1870f3a0004bd (patch)
tree8357ba56e79d614ba57f722e7878b853591dc339 /tests/unit/bson/bson_validate_key.c
Initial import of libmongo-client version 0.1.8-2
Diffstat (limited to 'tests/unit/bson/bson_validate_key.c')
-rw-r--r--tests/unit/bson/bson_validate_key.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/unit/bson/bson_validate_key.c b/tests/unit/bson/bson_validate_key.c
new file mode 100644
index 0000000..126b1fd
--- /dev/null
+++ b/tests/unit/bson/bson_validate_key.c
@@ -0,0 +1,36 @@
+#include "tap.h"
+#include "test.h"
+
+#include <errno.h>
+#include <bson.h>
+#include <string.h>
+
+void
+test_bson_validate_key (void)
+{
+ gboolean valid;
+
+ valid = bson_validate_key (NULL, FALSE, FALSE);
+ ok (valid == FALSE && errno == EINVAL,
+ "bson_validate_key() sets errno when the key is NULL");
+
+ valid = bson_validate_key ("$foo.bar", FALSE, FALSE);
+ ok (valid == TRUE,
+ "bson_validate_key() returns success if both checks are off");
+
+ valid = bson_validate_key ("$foo.bar", FALSE, TRUE);
+ ok (valid == FALSE,
+ "bson_validate_key() returns failiure if the key starts with a $");
+ valid = bson_validate_key ("foo.bar$", FALSE, TRUE);
+ ok (valid == TRUE,
+ "bson_validate_key() returns success if the key does not start with a $");
+
+ valid = bson_validate_key ("foo.bar", TRUE, TRUE);
+ ok (valid == FALSE,
+ "bson_validate_key() returns failiure if the key contains a dot");
+ valid = bson_validate_key ("foobar", TRUE, TRUE);
+ ok (valid == TRUE,
+ "bson_validate_key() returns success if the key does not contain a dot");
+}
+
+RUN_TEST (6, bson_validate_key)