2012-03-02 01:39:22 +01:00
|
|
|
import unittest
|
2012-03-02 01:40:40 +01:00
|
|
|
from StringIO import StringIO
|
|
|
|
from httpie import httpie
|
2012-03-02 01:39:22 +01:00
|
|
|
|
|
|
|
|
2012-03-02 01:40:40 +01:00
|
|
|
def http(*args, **kwargs):
|
|
|
|
stdout = StringIO()
|
|
|
|
httpie.main(args=args, stdout=stdout,
|
|
|
|
stdin_isatty=True,
|
|
|
|
stdout_isatty=False)
|
|
|
|
return stdout.getvalue()
|
|
|
|
|
|
|
|
|
|
|
|
# TODO: moar!
|
|
|
|
|
|
|
|
class TestHTTPie(unittest.TestCase):
|
|
|
|
|
|
|
|
def test_get(self):
|
|
|
|
http('GET', 'http://httpbin.org/get')
|
|
|
|
|
|
|
|
def test_json(self):
|
|
|
|
response = http('POST', 'http://httpbin.org/post', 'foo=bar')
|
|
|
|
self.assertIn('"foo": "bar"', response)
|
|
|
|
|
|
|
|
def test_form(self):
|
|
|
|
response = http('POST', '--form', 'http://httpbin.org/post', 'foo=bar')
|
|
|
|
self.assertIn('"foo": "bar"', response)
|
|
|
|
|
|
|
|
def test_headers(self):
|
|
|
|
response = http('GET', 'http://httpbin.org/headers', 'Foo:bar')
|
|
|
|
self.assertIn('"User-Agent": "HTTPie', response)
|
|
|
|
self.assertIn('"Foo": "bar"', response)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|