moto/tests/test_s3/test_multiple_accounts_server.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.7 KiB
Python
Raw Normal View History

2022-08-13 09:49:43 +00:00
import requests
from moto import settings
from moto.server import ThreadedMotoServer
from unittest import SkipTest
SERVER_PORT = 5001
BASE_URL = f"http://localhost:{SERVER_PORT}/"
class TestAccountIdResolution:
2022-10-28 00:37:11 +00:00
def setup_method(self):
2022-08-13 09:49:43 +00:00
if settings.TEST_SERVER_MODE:
raise SkipTest(
"No point in testing this in ServerMode, as we already start our own server"
)
self.server = ThreadedMotoServer(port=SERVER_PORT, verbose=False)
self.server.start()
2022-10-28 00:37:11 +00:00
def teardown_method(self):
2022-08-13 09:49:43 +00:00
self.server.stop()
def test_with_custom_request_header(self):
buckets_for_account_1 = ["foo", "bar"]
for name in buckets_for_account_1:
requests.put(f"http://{name}.localhost:{SERVER_PORT}/")
res = requests.get(BASE_URL)
res.content.should.contain(b"<Name>foo</Name>")
res.content.should.contain(b"<Name>bar</Name>")
# Create two more buckets in another account
headers = {"x-moto-account-id": "333344445555"}
buckets_for_account_2 = ["baz", "bla"]
for name in buckets_for_account_2:
requests.put(f"http://{name}.localhost:{SERVER_PORT}/", headers=headers)
# Verify only these buckets exist in this account
res = requests.get(BASE_URL, headers=headers)
res.content.should.contain(b"<Name>baz</Name>")
res.content.should.contain(b"<Name>bla</Name>")
res.content.shouldnt.contain(b"<Name>foo</Name>")
res.content.shouldnt.contain(b"<Name>bar</Name>")
# Verify these buckets do not exist in the original account
res = requests.get(BASE_URL)
res.content.shouldnt.contain(b"<Name>baz</Name>")
res.content.shouldnt.contain(b"<Name>bla</Name>")