#include "tap.h" #include "test.h" #include "bson.h" #include void test_bson_cursor_get_symbol (void) { bson *b; bson_cursor *c; const gchar *s = "deadbeef"; ok (bson_cursor_get_symbol (NULL, &s) == FALSE, "bson_cursor_get_symbol() with a NULL cursor fails"); b = test_bson_generate_full (); c = bson_cursor_new (b); ok (bson_cursor_get_symbol (c, NULL) == FALSE, "bson_cursor_get_symbol() with a NULL destination fails"); ok (bson_cursor_get_symbol (c, &s) == FALSE, "bson_cursor_get_symbol() at the initial position fails"); is (s, "deadbeef", "destination remains unchanged after failed cursor operations"); bson_cursor_free (c); c = bson_find (b, "sex"); ok (bson_cursor_get_symbol (c, &s), "bson_cursor_get_symbol() works"); is (s, "Marilyn Monroe", "bson_cursor_get_symbol() returns the correct result"); bson_cursor_next (c); ok (bson_cursor_get_symbol (c, &s) == FALSE, "bson_cursor_get_symbol() should fail when the cursor points to " "non-symbol data"); bson_cursor_free (c); bson_free (b); } RUN_TEST (7, bson_cursor_get_symbol);