summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2022-05-01 13:14:50 +0200
committerCarlos Garnacho <carlosg@gnome.org>2022-05-01 19:44:47 +0200
commitda2aa1eb462c4c3e36be01314e723a15f6a395a9 (patch)
tree2c8f34666cc9bd8660a866206f077a5cfa594fa7 /tests
parent1eff0bc7588de47e4be3393905fb9550c5ef7624 (diff)
downloadtracker-da2aa1eb462c4c3e36be01314e723a15f6a395a9.tar.gz
tests: Do not use separate test to poke cursors after last next()
Currently, the behavior of tracker_sparql_cursor_get*() over an already finished cursor is inconsistent. All return NULL, but some trigger a warning and some don't. Since we want to run these tests on all connections, at the moment drop this test that asserted for failures/warnings. We might want to find a consistent behavior and test for it, and if it turns out to involve runtime warnings, it is best to use g_test_expect_message() than subprocesses.
Diffstat (limited to 'tests')
-rw-r--r--tests/libtracker-sparql/tracker-cursor-test.c30
1 files changed, 2 insertions, 28 deletions
diff --git a/tests/libtracker-sparql/tracker-cursor-test.c b/tests/libtracker-sparql/tracker-cursor-test.c
index 392340f71..fefdae4ae 100644
--- a/tests/libtracker-sparql/tracker-cursor-test.c
+++ b/tests/libtracker-sparql/tracker-cursor-test.c
@@ -171,28 +171,6 @@ test_tracker_sparql_query_iterate_error (gpointer fixture,
g_error_free (error);
}
-/* Runs a query returning an empty set */
-static void
-test_tracker_sparql_query_iterate_empty_subprocess (gpointer fixture,
- gconstpointer user_data)
-{
- TrackerSparqlCursor *cursor;
- GError *error = NULL;
- const gchar *query = "SELECT ?r WHERE {?r a nfo:FileDataObject; nao:identifier \"thisannotationdoesnotexist\"}";
-
- cursor = tracker_sparql_connection_query (connection, query, NULL, &error);
-
- g_assert_true (tracker_sparql_cursor_next (cursor, NULL, NULL));
-
- /* Testing we fail with this error:
- *
- * Tracker-CRITICAL **:
- * tracker_bus_fd_cursor_real_get_string: assertion '(_tmp0_
- * < _tmp2_) && (_tmp3_ != NULL)' failed
- */
- tracker_sparql_cursor_get_string (cursor, 0, NULL);
-}
-
static void
test_tracker_sparql_query_iterate_empty (gpointer fixture,
gconstpointer user_data)
@@ -206,13 +184,10 @@ test_tracker_sparql_query_iterate_empty (gpointer fixture,
g_assert_true (cursor);
g_assert_no_error (error);
- g_assert_true (!tracker_sparql_cursor_next (cursor, NULL, NULL));
- /* This should be 1, the original test had it wrong: there's one column,
- * no matter if there are no results*/
+ g_assert_false (tracker_sparql_cursor_next (cursor, NULL, NULL));
g_assert_true (tracker_sparql_cursor_get_n_columns (cursor) == 1);
- g_test_trap_subprocess ("/libtracker-sparql/cursor/tracker_sparql_query_iterate_empty/subprocess", 0, 0);
- g_test_trap_assert_failed ();
+ /* FIXME: test behavior of cursor getters after last value */
g_object_unref (cursor);
}
@@ -606,7 +581,6 @@ TestInfo tests[] = {
{ "tracker_sparql_query_iterate_largerow", test_tracker_sparql_query_iterate_largerow },
{ "tracker_sparql_query_iterate_error", test_tracker_sparql_query_iterate_error },
{ "tracker_sparql_query_iterate_empty", test_tracker_sparql_query_iterate_empty },
- { "tracker_sparql_query_iterate_empty/subprocess", test_tracker_sparql_query_iterate_empty_subprocess },
{ "tracker_sparql_query_iterate_sigpipe", test_tracker_sparql_query_iterate_sigpipe },
{ "tracker_sparql_query_iterate_async", test_tracker_sparql_query_iterate_async },
{ "tracker_sparql_query_iterate_async_cancel", test_tracker_sparql_query_iterate_async_cancel },