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
|
# -*- coding: utf-8 -*-
# thumbor imaging service
# https://github.com/thumbor/thumbor/wiki
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com thumbor@googlegroups.com
from os.path import abspath, dirname, join
from preggy import expect
from tornado.testing import gen_test
from tests.base import TestCase
from thumbor.config import Config
from thumbor.context import Context
from thumbor.loaders import LoaderResult
from thumbor.loaders.file_loader import load
STORAGE_PATH = abspath(join(dirname(__file__), "../fixtures/images/"))
class FileLoaderTestCase(TestCase):
def setUp(self):
super().setUp()
config = Config(FILE_LOADER_ROOT_PATH=STORAGE_PATH)
self.ctx = Context(config=config)
async def load_file(self, file_name):
return await load(self.ctx, file_name)
@gen_test
async def test_should_load_file(self):
result = await self.load_file("image.jpg")
expect(result).to_be_instance_of(LoaderResult)
with open(join(STORAGE_PATH, "image.jpg"), "rb") as img:
expect(result.buffer).to_equal(img.read())
expect(result.successful).to_be_true()
@gen_test
async def test_should_fail_when_inexistent_file(self):
result = await self.load_file("image_NOT.jpg")
expect(result).to_be_instance_of(LoaderResult)
expect(result.buffer).to_equal(None)
expect(result.successful).to_be_false()
@gen_test
async def test_should_fail_when_outside_root_path(self):
result = await self.load_file("../__init__.py")
expect(result).to_be_instance_of(LoaderResult)
expect(result.buffer).to_equal(None)
expect(result.successful).to_be_false()
@gen_test
async def test_should_load_file_with_spaces_in_name(self):
result = await self.load_file("image .jpg")
expect(result).to_be_instance_of(LoaderResult)
with open(join(STORAGE_PATH, "image.jpg"), "rb") as img:
expect(result.buffer).to_equal(img.read())
expect(result.successful).to_be_true()
@gen_test
async def test_should_load_file_with_spaces_encoded_in_name(self):
result = await self.load_file("image2%20.jpg")
expect(result).to_be_instance_of(LoaderResult)
with open(join(STORAGE_PATH, "image2%20.jpg"), "rb") as img:
expect(result.buffer).to_equal(img.read())
expect(result.successful).to_be_true()
|