自从升级到 Google App Engine SDK 版本 1.8.2 以来,我们的频道 API 相关单元测试之一一直存在问题。
这里是瘦子。
我们有一个处理程序,它创建一个通道并返回通道 ID 以及通道令牌。该处理程序看起来像:
import json
from uuid import uuid4
from google.appengine.api.channel import channel
import webapp2
class ChannelSubscriptionHandler(webapp2.RequestHandler):
def get(self):
self.response.headers['Context-Type'] = 'application/json'
channel_id = str(uuid4())
token = channel.create_channel(channel_id)
self.response.write(json.dumps({
'channel_id': channel_id,
'token': token
}))
app = webapp2.WSGIApplication([
('/channel_subscription/', ChannelSubscriptionHandler)
], debug=True)
没有什么疯狂的事情发生,只是创建一个频道并返回详细信息。
然后我们有一个单元测试练习,处理程序代码如下所示:
import json
from unittest import TestCase
from google.appengine.api.channel import channel
from google.appengine.ext.testbed import Testbed
from webtest import TestApp
import example_channel_api_handler
class ChannelSubscriptionHandlerTests(TestCase):
def setUp(self):
self.testbed = Testbed()
self.testbed.activate()
self.testbed.init_channel_stub()
self.channel_stub = self.testbed.get_stub('channel')
self.app = TestApp(example_channel_api_handler.app)
def test_can_get_channel_subscription(self):
response = self.app.get('/channel_subscription/', status=200)
data = json.loads(response.body)
token = data.get('token', None)
channel_id = data.get('channel_id', None)
self.assertIsNotNone(token)
self.assertIsNotNone(channel_id)
self.channel_stub.connect_channel(token)
channel.send_message(channel_id, 'Hello World')
self.assertEquals(['Hello World'], self.channel_stub.get_channel_messages(token))
就像我上面说的,在 GAE SDK 1.8.2 版本之前,上面的测试就像一个魅力。我扫描了最新版本的发行说明,确实看到了一些与 Channel API 相关的东西,但它看起来并不适用于我遇到的问题。
此外,上面的代码并不是真正来自我正在处理的应用程序,但它复制了我所描述的问题。
最后,应用程序在生产中似乎没有出现问题,就像这个问题围绕着 Channel API 的测试平台。
谢谢阅读。