forked from GoogleCloudPlatform/python-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_task_queue.py
More file actions
89 lines (72 loc) · 2.89 KB
/
test_task_queue.py
File metadata and controls
89 lines (72 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 2015 Google Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START taskqueue]
import operator
import os
import unittest
from google.appengine.api import taskqueue
from google.appengine.ext import deferred
from google.appengine.ext import testbed
class TaskQueueTestCase(unittest.TestCase):
def setUp(self):
self.testbed = testbed.Testbed()
self.testbed.activate()
# root_path must be set the the location of queue.yaml.
# Otherwise, only the 'default' queue will be available.
self.testbed.init_taskqueue_stub(
root_path=os.path.join(os.path.dirname(__file__), 'resources'))
self.taskqueue_stub = self.testbed.get_stub(
testbed.TASKQUEUE_SERVICE_NAME)
def tearDown(self):
self.testbed.deactivate()
def testTaskAddedToQueue(self):
taskqueue.Task(name='my_task', url='/url/of/my/task/').add()
tasks = self.taskqueue_stub.get_filtered_tasks()
assert len(tasks) == 1
assert tasks[0].name == 'my_task'
# [END taskqueue]
# [START filtering]
def testFiltering(self):
taskqueue.Task(name='task_one', url='/url/of/task/1/').add('queue-1')
taskqueue.Task(name='task_two', url='/url/of/task/2/').add('queue-2')
# All tasks
tasks = self.taskqueue_stub.get_filtered_tasks()
assert len(tasks) == 2
# Filter by name
tasks = self.taskqueue_stub.get_filtered_tasks(name='task_one')
assert len(tasks) == 1
assert tasks[0].name == 'task_one'
# Filter by URL
tasks = self.taskqueue_stub.get_filtered_tasks(url='/url/of/task/1/')
assert len(tasks) == 1
assert tasks[0].name == 'task_one'
# Filter by queue
tasks = self.taskqueue_stub.get_filtered_tasks(queue_names='queue-1')
assert len(tasks) == 1
assert tasks[0].name == 'task_one'
# Multiple queues
tasks = self.taskqueue_stub.get_filtered_tasks(
queue_names=['queue-1', 'queue-2'])
assert len(tasks) == 2
# [END filtering]
# [START deferred]
def testTaskAddedByDeferred(self):
deferred.defer(operator.add, 1, 2)
tasks = self.taskqueue_stub.get_filtered_tasks()
assert len(tasks) == 1
result = deferred.run(tasks[0].payload)
assert result == 3
# [END deferred]
if __name__ == '__main__':
unittest.main()