summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSeif Lotfy <seif@lotfy.com>2011-08-23 14:58:58 +0200
committerSeif Lotfy <seif@lotfy.com>2011-08-23 14:58:58 +0200
commit8515551e487507ee9e534309ebc719fe3a802e8f (patch)
treed7d1c00759f3fee645ffc4a1e121c11b392b4c4b /test
parentfaf731c453350c9279eb2a5d57908655cf0f41af (diff)
Implement handle_move_event method
implemented precompiled stmt move_stmt uncomment annotations for working testcases
Diffstat (limited to 'test')
-rw-r--r--test/dbus/engine-test.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/dbus/engine-test.py b/test/dbus/engine-test.py
index a7c2c359..d6ecb839 100644
--- a/test/dbus/engine-test.py
+++ b/test/dbus/engine-test.py
@@ -837,8 +837,8 @@ class ResultTypeTest(testutils.RemoteTestCase):
events = self.getEventsAndWait(ids)
self.assertEquals([e.timestamp for e in events],
- ["200", "153", "123"]) #FIXME: handling "MOVE_EVENT" not implmented yet
-
+ ["200", "153", "123"])
+
def testResultTypesLeastRecentCurrentUri(self):
import_events("test/data/five_events.js", self)
import_events("test/data/five_events_ext_move.js", self)
@@ -848,7 +848,7 @@ class ResultTypeTest(testutils.RemoteTestCase):
result_type = ResultType.LeastRecentCurrentUri)
events = self.getEventsAndWait(ids)
self.assertEquals([e.timestamp for e in events],
- ["123", "153", "200"]) #FIXME: handling "MOVE_EVENT" not implmented yet
+ ["123", "153", "200"])
def testResultTypesMostPopularCurrentUri(self):
import_events("test/data/five_events.js", self)
@@ -859,7 +859,7 @@ class ResultTypeTest(testutils.RemoteTestCase):
result_type = ResultType.MostPopularCurrentUri)
events = self.getEventsAndWait(ids)
self.assertEquals([e.timestamp for e in events],
- ["200", "123", "153"]) #FIXME: handling "MOVE_EVENT" not implmented yet
+ ["200", "123", "153"])
def testResultTypesLeastPopularCurrentUri(self):
import_events("test/data/five_events.js", self)
@@ -870,7 +870,7 @@ class ResultTypeTest(testutils.RemoteTestCase):
result_type = ResultType.LeastPopularCurrentUri)
events = self.getEventsAndWait(ids)
self.assertEquals([e.timestamp for e in events],
- ["123", "153", "163", "200"]) #FIXME: handling "MOVE_EVENT" not implmented yet
+ ["123", "153", "163", "200"]) #FIXME: Sorting by LeastPopularCurrentUri not implmented yet or faulty
def testResultTypesMostRecentActor(self):
import_events("test/data/twenty_events.js", self)