2014-04-24 14:07:31 +02:00
|
|
|
import os
|
|
|
|
import shutil
|
2014-04-24 14:58:15 +02:00
|
|
|
from unittest import TestCase
|
2014-04-24 14:07:31 +02:00
|
|
|
|
2014-04-24 15:17:04 +02:00
|
|
|
from tests import TestEnvironment, mk_config_dir, http, httpbin, HTTP_OK
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
|
2014-04-24 14:58:15 +02:00
|
|
|
class SessionsTest(TestCase):
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
@property
|
|
|
|
def env(self):
|
|
|
|
return TestEnvironment(config_dir=self.config_dir)
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
# Start a full-blown session with a custom request header,
|
|
|
|
# authorization, and response cookies.
|
|
|
|
self.config_dir = mk_config_dir()
|
|
|
|
r = http(
|
|
|
|
'--follow',
|
|
|
|
'--session=test',
|
|
|
|
'--auth=username:password',
|
|
|
|
'GET',
|
|
|
|
httpbin('/cookies/set?hello=world'),
|
|
|
|
'Hello:World',
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
shutil.rmtree(self.config_dir)
|
|
|
|
|
|
|
|
def test_session_create(self):
|
|
|
|
# Verify that the session has been created.
|
|
|
|
r = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
|
|
|
assert r.json['headers']['Hello'] == 'World'
|
|
|
|
assert r.json['headers']['Cookie'] == 'hello=world'
|
|
|
|
assert 'Basic ' in r.json['headers']['Authorization']
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_session_ignored_header_prefixes(self):
|
|
|
|
r = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
'Content-Type: text/plain',
|
|
|
|
'If-Unmodified-Since: Sat, 29 Oct 1994 19:43:31 GMT',
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
r2 = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get')
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r2
|
|
|
|
assert 'Content-Type' not in r2.json['headers']
|
|
|
|
assert 'If-Unmodified-Since' not in r2.json['headers']
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_session_update(self):
|
|
|
|
# Get a response to a request from the original session.
|
|
|
|
r1 = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r1
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
# Make a request modifying the session data.
|
|
|
|
r2 = http(
|
|
|
|
'--follow',
|
|
|
|
'--session=test',
|
|
|
|
'--auth=username:password2',
|
|
|
|
'GET',
|
|
|
|
httpbin('/cookies/set?hello=world2'),
|
|
|
|
'Hello:World2',
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r2
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
# Get a response to a request from the updated session.
|
|
|
|
r3 = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r3
|
|
|
|
assert r3.json['headers']['Hello'] == 'World2'
|
|
|
|
assert r3.json['headers']['Cookie'] == 'hello=world2'
|
|
|
|
assert (r1.json['headers']['Authorization'] !=
|
|
|
|
r3.json['headers']['Authorization'])
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_session_read_only(self):
|
|
|
|
# Get a response from the original session.
|
|
|
|
r1 = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r1
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
# Make a request modifying the session data but
|
|
|
|
# with --session-read-only.
|
|
|
|
r2 = http(
|
|
|
|
'--follow',
|
|
|
|
'--session-read-only=test',
|
|
|
|
'--auth=username:password2',
|
|
|
|
'GET',
|
|
|
|
httpbin('/cookies/set?hello=world2'),
|
|
|
|
'Hello:World2',
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r2
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
# Get a response from the updated session.
|
|
|
|
r3 = http(
|
|
|
|
'--session=test',
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r3
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
# Origin can differ on Travis.
|
|
|
|
del r1.json['origin'], r3.json['origin']
|
|
|
|
# Different for each request.
|
|
|
|
del r1.json['headers']['X-Request-Id'], \
|
|
|
|
r3.json['headers']['X-Request-Id']
|
|
|
|
# Should be the same as before r2.
|
2014-04-24 14:58:15 +02:00
|
|
|
assert r1.json == r3.json
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
def test_session_by_path(self):
|
|
|
|
session_path = os.path.join(self.config_dir, 'session-by-path.json')
|
|
|
|
r1 = http(
|
|
|
|
'--session=' + session_path,
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
'Foo:Bar',
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r1
|
2014-04-24 14:07:31 +02:00
|
|
|
|
|
|
|
r2 = http(
|
|
|
|
'--session=' + session_path,
|
|
|
|
'GET',
|
|
|
|
httpbin('/get'),
|
|
|
|
env=self.env
|
|
|
|
)
|
2014-04-24 14:58:15 +02:00
|
|
|
assert HTTP_OK in r2
|
2014-04-24 14:07:31 +02:00
|
|
|
|
2014-04-24 14:58:15 +02:00
|
|
|
assert r2.json['headers']['Foo'] in 'Bar'
|