1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Unit tests for oauth2client.multistore_file."""
import contextlib
import datetime
import json
import multiprocessing
import os
import tempfile
import fasteners
import mock
from six import StringIO
import unittest2
from oauth2client import client
from oauth2client.contrib import multiprocess_file_storage
from ..http_mock import HttpMockSequence
@contextlib.contextmanager
def scoped_child_process(target, **kwargs):
die_event = multiprocessing.Event()
ready_event = multiprocessing.Event()
process = multiprocessing.Process(
target=target, args=(die_event, ready_event), kwargs=kwargs)
process.start()
try:
ready_event.wait()
yield
finally:
die_event.set()
process.join(5)
def _create_test_credentials(expiration=None):
access_token = 'foo'
client_secret = 'cOuDdkfjxxnv+'
refresh_token = '1/0/a.df219fjls0'
token_expiry = expiration or (
datetime.datetime.utcnow() + datetime.timedelta(seconds=3600))
token_uri = 'https://www.google.com/accounts/o8/oauth2/token'
user_agent = 'refresh_checker/1.0'
credentials = client.OAuth2Credentials(
access_token, 'test-client-id', client_secret,
refresh_token, token_expiry, token_uri,
user_agent)
return credentials
def _generate_token_response_http(new_token='new_token'):
token_response = json.dumps({
'access_token': new_token,
'expires_in': '3600',
})
http = HttpMockSequence([
({'status': '200'}, token_response),
])
return http
class MultiprocessStorageBehaviorTests(unittest2.TestCase):
def setUp(self):
filehandle, self.filename = tempfile.mkstemp(
'oauth2client_test.data')
os.close(filehandle)
def tearDown(self):
try:
os.unlink(self.filename)
os.unlink('{0}.lock'.format(self.filename))
except OSError: # pragma: NO COVER
pass
def test_basic_operations(self):
credentials = _create_test_credentials()
store = multiprocess_file_storage.MultiprocessFileStorage(
self.filename, 'basic')
# Save credentials
store.put(credentials)
credentials = store.get()
self.assertIsNotNone(credentials)
self.assertEqual('foo', credentials.access_token)
# Reset internal cache, ensure credentials were saved.
store._backend._credentials = {}
credentials = store.get()
self.assertIsNotNone(credentials)
self.assertEqual('foo', credentials.access_token)
# Delete credentials
store.delete()
credentials = store.get()
self.assertIsNone(credentials)
def test_single_process_refresh(self):
store = multiprocess_file_storage.MultiprocessFileStorage(
self.filename, 'single-process')
credentials = _create_test_credentials()
credentials.set_store(store)
http = _generate_token_response_http()
credentials.refresh(http)
self.assertEqual(credentials.access_token, 'new_token')
retrieved = store.get()
self.assertEqual(retrieved.access_token, 'new_token')
def test_multi_process_refresh(self):
# This will test that two processes attempting to refresh credentials
# will only refresh once.
store = multiprocess_file_storage.MultiprocessFileStorage(
self.filename, 'multi-process')
credentials = _create_test_credentials()
credentials.set_store(store)
store.put(credentials)
def child_process_func(
die_event, ready_event, check_event): # pragma: NO COVER
store = multiprocess_file_storage.MultiprocessFileStorage(
self.filename, 'multi-process')
credentials = store.get()
self.assertIsNotNone(credentials)
# Make sure this thread gets to refresh first.
original_acquire_lock = store.acquire_lock
def replacement_acquire_lock(*args, **kwargs):
result = original_acquire_lock(*args, **kwargs)
ready_event.set()
check_event.wait()
return result
credentials.store.acquire_lock = replacement_acquire_lock
http = _generate_token_response_http('b')
credentials.refresh(http)
self.assertEqual(credentials.access_token, 'b')
check_event = multiprocessing.Event()
with scoped_child_process(child_process_func, check_event=check_event):
# The lock should be currently held by the child process.
self.assertFalse(
store._backend._process_lock.acquire(blocking=False))
check_event.set()
# The child process will refresh first, so we should end up
# with 'b' as the token.
http = mock.Mock()
credentials.refresh(http=http)
self.assertEqual(credentials.access_token, 'b')
self.assertFalse(http.request.called)
retrieved = store.get()
self.assertEqual(retrieved.access_token, 'b')
def test_read_only_file_fail_lock(self):
credentials = _create_test_credentials()
# Grab the lock in another process, preventing this process from
# acquiring the lock.
def child_process(die_event, ready_event): # pragma: NO COVER
lock = fasteners.InterProcessLock(
'{0}.lock'.format(self.filename))
with lock:
ready_event.set()
die_event.wait()
with scoped_child_process(child_process):
store = multiprocess_file_storage.MultiprocessFileStorage(
self.filename, 'fail-lock')
store.put(credentials)
self.assertTrue(store._backend._read_only)
# These credentials should still be in the store's memory-only cache.
self.assertIsNotNone(store.get())
class MultiprocessStorageUnitTests(unittest2.TestCase):
def setUp(self):
filehandle, self.filename = tempfile.mkstemp(
'oauth2client_test.data')
os.close(filehandle)
def tearDown(self):
try:
os.unlink(self.filename)
os.unlink('{0}.lock'.format(self.filename))
except OSError: # pragma: NO COVER
pass
def test__create_file_if_needed(self):
self.assertFalse(
multiprocess_file_storage._create_file_if_needed(self.filename))
os.unlink(self.filename)
self.assertTrue(
multiprocess_file_storage._create_file_if_needed(self.filename))
self.assertTrue(
os.path.exists(self.filename))
def test__get_backend(self):
backend_one = multiprocess_file_storage._get_backend('file_a')
backend_two = multiprocess_file_storage._get_backend('file_a')
backend_three = multiprocess_file_storage._get_backend('file_b')
self.assertIs(backend_one, backend_two)
self.assertIsNot(backend_one, backend_three)
def test__read_write_credentials_file(self):
credentials = _create_test_credentials()
contents = StringIO()
multiprocess_file_storage._write_credentials_file(
contents, {'key': credentials})
contents.seek(0)
data = json.load(contents)
self.assertEqual(data['file_version'], 2)
self.assertTrue(data['credentials']['key'])
# Read it back.
contents.seek(0)
results = multiprocess_file_storage._load_credentials_file(contents)
self.assertEqual(
results['key'].access_token, credentials.access_token)
# Add an invalid credential and try reading it back. It should ignore
# the invalid one but still load the valid one.
data['credentials']['invalid'] = '123'
results = multiprocess_file_storage._load_credentials_file(
StringIO(json.dumps(data)))
self.assertNotIn('invalid', results)
self.assertEqual(
results['key'].access_token, credentials.access_token)
def test__load_credentials_file_invalid_json(self):
contents = StringIO('{[')
self.assertEqual(
multiprocess_file_storage._load_credentials_file(contents), {})
def test__load_credentials_file_no_file_version(self):
contents = StringIO('{}')
self.assertEqual(
multiprocess_file_storage._load_credentials_file(contents), {})
def test__load_credentials_file_bad_file_version(self):
contents = StringIO(json.dumps({'file_version': 1}))
self.assertEqual(
multiprocess_file_storage._load_credentials_file(contents), {})
def test__load_credentials_no_open_file(self):
backend = multiprocess_file_storage._get_backend(self.filename)
backend._credentials = mock.Mock()
backend._credentials.update.side_effect = AssertionError()
backend._load_credentials()
def test_acquire_lock_nonexistent_file(self):
backend = multiprocess_file_storage._get_backend(self.filename)
os.unlink(self.filename)
backend._process_lock = mock.Mock()
backend._process_lock.acquire.return_value = False
backend.acquire_lock()
self.assertIsNone(backend._file)
def test_release_lock_with_no_file(self):
backend = multiprocess_file_storage._get_backend(self.filename)
backend._file = None
backend._read_only = True
backend._thread_lock.acquire()
backend.release_lock()
def test__refresh_predicate(self):
backend = multiprocess_file_storage._get_backend(self.filename)
credentials = _create_test_credentials()
self.assertFalse(backend._refresh_predicate(credentials))
credentials.invalid = True
self.assertTrue(backend._refresh_predicate(credentials))
credentials = _create_test_credentials(
expiration=(
datetime.datetime.utcnow() - datetime.timedelta(seconds=3600)))
self.assertTrue(backend._refresh_predicate(credentials))
if __name__ == '__main__': # pragma: NO COVER
unittest2.main()
|