httpie-cli/tests/test_windows.py

26 lines
948 B
Python
Raw Normal View History

2014-04-24 15:17:23 +02:00
import pytest
from httpie.context import Environment
2014-04-24 15:17:23 +02:00
from .utils import MockEnvironment, http
2014-04-24 15:17:23 +02:00
from httpie.compat import is_windows
2014-04-24 14:07:31 +02:00
@pytest.mark.skipif(not is_windows, reason='windows-only')
class TestWindowsOnly:
2014-04-26 11:06:50 +02:00
@pytest.mark.skipif(True,
reason='this test for some reason kills the process')
def test_windows_colorized_output(self, httpbin):
2014-04-24 14:07:31 +02:00
# Spits out the colorized output.
2024-03-04 18:12:18 +01:00
http(httpbin + '/get', env=Environment())
2014-04-24 14:07:31 +02:00
class TestFakeWindows:
def test_output_file_pretty_not_allowed_on_windows(self, tmp_path, httpbin):
env = MockEnvironment(is_windows=True)
output_file = tmp_path / 'test_output_file_pretty_not_allowed_on_windows'
r = http('--output', str(output_file),
2024-03-04 18:12:18 +01:00
'--pretty=all', 'GET', httpbin + '/get',
env=env, tolerate_error_exit_status=True)
assert 'Only terminal output can be colorized on Windows' in r.stderr