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
|
# -*- 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 preggy import expect
import thumbor.handler_lists.upload as handler_list
from thumbor.handlers.image_resource import ImageResourceHandler
from thumbor.handlers.upload import ImageUploadHandler
from thumbor.testing import TestCase
class UploadHandlerListTestCase(TestCase):
def test_can_get_handlers(self):
ctx = self.get_context()
ctx.config.UPLOAD_ENABLED = True
handlers = handler_list.get_handlers(ctx)
expect(handlers).not_to_be_null()
expect(handlers).to_length(2)
url, handler, init = handlers[0]
expect(url).to_equal(r"/image")
expect(handler).to_equal(ImageUploadHandler)
expect(init).to_equal({"context": ctx})
url, handler, init = handlers[1]
expect(url).to_equal(r"/image/(.*)")
expect(handler).to_equal(ImageResourceHandler)
expect(init).to_equal({"context": ctx})
def test_can_disable_upload(self):
ctx = self.get_context()
ctx.config.UPLOAD_ENABLED = False
handlers = handler_list.get_handlers(ctx)
expect(handlers).not_to_be_null()
expect(handlers).to_be_empty()
|