blob: 284aab251c6c019ac0ca757cb02629ee1b07888f [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
import sys
import unittest
from libcloud.test.secrets import STORAGE_S3_PARAMS
from libcloud.storage.drivers.s3 import S3SignatureV4Connection
from libcloud.test.storage.test_s3 import S3Tests, S3MockHttp
from libcloud.storage.drivers.scaleway import SCW_FR_PAR_STANDARD_HOST, ScalewayStorageDriver
class ScalewayStorageDriverTestCase(S3Tests, unittest.TestCase):
driver_type = ScalewayStorageDriver
driver_args = STORAGE_S3_PARAMS
default_host = SCW_FR_PAR_STANDARD_HOST
@classmethod
def create_driver(self):
return self.driver_type(*self.driver_args, host=self.default_host)
def setUp(self):
super().setUp()
ScalewayStorageDriver.connectionCls.conn_class = S3MockHttp
S3MockHttp.type = None
self.driver = self.create_driver()
def test_connection_class_type(self):
self.assertEqual(self.driver.connectionCls, S3SignatureV4Connection)
def test_connection_class_default_host(self):
self.assertEqual(self.driver.connectionCls.host, self.default_host)
self.assertEqual(self.driver.connectionCls.port, 443)
self.assertEqual(self.driver.connectionCls.secure, True)
if __name__ == "__main__":
sys.exit(unittest.main())