2022-01-23 13:52:38 +01:00
|
|
|
import pytest
|
2021-12-23 21:13:25 +01:00
|
|
|
|
2022-01-23 13:52:38 +01:00
|
|
|
from httpie.models import ELAPSED_TIME_LABEL
|
|
|
|
from httpie.output.formatters.colors import PIE_STYLE_NAMES
|
|
|
|
from .utils import http, MockEnvironment, COLOR
|
2021-12-23 21:13:25 +01:00
|
|
|
|
2022-01-23 13:52:38 +01:00
|
|
|
|
|
|
|
def test_meta_elapsed_time(httpbin):
|
|
|
|
r = http('--meta', httpbin + '/delay/1')
|
|
|
|
assert f'{ELAPSED_TIME_LABEL}: 1.' in r
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('style', ['auto', 'fruity', *PIE_STYLE_NAMES])
|
|
|
|
def test_meta_elapsed_time_colors(httpbin, style):
|
|
|
|
r = http('--style', style, '--meta', httpbin + '/get', env=MockEnvironment(colors=256))
|
|
|
|
assert COLOR in r
|
|
|
|
assert ELAPSED_TIME_LABEL in r
|