File: test_healthcheck_handler_list.py

package info (click to toggle)
thumbor 7.7.7-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,556 kB
  • sloc: xml: 295,435; python: 18,673; ansic: 1,479; makefile: 360; sh: 27
file content (37 lines) | stat: -rw-r--r-- 1,174 bytes parent folder | download
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
# -*- 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.healthcheck as handler_list
from thumbor.handlers.healthcheck import HealthcheckHandler
from thumbor.testing import TestCase


class HealthcheckHandlerListTestCase(TestCase):
    def test_can_get_handlers(self):
        handlers = handler_list.get_handlers(self.context)

        expect(handlers).not_to_be_null()
        expect(handlers).to_length(1)
        url, handler = handlers[0]
        expect(url).to_equal(r"/healthcheck/?")
        expect(handler).to_equal(HealthcheckHandler)

    def test_can_get_handlers_with_custom_url(self):
        ctx = self.get_context()
        ctx.config.HEALTHCHECK_ROUTE = "/health"

        handlers = handler_list.get_handlers(ctx)

        expect(handlers).not_to_be_null()
        expect(handlers).to_length(1)
        url, handler = handlers[0]
        expect(url).to_equal("/health")
        expect(handler).to_equal(HealthcheckHandler)