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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
# Copyright 2012-2015 MongoDB, 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.
"""Test utilities for using Motor with Tornado web applications."""
import datetime
import email
import re
import test
import time
import unittest
from test.test_environment import CA_PEM, CLIENT_PEM, env
import gridfs
from tornado import testing
from tornado.web import Application
import motor
import motor.web
from motor.motor_gridfs import _hash_gridout
# We're using Tornado's AsyncHTTPTestCase instead of our own MotorTestCase for
# the convenience of self.fetch().
class GridFSHandlerTestBase(testing.AsyncHTTPTestCase):
def setUp(self):
super().setUp()
self.fs = gridfs.GridFS(test.env.sync_cx.motor_test)
# Make a 500k file in GridFS with filename 'foo'
self.contents = b"Jesse" * 100 * 1024
# Record when we created the file, to check the Last-Modified header
self.put_start = datetime.datetime.now(datetime.timezone.utc).replace(
microsecond=0, tzinfo=None
)
file_id = "id"
self.file_id = file_id
self.fs.delete(self.file_id)
self.fs.put(self.contents, _id=file_id, filename="foo", content_type="my type")
item = self.fs.get(file_id)
self.contents_hash = _hash_gridout(item)
self.put_end = datetime.datetime.now(datetime.timezone.utc).replace(
microsecond=0, tzinfo=None
)
self.assertTrue(self.fs.get_last_version("foo"))
def motor_db(self, **kwargs):
if env.mongod_started_with_ssl:
kwargs.setdefault("tlsCAFile", CA_PEM)
kwargs.setdefault("tlsCertificateKeyFile", CLIENT_PEM)
kwargs.setdefault("tls", env.mongod_started_with_ssl)
client = motor.MotorClient(test.env.uri, io_loop=self.io_loop, **kwargs)
return client.motor_test
def tearDown(self):
self.fs.delete(self.file_id)
super().tearDown()
# Workaround for https://github.com/pytest-dev/pytest/issues/12263.
def runTest(self):
pass
def get_app(self):
return Application([("/(.+)", motor.web.GridFSHandler, {"database": self.motor_db()})])
def stop(self, *args, **kwargs):
# A stop() method more permissive about the number of its positional
# arguments than AsyncHTTPTestCase.stop
if len(args) == 1:
testing.AsyncHTTPTestCase.stop(self, args[0], **kwargs)
else:
testing.AsyncHTTPTestCase.stop(self, args, **kwargs)
def parse_date(self, d):
date_tuple = email.utils.parsedate(d)
return datetime.datetime.fromtimestamp(time.mktime(date_tuple))
def last_mod(self, response):
"""Parse the 'Last-Modified' header from an HTTP response into a
datetime.
"""
return self.parse_date(response.headers["Last-Modified"])
def expires(self, response):
return self.parse_date(response.headers["Expires"])
class GridFSHandlerTest(GridFSHandlerTestBase):
def test_basic(self):
# First request
response = self.fetch("/foo")
self.assertEqual(200, response.code)
self.assertEqual(self.contents, response.body)
self.assertEqual(len(self.contents), int(response.headers["Content-Length"]))
self.assertEqual("my type", response.headers["Content-Type"])
self.assertEqual("public", response.headers["Cache-Control"])
self.assertTrue("Expires" not in response.headers)
etag = response.headers["Etag"]
last_mod_dt = self.last_mod(response)
self.assertEqual(self.contents_hash, etag.strip('"'))
self.assertTrue(self.put_start <= last_mod_dt <= self.put_end)
# Now check we get 304 NOT MODIFIED responses as appropriate
for ims_value in (last_mod_dt, last_mod_dt + datetime.timedelta(seconds=1)):
response = self.fetch("/foo", if_modified_since=ims_value)
self.assertEqual(304, response.code)
self.assertEqual(b"", response.body)
# If-Modified-Since in the past, get whole response back
response = self.fetch("/foo", if_modified_since=last_mod_dt - datetime.timedelta(seconds=1))
self.assertEqual(200, response.code)
self.assertEqual(self.contents, response.body)
# Matching Etag
response = self.fetch("/foo", headers={"If-None-Match": etag})
self.assertEqual(304, response.code)
self.assertEqual(b"", response.body)
# Mismatched Etag
response = self.fetch("/foo", headers={"If-None-Match": etag + "a"})
self.assertEqual(200, response.code)
self.assertEqual(self.contents, response.body)
def test_404(self):
response = self.fetch("/bar")
self.assertEqual(404, response.code)
def test_head(self):
response = self.fetch("/foo", method="HEAD")
# Get Etag and parse Last-Modified into a datetime
etag = response.headers["Etag"]
last_mod_dt = self.last_mod(response)
# Test the result
self.assertEqual(200, response.code)
self.assertEqual(b"", response.body) # Empty body for HEAD request
self.assertEqual(len(self.contents), int(response.headers["Content-Length"]))
self.assertEqual("my type", response.headers["Content-Type"])
self.assertEqual(self.contents_hash, etag.strip('"'))
self.assertTrue(self.put_start <= last_mod_dt <= self.put_end)
self.assertEqual("public", response.headers["Cache-Control"])
def test_content_type(self):
# Check that GridFSHandler uses file extension to guess Content-Type
# if not provided
for filename, expected_type in [
("foo.jpg", "jpeg"),
("foo.png", "png"),
("ht.html", "html"),
]:
# 'fs' is PyMongo's blocking GridFS
self.fs.put(b"", filename=filename)
for method in "GET", "HEAD":
response = self.fetch("/" + filename, method=method)
self.assertEqual(200, response.code)
# mimetypes are platform-defined, be fuzzy
self.assertIn(expected_type, response.headers["Content-Type"].lower())
class TZAwareGridFSHandlerTest(GridFSHandlerTestBase):
def motor_db(self):
return super().motor_db(tz_aware=True)
def test_tz_aware(self):
now = datetime.datetime.now(datetime.timezone.utc).replace(tzinfo=None)
ago = now - datetime.timedelta(minutes=10)
hence = now + datetime.timedelta(minutes=10)
response = self.fetch("/foo", if_modified_since=ago)
self.assertEqual(200, response.code)
response = self.fetch("/foo", if_modified_since=hence)
self.assertEqual(304, response.code)
class CustomGridFSHandlerTest(GridFSHandlerTestBase):
def get_app(self):
class CustomGridFSHandler(motor.web.GridFSHandler):
def get_gridfs_file(self, bucket, filename, request):
# Test overriding the get_gridfs_file() method, path is
# interpreted as file_id instead of filename.
return bucket.open_download_stream(file_id=filename)
def get_cache_time(self, path, modified, mime_type):
return 10
def set_extra_headers(self, path, gridout):
self.set_header("quux", "fizzledy")
return Application([("/(.+)", CustomGridFSHandler, {"database": self.motor_db()})])
def test_get_gridfs_file(self):
# We overrode get_gridfs_file so we expect getting by filename *not* to
# work now; we'll get a 404. We have to get by file_id now.
response = self.fetch("/foo")
self.assertEqual(404, response.code)
response = self.fetch("/" + str(self.file_id))
self.assertEqual(200, response.code)
self.assertEqual(self.contents, response.body)
cache_control = response.headers["Cache-Control"]
self.assertTrue(re.match(r"max-age=\d+", cache_control))
self.assertEqual(10, int(cache_control.split("=")[1]))
expires = self.expires(response)
# It should expire about 10 seconds from now
self.assertTrue(
datetime.timedelta(seconds=8)
< expires - datetime.datetime.now(datetime.timezone.utc).replace(tzinfo=None)
< datetime.timedelta(seconds=12)
)
self.assertEqual("fizzledy", response.headers["quux"])
if __name__ == "__main__":
unittest.main()
|