Exemple #1
0
 def test_auth_no_reseller_prefix_allow(self):
     # Ensures that when we have no reseller prefix, we can still allow
     # access if our auth server accepts requests
     old_http_connect = auth.http_connect
     try:
         local_app = FakeApp()
         local_auth = \
             auth.filter_factory({'reseller_prefix': ''})(local_app)
         auth.http_connect = mock_http_connect(
             204, {
                 'x-auth-ttl': '1234',
                 'x-auth-groups': 'act:usr,act,AUTH_cfa'
             })
         reqenv = {
             'REQUEST_METHOD': 'GET',
             'PATH_INFO': '/v1/act',
             'HTTP_X_AUTH_TOKEN': 't',
             'swift.cache': None
         }
         result = ''.join(local_auth(reqenv, lambda x, y: None))
         self.assert_(result.startswith('204'), result)
         self.assert_(local_app.i_was_called)
         self.assertEquals(reqenv['swift.authorize'], local_auth.authorize)
     finally:
         auth.http_connect = old_http_connect
Exemple #2
0
 def test_auth_no_reseller_prefix_no_token(self):
     # Check that normally we set up a call back to our authorize.
     local_auth = \
         auth.filter_factory({'reseller_prefix': ''})(FakeApp())
     reqenv = {'REQUEST_METHOD': 'GET', 'PATH_INFO': '/v1/account',
               'swift.cache': FakeMemcache()}
     result = ''.join(local_auth(reqenv, lambda x, y: None))
     self.assert_(result.startswith('401'), result)
     self.assertEquals(reqenv['swift.authorize'], local_auth.authorize)
     # Now make sure we don't override an existing swift.authorize when we
     # have no reseller prefix.
     local_authorize = lambda req: None
     reqenv['swift.authorize'] = local_authorize
     result = ''.join(local_auth(reqenv, lambda x, y: None))
     self.assert_(result.startswith('204'), result)
     self.assertEquals(reqenv['swift.authorize'], local_authorize)
Exemple #3
0
 def test_auth_no_reseller_prefix_no_token(self):
     # Check that normally we set up a call back to our authorize.
     local_auth = \
         auth.filter_factory({'reseller_prefix': ''})(FakeApp())
     reqenv = {
         'REQUEST_METHOD': 'GET',
         'PATH_INFO': '/v1/account',
         'swift.cache': FakeMemcache()
     }
     result = ''.join(local_auth(reqenv, lambda x, y: None))
     self.assert_(result.startswith('401'), result)
     self.assertEquals(reqenv['swift.authorize'], local_auth.authorize)
     # Now make sure we don't override an existing swift.authorize when we
     # have no reseller prefix.
     local_authorize = lambda req: None
     reqenv['swift.authorize'] = local_authorize
     result = ''.join(local_auth(reqenv, lambda x, y: None))
     self.assert_(result.startswith('204'), result)
     self.assertEquals(reqenv['swift.authorize'], local_authorize)
Exemple #4
0
 def test_auth_no_reseller_prefix_allow(self):
     # Ensures that when we have no reseller prefix, we can still allow
     # access if our auth server accepts requests
     old_http_connect = auth.http_connect
     try:
         local_app = FakeApp()
         local_auth = \
             auth.filter_factory({'reseller_prefix': ''})(local_app)
         auth.http_connect = mock_http_connect(204,
            {'x-auth-ttl': '1234', 'x-auth-groups': 'act:usr,act,AUTH_cfa'})
         reqenv = {'REQUEST_METHOD': 'GET', 'PATH_INFO': '/v1/act',
             'HTTP_X_AUTH_TOKEN': 't', 'swift.cache': None}
         result = ''.join(local_auth(reqenv, lambda x, y: None))
         self.assert_(result.startswith('204'), result)
         self.assert_(local_app.i_was_called)
         self.assertEquals(reqenv['swift.authorize'],
                           local_auth.authorize)
     finally:
         auth.http_connect = old_http_connect
Exemple #5
0
 def test_auth_no_reseller_prefix_deny(self):
     # Ensures that when we have no reseller prefix, we don't deny a request
     # outright but set up a denial swift.authorize and pass the request on
     # down the chain.
     old_http_connect = auth.http_connect
     try:
         local_app = FakeApp()
         local_auth = \
             auth.filter_factory({'reseller_prefix': ''})(local_app)
         auth.http_connect = mock_http_connect(404)
         reqenv = {'REQUEST_METHOD': 'GET', 'PATH_INFO': '/v1/account',
             'HTTP_X_AUTH_TOKEN': 't', 'swift.cache': FakeMemcache()}
         result = ''.join(local_auth(reqenv, lambda x, y: None))
         self.assert_(result.startswith('401'), result)
         self.assert_(local_app.i_was_called)
         self.assertEquals(reqenv['swift.authorize'],
                           local_auth.denied_response)
     finally:
         auth.http_connect = old_http_connect
Exemple #6
0
 def test_auth_no_reseller_prefix_deny(self):
     # Ensures that when we have no reseller prefix, we don't deny a request
     # outright but set up a denial swift.authorize and pass the request on
     # down the chain.
     old_http_connect = auth.http_connect
     try:
         local_app = FakeApp()
         local_auth = \
             auth.filter_factory({'reseller_prefix': ''})(local_app)
         auth.http_connect = mock_http_connect(404)
         reqenv = {
             'REQUEST_METHOD': 'GET',
             'PATH_INFO': '/v1/account',
             'HTTP_X_AUTH_TOKEN': 't',
             'swift.cache': FakeMemcache()
         }
         result = ''.join(local_auth(reqenv, lambda x, y: None))
         self.assert_(result.startswith('401'), result)
         self.assert_(local_app.i_was_called)
         self.assertEquals(reqenv['swift.authorize'],
                           local_auth.denied_response)
     finally:
         auth.http_connect = old_http_connect
Exemple #7
0
 def setUp(self):
     self.test_auth = auth.filter_factory({})(FakeApp())
Exemple #8
0
 def setUp(self):
     self.test_auth = auth.filter_factory({})(FakeApp())