1 # -*- coding: utf-8 -*-
2 # Copyright 2014 Google Inc. All Rights Reserved.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License. .
16 """Unit tests for storage URLs."""
18 from __future__
import absolute_import
21 from gslib
.storage_url
import IsFileUrlString
22 from gslib
.storage_url
import StorageUrlFromString
23 import gslib
.tests
.testcase
as testcase
26 class TestStorageUrl(testcase
.GsUtilUnitTestCase
):
27 """Unit tests for storage URLs."""
30 super(TestStorageUrl
, self
).setUp()
32 def test_is_file_url_string(self
):
33 self
.assertTrue(IsFileUrlString('abc'))
34 self
.assertTrue(IsFileUrlString('file://abc'))
35 self
.assertFalse(IsFileUrlString('gs://abc'))
36 self
.assertFalse(IsFileUrlString('s3://abc'))
38 def test_storage_url_from_string(self
):
39 storage_url
= StorageUrlFromString('abc')
40 self
.assertTrue(storage_url
.IsFileUrl())
41 self
.assertEquals('abc', storage_url
.object_name
)
43 storage_url
= StorageUrlFromString('file://abc/123')
44 self
.assertTrue(storage_url
.IsFileUrl())
45 self
.assertEquals('abc/123', storage_url
.object_name
)
47 storage_url
= StorageUrlFromString('gs://abc/123')
48 self
.assertTrue(storage_url
.IsCloudUrl())
49 self
.assertEquals('abc', storage_url
.bucket_name
)
50 self
.assertEquals('123', storage_url
.object_name
)
52 storage_url
= StorageUrlFromString('s3://abc/123')
53 self
.assertTrue(storage_url
.IsCloudUrl())
54 self
.assertEquals('abc', storage_url
.bucket_name
)
55 self
.assertEquals('123', storage_url
.object_name
)