-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #24: Add unit tests for uploads.
- Loading branch information
Mike Taylor
committed
Aug 18, 2015
1 parent
8457d9e
commit d70f002
Showing
1 changed file
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
'''Tests for image upload API endpoint.''' | ||
|
||
import os.path | ||
import sys | ||
import unittest | ||
|
||
from flask import Request | ||
from StringIO import StringIO | ||
from werkzeug import FileStorage | ||
from werkzeug.datastructures import MultiDict | ||
|
||
# Add webcompat module to import path | ||
sys.path.append(os.path.realpath(os.pardir)) | ||
|
||
from webcompat import app | ||
|
||
|
||
class TestUploads(unittest.TestCase): | ||
# modified from http://prschmid.blogspot.com/2013/05/unit-testing-flask-file-uploads-without.html | ||
def setUp(self): | ||
app.config['TESTING'] = True | ||
self.app = app | ||
self.test_client = self.app.test_client() | ||
|
||
def tearDown(self): | ||
pass | ||
|
||
def testGet(self): | ||
'''Test that /upload/ doesn't let you GET.''' | ||
rv = self.test_client.get('/upload/') | ||
self.assertEqual(rv.status_code, 404) | ||
|
||
def testBadUploads(self): | ||
# Loop over some files and the status codes that we are expecting | ||
for filename, status_code in \ | ||
(('foo.xxx', 415), ('foo', 415), ('foo.rb', 415)): | ||
|
||
# The reason why we are defining it in here and not outside | ||
# this method is that we are setting the filename of the | ||
# TestingFileStorage to be the one in the for loop. This way | ||
# we can ensure that the filename that we are "uploading" | ||
# is the same as the one being used by the application | ||
class TestingRequest(Request): | ||
"""A testing request to use that will return a | ||
TestingFileStorage to test the uploading.""" | ||
@property | ||
def files(self): | ||
d = MultiDict() | ||
d['image'] = TestingFileStorage(filename=filename) | ||
return d | ||
|
||
self.app.request_class = TestingRequest | ||
test_client = self.app.test_client() | ||
|
||
rv = test_client.post( | ||
'/upload/', | ||
data=dict( | ||
file=(StringIO('Fake image data'), filename), | ||
)) | ||
self.assertEqual(rv.status_code, status_code) | ||
|
||
def testGoodUploads(self): | ||
# Loop over some files and the URLs that we are expecting back | ||
for filename, status_code in \ | ||
(('foo.png', 201), ('foo.jpg', 201), ('foo.gif', 201), | ||
('foo.jpe', 201), ('foo.jpeg', 201), ('foo.bmp', 201)): | ||
|
||
class TestingRequest(Request): | ||
"""A testing request to use that will return a | ||
TestingFileStorage to test the uploading.""" | ||
@property | ||
def files(self): | ||
d = MultiDict() | ||
d['image'] = TestingFileStorage(filename=filename) | ||
return d | ||
|
||
self.app.request_class = TestingRequest | ||
test_client = self.app.test_client() | ||
|
||
rv = test_client.post( | ||
'/upload/', | ||
data=dict( | ||
file=(StringIO('Fake image data'), filename), | ||
)) | ||
self.assertEqual(rv.status_code, status_code) | ||
|
||
|
||
class TestingFileStorage(FileStorage): | ||
""" | ||
This is a helper for testing upload behavior in your application. You | ||
can manually create it, and its save method is overloaded to set `saved` | ||
to the name of the file it was saved to. All of these parameters are | ||
optional, so only bother setting the ones relevant to your application. | ||
This was copied from Flask-Uploads. | ||
:param stream: A stream. The default is an empty stream. | ||
:param filename: The filename uploaded from the client. The default is the | ||
stream's name. | ||
:param name: The name of the form field it was loaded from. The default is | ||
``None``. | ||
:param content_type: The content type it was uploaded as. The default is | ||
``application/octet-stream``. | ||
:param content_length: How long it is. The default is -1. | ||
:param headers: Multipart headers as a `werkzeug.Headers`. The default is | ||
``None``. | ||
""" | ||
def __init__(self, stream=None, filename=None, name=None, | ||
content_type='application/octet-stream', content_length=-1, | ||
headers=None): | ||
FileStorage.__init__( | ||
self, stream, filename, name=name, | ||
content_type=content_type, content_length=content_length, | ||
headers=None) | ||
self.saved = None | ||
|
||
def save(self, dst, buffer_size=16384): | ||
""" | ||
This marks the file as saved by setting the `saved` attribute to the | ||
name of the file it was saved to. | ||
:param dst: The file to save to. | ||
:param buffer_size: Ignored. | ||
""" | ||
if isinstance(dst, basestring): | ||
self.saved = dst | ||
else: | ||
self.saved = dst.name | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |