# ========= Copyright 2026 @ Strukto.AI 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. # ========= Copyright 2026 @ Strukto.AI All Rights Reserved. ========= import pytest from pydantic import ValidationError from mirage.resource.s3 import S3Config from mirage.resource.secrets import reveal_secret from mirage.resource.wasabi import WasabiConfig, WasabiResource from mirage.types import ResourceName def test_wasabi_default_region_endpoint(): config = WasabiConfig(bucket="b", access_key_id="k", secret_access_key="s") assert config.region == "us-east-1" assert config.resolved_endpoint_url() == "https://s3.wasabisys.com" def test_wasabi_regional_endpoint(): config = WasabiConfig(bucket="b", region="us-west-1", access_key_id="k", secret_access_key="s") assert config.resolved_endpoint_url() == ( "https://s3.us-west-1.wasabisys.com") def test_wasabi_custom_endpoint_override(): config = WasabiConfig(bucket="b", endpoint_url="https://custom.example.com", access_key_id="k", secret_access_key="s") assert config.resolved_endpoint_url() == "https://custom.example.com" def test_wasabi_config_immutable(): config = WasabiConfig(bucket="b", access_key_id="k", secret_access_key="s") with pytest.raises(ValidationError): config.bucket = "other" def test_wasabi_to_s3_config(): config = WasabiConfig(bucket="b", region="us-east-2", access_key_id="key", secret_access_key="secret") s3 = config.to_s3_config() assert isinstance(s3, S3Config) assert s3.endpoint_url == "https://s3.us-east-2.wasabisys.com" assert s3.path_style is False assert reveal_secret(s3.aws_access_key_id) == "key" def test_wasabi_resource_uses_s3_resource_type(): resource = WasabiResource( WasabiConfig(bucket="b", access_key_id="k", secret_access_key="s")) assert resource.name == ResourceName.S3 assert isinstance(resource.config, S3Config)