[tracker/class-signal: 26/61] functional-tests: class-signal: Improved the test a little bit
- From: Philip Van Hoof <pvanhoof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/class-signal: 26/61] functional-tests: class-signal: Improved the test a little bit
- Date: Wed, 1 Sep 2010 12:40:40 +0000 (UTC)
commit 22b2730861ba373370473e493a953fed64a3afe4
Author: Philip Van Hoof <philip codeminded be>
Date: Mon Aug 23 11:18:05 2010 +0200
functional-tests: class-signal: Improved the test a little bit
tests/functional-tests/class-signal-test.vala | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
---
diff --git a/tests/functional-tests/class-signal-test.vala b/tests/functional-tests/class-signal-test.vala
index 5865404..1cdbbfe 100644
--- a/tests/functional-tests/class-signal-test.vala
+++ b/tests/functional-tests/class-signal-test.vala
@@ -20,7 +20,7 @@
using Tracker;
using Tracker.Sparql;
-const int max_signals = 1000;
+const int max_signals = 10000;
const string title_data = "title";
struct Event {
@@ -46,7 +46,7 @@ public class TestApp {
bool initialized = false;
Sparql.Connection signal_con;
Sparql.Connection con;
- string max_signals_s;
+ int total_signals_seen = 0;
public TestApp ()
requires (!initialized) {
@@ -63,8 +63,6 @@ public class TestApp {
resources_object.class_signal.connect (on_class_signal_received);
- max_signals_s = max_signals.to_string ();
-
} catch (Sparql.Error e) {
warning ("Could not connect to D-Bus service: %s", e.message);
initialized = false;
@@ -80,7 +78,7 @@ public class TestApp {
}
// Query looks like this:
- // SELECT ?t { ?r a nmm:MusicPiece; nie:title ?t .
+ // SELECT ?r ?t { ?r a nmm:MusicPiece; nie:title ?t .
// FILTER (tracker:id (?r) IN (id1, id2, id3))
// }
@@ -110,7 +108,11 @@ public class TestApp {
kind,
resource,
cursor.get_string (1));
- if (resource == max_signals_s) {
+ total_signals_seen++;
+
+ // We'll see ~ max_signals*2 things, (insert and delete, plus the
+ // resource creates too - so a little bit more)
+ if (total_signals_seen >= (max_signals*2)) {
loop.quit();
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]