OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # |
| 3 # Copyright 2010 Google Inc. |
| 4 # |
| 5 # Permission is hereby granted, free of charge, to any person obtaining a |
| 6 # copy of this software and associated documentation files (the |
| 7 # "Software"), to deal in the Software without restriction, including |
| 8 # without limitation the rights to use, copy, modify, merge, publish, dis- |
| 9 # tribute, sublicense, and/or sell copies of the Software, and to permit |
| 10 # persons to whom the Software is furnished to do so, subject to the fol- |
| 11 # lowing conditions: |
| 12 # |
| 13 # The above copyright notice and this permission notice shall be included |
| 14 # in all copies or substantial portions of the Software. |
| 15 # |
| 16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 17 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- |
| 18 # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT |
| 19 # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 20 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 22 # IN THE SOFTWARE. |
| 23 |
| 24 """Utility class for gslib unit tests""" |
| 25 |
| 26 import sys |
| 27 import wildcard_iterator |
| 28 # Put local libs at front of path so tests will run latest lib code rather |
| 29 # than whatever code is found on user's PYTHONPATH. |
| 30 sys.path.insert(0, '.') |
| 31 sys.path.insert(0, 'boto') |
| 32 import boto |
| 33 from gslib.project_id import ProjectIdHandler |
| 34 from tests.integration.s3 import mock_storage_service |
| 35 |
| 36 proj_id_handler = ProjectIdHandler() |
| 37 |
| 38 |
| 39 def test_wildcard_iterator(uri_or_str, debug=0): |
| 40 """ |
| 41 Convenience method for instantiating a testing instance of |
| 42 WildCardIterator, without having to specify all the params of that class |
| 43 (like bucket_storage_uri_class=mock_storage_service.MockBucketStorageUri). |
| 44 Also naming the factory method this way makes it clearer in the test code |
| 45 that WildcardIterator needs to be set up for testing. |
| 46 |
| 47 Args are same as for wildcard_iterator.wildcard_iterator(), except there's |
| 48 no bucket_storage_uri_class arg. |
| 49 |
| 50 Returns: |
| 51 WildcardIterator.IterUris(), over which caller can iterate. |
| 52 """ |
| 53 return wildcard_iterator.wildcard_iterator( |
| 54 uri_or_str, proj_id_handler, |
| 55 mock_storage_service.MockBucketStorageUri, debug=debug) |
| 56 |
| 57 |
| 58 def test_storage_uri(uri_str, default_scheme='file', debug=0, validate=True): |
| 59 """ |
| 60 Convenience method for instantiating a testing |
| 61 instance of StorageUri, without having to specify |
| 62 bucket_storage_uri_class=mock_storage_service.MockBucketStorageUri. |
| 63 Also naming the factory method this way makes it clearer in the test |
| 64 code that StorageUri needs to be set up for testing. |
| 65 |
| 66 Args, Returns, and Raises are same as for boto.storage_uri(), except there's |
| 67 no bucket_storage_uri_class arg. |
| 68 """ |
| 69 return boto.storage_uri(uri_str, default_scheme, debug, validate, |
| 70 mock_storage_service.MockBucketStorageUri) |
OLD | NEW |