"""tests/test_output_format.py.

Tests the output format handlers included with Hug

Copyright (C) 2016 Timothy Edmund Crosley

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

"""
import os
from collections import namedtuple
from datetime import datetime, timedelta
from decimal import Decimal
from io import BytesIO
from uuid import UUID

import numpy
import pytest

import hug

from .constants import BASE_DIRECTORY


def test_text():
    """Ensure that it's possible to output a Hug API method as text"""
    hug.output_format.text("Hello World!") == "Hello World!"
    hug.output_format.text(str(1)) == "1"


def test_html(hug_api):
    """Ensure that it's possible to output a Hug API method as HTML"""
    hug.output_format.html("<html>Hello World!</html>") == "<html>Hello World!</html>"
    hug.output_format.html(str(1)) == "1"
    with open(os.path.join(BASE_DIRECTORY, "README.md"), "rb") as html_file:
        assert hasattr(hug.output_format.html(html_file), "read")

    class FakeHTMLWithRender:
        def render(self):
            return "test"

    assert hug.output_format.html(FakeHTMLWithRender()) == b"test"

    @hug.get("/get/html", output=hug.output_format.html, api=hug_api)
    def get_html(**kwargs):
        """
        Returns command help document when no command is specified
        """
        with open(os.path.join(BASE_DIRECTORY, "examples/document.html"), "rb") as html_file:
            return html_file.read()

    assert "<html>" in hug.test.get(hug_api, "/get/html").data


def test_json():
    """Ensure that it's possible to output a Hug API method as JSON"""
    now = datetime.now()
    one_day = timedelta(days=1)
    test_data = {"text": "text", "datetime": now, "bytes": b"bytes", "delta": one_day}
    output = hug.output_format.json(test_data).decode("utf8")
    assert "text" in output
    assert "bytes" in output
    assert str(one_day.total_seconds()) in output
    assert now.isoformat() in output

    class NewObject(object):
        pass

    test_data["non_serializable"] = NewObject()
    with pytest.raises(TypeError):
        hug.output_format.json(test_data).decode("utf8")

    class NamedTupleObject(namedtuple("BaseTuple", ("name", "value"))):
        pass

    data = NamedTupleObject("name", "value")
    converted = hug.input_format.json(BytesIO(hug.output_format.json(data)))
    assert converted == {"name": "name", "value": "value"}

    data = set((1, 2, 3, 3))
    assert hug.input_format.json(BytesIO(hug.output_format.json(data))) == [1, 2, 3]

    data = (number for number in range(1, 4))
    assert hug.input_format.json(BytesIO(hug.output_format.json(data))) == [1, 2, 3]

    data = [Decimal(1.5), Decimal("155.23"), Decimal("1234.25")]
    assert hug.input_format.json(BytesIO(hug.output_format.json(data))) == [
        "1.5",
        "155.23",
        "1234.25",
    ]

    with open(os.path.join(BASE_DIRECTORY, "README.md"), "rb") as json_file:
        assert hasattr(hug.output_format.json(json_file), "read")

    assert hug.input_format.json(BytesIO(hug.output_format.json(b"\x9c"))) == "nA=="

    class MyCrazyObject(object):
        pass

    @hug.output_format.json_convert(MyCrazyObject)
    def convert(instance):
        return "Like anyone could convert this"

    assert (
        hug.input_format.json(BytesIO(hug.output_format.json(MyCrazyObject())))
        == "Like anyone could convert this"
    )
    assert hug.input_format.json(
        BytesIO(hug.output_format.json({"data": ["Τη γλώσσα μου έδωσαν ελληνική"]}))
    ) == {"data": ["Τη γλώσσα μου έδωσαν ελληνική"]}


def test_pretty_json():
    """Ensure that it's possible to output a Hug API method as prettified and indented JSON"""
    test_data = {"text": "text"}
    assert hug.output_format.pretty_json(test_data).decode("utf8") == (
        "{\n" '    "text": "text"\n' "}"
    )


def test_json_camelcase():
    """Ensure that it's possible to output a Hug API method as camelCased JSON"""
    test_data = {
        "under_score": "values_can",
        "be_converted": [{"to_camelcase": "value"}, "wont_be_convert"],
    }
    output = hug.output_format.json_camelcase(test_data).decode("utf8")
    assert "underScore" in output
    assert "values_can" in output
    assert "beConverted" in output
    assert "toCamelcase" in output
    assert "value" in output
    assert "wont_be_convert" in output


def test_image():
    """Ensure that it's possible to output images with hug"""
    logo_path = os.path.join(BASE_DIRECTORY, "artwork", "logo.png")
    assert hasattr(hug.output_format.png_image(logo_path, hug.Response()), "read")
    with open(logo_path, "rb") as image_file:
        assert hasattr(hug.output_format.png_image(image_file, hug.Response()), "read")

    assert hug.output_format.png_image("Not Existent", hug.Response()) is None

    class FakeImageWithSave:
        def save(self, to, format):
            to.write(b"test")

    assert hasattr(hug.output_format.png_image(FakeImageWithSave(), hug.Response()), "read")

    class FakeImageWithRender:
        def render(self):
            return "test"

    assert hug.output_format.svg_xml_image(FakeImageWithRender(), hug.Response()) == "test"

    class FakeImageWithSaveNoFormat:
        def save(self, to):
            to.write(b"test")

    assert hasattr(hug.output_format.png_image(FakeImageWithSaveNoFormat(), hug.Response()), "read")


def test_file():
    """Ensure that it's possible to easily output files"""

    class FakeResponse(object):
        pass

    logo_path = os.path.join(BASE_DIRECTORY, "artwork", "logo.png")
    fake_response = FakeResponse()
    assert hasattr(hug.output_format.file(logo_path, fake_response), "read")
    assert fake_response.content_type == "image/png"
    with open(logo_path, "rb") as image_file:
        hasattr(hug.output_format.file(image_file, fake_response), "read")

    assert not hasattr(hug.output_format.file("NON EXISTENT FILE", fake_response), "read")
    assert hug.output_format.file(None, fake_response) == ""


def test_video():
    """Ensure that it's possible to output videos with hug"""
    gif_path = os.path.join(BASE_DIRECTORY, "artwork", "example.gif")
    assert hasattr(hug.output_format.mp4_video(gif_path, hug.Response()), "read")
    with open(gif_path, "rb") as image_file:
        assert hasattr(hug.output_format.mp4_video(image_file, hug.Response()), "read")

    assert hug.output_format.mp4_video("Not Existent", hug.Response()) is None

    class FakeVideoWithSave:
        def save(self, to, format):
            to.write(b"test")

    assert hasattr(hug.output_format.mp4_video(FakeVideoWithSave(), hug.Response()), "read")

    class FakeVideoWithSave:
        def render(self):
            return "test"

    assert hug.output_format.avi_video(FakeVideoWithSave(), hug.Response()) == "test"


def test_on_valid():
    """Test to ensure formats that use on_valid content types gracefully handle error dictionaries"""
    error_dict = {"errors": {"so": "many"}}
    expected = hug.output_format.json(error_dict)

    assert hug.output_format.mp4_video(error_dict, hug.Response()) == expected
    assert hug.output_format.png_image(error_dict, hug.Response()) == expected

    @hug.output_format.on_valid("image", hug.output_format.file)
    def my_output_format(data):
        raise ValueError("This should never be called")

    assert my_output_format(error_dict, hug.Response())


def test_on_content_type():
    """Ensure that it's possible to route the output type format by the requested content-type"""
    formatter = hug.output_format.on_content_type(
        {"application/json": hug.output_format.json, "text/plain": hug.output_format.text}
    )

    class FakeRequest(object):
        content_type = "application/json"

    request = FakeRequest()
    response = FakeRequest()
    converted = hug.input_format.json(
        formatter(BytesIO(hug.output_format.json({"name": "name"})), request, response)
    )
    assert converted == {"name": "name"}

    request.content_type = "text/plain"
    assert formatter("hi", request, response) == b"hi"

    with pytest.raises(hug.HTTPNotAcceptable):
        request.content_type = "undefined; always"
        formatter("hi", request, response)


def test_accept():
    """Ensure that it's possible to route the output type format by the requests stated accept header"""
    formatter = hug.output_format.accept(
        {"application/json": hug.output_format.json, "text/plain": hug.output_format.text}
    )

    class FakeRequest(object):
        accept = "application/json"

    request = FakeRequest()
    response = FakeRequest()
    converted = hug.input_format.json(
        formatter(BytesIO(hug.output_format.json({"name": "name"})), request, response)
    )
    assert converted == {"name": "name"}

    request.accept = "text/plain"
    assert formatter("hi", request, response) == b"hi"

    request.accept = "application/json, text/plain; q=0.5"
    assert formatter("hi", request, response) == b'"hi"'

    request.accept = "text/plain; q=0.5, application/json"
    assert formatter("hi", request, response) == b'"hi"'

    request.accept = "application/json;q=0.4,text/plain; q=0.5"
    assert formatter("hi", request, response) == b"hi"

    request.accept = "*"
    assert formatter("hi", request, response) in [b'"hi"', b"hi"]

    request.accept = "undefined; always"
    with pytest.raises(hug.HTTPNotAcceptable):
        formatter("hi", request, response)

    formatter = hug.output_format.accept(
        {"application/json": hug.output_format.json, "text/plain": hug.output_format.text},
        hug.output_format.json,
    )
    assert formatter("hi", request, response) == b'"hi"'


def test_accept_with_http_errors():
    """Ensure that content type based output formats work for HTTP error responses"""
    formatter = hug.output_format.accept(
        {"application/json": hug.output_format.json, "text/plain": hug.output_format.text},
        default=hug.output_format.json,
    )

    api = hug.API("test_accept_with_http_errors")
    hug.default_output_format(api=api)(formatter)

    @hug.get("/500", api=api)
    def error_500():
        raise hug.HTTPInternalServerError("500 Internal Server Error", "This is an example")

    response = hug.test.get(api, "/500")
    assert response.status == "500 Internal Server Error"
    assert response.data == {"errors": {"500 Internal Server Error": "This is an example"}}


def test_suffix():
    """Ensure that it's possible to route the output type format by the suffix of the requested URL"""
    formatter = hug.output_format.suffix(
        {".js": hug.output_format.json, ".html": hug.output_format.text}
    )

    class FakeRequest(object):
        path = "endpoint.js"

    request = FakeRequest()
    response = FakeRequest()
    converted = hug.input_format.json(
        formatter(BytesIO(hug.output_format.json({"name": "name"})), request, response)
    )
    assert converted == {"name": "name"}

    request.path = "endpoint.html"
    assert formatter("hi", request, response) == b"hi"

    with pytest.raises(hug.HTTPNotAcceptable):
        request.path = "undefined.always"
        formatter("hi", request, response)


def test_prefix():
    """Ensure that it's possible to route the output type format by the prefix of the requested URL"""
    formatter = hug.output_format.prefix(
        {"js/": hug.output_format.json, "html/": hug.output_format.text}
    )

    class FakeRequest(object):
        path = "js/endpoint"

    request = FakeRequest()
    response = FakeRequest()
    converted = hug.input_format.json(
        formatter(BytesIO(hug.output_format.json({"name": "name"})), request, response)
    )
    assert converted == {"name": "name"}

    request.path = "html/endpoint"
    assert formatter("hi", request, response) == b"hi"

    with pytest.raises(hug.HTTPNotAcceptable):
        request.path = "undefined.always"
        formatter("hi", request, response)


def test_json_converter_numpy_types():
    """Ensure that numpy-specific data types (array, int, float) are properly supported in JSON output."""
    ex_int = numpy.int_(9)
    ex_np_array = numpy.array([1, 2, 3, 4, 5])
    ex_np_int_array = numpy.int_([5, 4, 3])
    ex_np_float = numpy.float(0.5)

    assert 9 is hug.output_format._json_converter(ex_int)
    assert [1, 2, 3, 4, 5] == hug.output_format._json_converter(ex_np_array)
    assert [5, 4, 3] == hug.output_format._json_converter(ex_np_int_array)
    assert 0.5 == hug.output_format._json_converter(ex_np_float)

    # Some type names are merely shorthands.
    # The following shorthands for built-in types are excluded: numpy.bool, numpy.int, numpy.float.
    np_bool_types = [numpy.bool_, numpy.bool8]
    np_int_types = [
        numpy.int_,
        numpy.byte,
        numpy.ubyte,
        numpy.intc,
        numpy.uintc,
        numpy.intp,
        numpy.uintp,
        numpy.int8,
        numpy.uint8,
        numpy.int16,
        numpy.uint16,
        numpy.int32,
        numpy.uint32,
        numpy.int64,
        numpy.uint64,
        numpy.longlong,
        numpy.ulonglong,
        numpy.short,
        numpy.ushort,
    ]
    np_float_types = [
        numpy.float_,
        numpy.float32,
        numpy.float64,
        numpy.half,
        numpy.single,
        numpy.longfloat,
    ]
    np_unicode_types = [numpy.unicode_]
    np_bytes_types = [numpy.bytes_]

    for np_type in np_bool_types:
        assert True == hug.output_format._json_converter(np_type(True))
    for np_type in np_int_types:
        assert 1 is hug.output_format._json_converter(np_type(1))
    for np_type in np_float_types:
        assert 0.5 == hug.output_format._json_converter(np_type(0.5))
    for np_type in np_unicode_types:
        assert "a" == hug.output_format._json_converter(np_type("a"))
    for np_type in np_bytes_types:
        assert "a" == hug.output_format._json_converter(np_type("a"))


def test_json_converter_uuid():
    """Ensure that uuid data type is properly supported in JSON output."""
    uuidstr = "8ae4d8c1-e2d7-5cd0-8407-6baf16dfbca4"
    assert uuidstr == hug.output_format._json_converter(UUID(uuidstr))


def test_output_format_with_no_docstring():
    """Ensure it is safe to use formatters with no docstring"""

    @hug.format.content_type("test/fmt")
    def test_fmt(data, request=None, response=None):
        return str(data).encode("utf8")

    hug.output_format.on_content_type({"test/fmt": test_fmt})
