mirror of
https://github.com/apache/superset.git
synced 2026-09-07 15:54:55 +00:00
199 lines
7.5 KiB
Python
199 lines
7.5 KiB
Python
# 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.
|
|
|
|
# pylint: disable=invalid-name
|
|
|
|
from typing import Any
|
|
from unittest.mock import patch
|
|
from uuid import UUID
|
|
|
|
import pytest
|
|
from freezegun import freeze_time
|
|
from sqlalchemy.orm import Session, sessionmaker
|
|
|
|
from superset import db
|
|
from superset.distributed_lock import DistributedLock
|
|
from superset.distributed_lock.types import LockValue
|
|
from superset.distributed_lock.utils import get_key
|
|
from superset.exceptions import AcquireDistributedLockFailedException
|
|
from superset.key_value.types import JsonKeyValueCodec
|
|
|
|
LOCK_VALUE: LockValue = {"value": True}
|
|
MAIN_KEY = get_key("ns", a=1, b=2)
|
|
OTHER_KEY = get_key("ns2", a=1, b=2)
|
|
|
|
# Distributed locking is plumbed through the coordination service: acquire/release
|
|
# call CoordinationService.set_value/delete_value when a backend is defined, else KV.
|
|
BACKEND_DEFINED = "superset.coordination.base.CoordinationService.is_backend_defined"
|
|
COORD_SET = "superset.coordination.base.CoordinationService.set_value"
|
|
COORD_DELETE = "superset.coordination.base.CoordinationService.delete_value"
|
|
|
|
|
|
def _get_lock(key: UUID, session: Session) -> Any:
|
|
from superset.key_value.models import KeyValueEntry
|
|
|
|
entry = db.session.query(KeyValueEntry).filter_by(uuid=key).first()
|
|
if entry is None or entry.is_expired():
|
|
return None
|
|
|
|
return JsonKeyValueCodec().decode(entry.value)
|
|
|
|
|
|
def _get_other_session() -> Session:
|
|
# This session is used to simulate what another worker will find in the metastore
|
|
# during the locking process.
|
|
from superset import db
|
|
|
|
bind = db.session.get_bind()
|
|
SessionMaker = sessionmaker(bind=bind) # noqa: N806
|
|
return SessionMaker()
|
|
|
|
|
|
def test_distributed_lock_kv_happy_path() -> None:
|
|
"""
|
|
Test successfully acquiring and returning the distributed lock via KV backend.
|
|
|
|
Note, we're using another session for asserting the lock state in the Metastore
|
|
to simulate what another worker will observe. Otherwise, there's the risk that
|
|
the assertions would only be using the non-committed state from the main session.
|
|
"""
|
|
session = _get_other_session()
|
|
|
|
# Ensure no backend is defined so the KV backend is used
|
|
with patch(BACKEND_DEFINED, return_value=False):
|
|
with freeze_time("2021-01-01"):
|
|
assert _get_lock(MAIN_KEY, session) is None
|
|
|
|
with DistributedLock("ns", a=1, b=2) as key:
|
|
assert key == MAIN_KEY
|
|
assert _get_lock(key, session) == LOCK_VALUE
|
|
assert _get_lock(OTHER_KEY, session) is None
|
|
|
|
with pytest.raises(AcquireDistributedLockFailedException):
|
|
with DistributedLock("ns", a=1, b=2):
|
|
pass
|
|
|
|
assert _get_lock(MAIN_KEY, session) is None
|
|
|
|
|
|
def test_distributed_lock_kv_expired() -> None:
|
|
"""
|
|
Test expiration of the distributed lock via KV backend.
|
|
|
|
Note, we're using another session for asserting the lock state in the Metastore
|
|
to simulate what another worker will observe. Otherwise, there's the risk that
|
|
the assertions would only be using the non-committed state from the main session.
|
|
"""
|
|
session = _get_other_session()
|
|
|
|
# Ensure no backend is defined so the KV backend is used
|
|
with patch(BACKEND_DEFINED, return_value=False):
|
|
with freeze_time("2021-01-01"):
|
|
assert _get_lock(MAIN_KEY, session) is None
|
|
with DistributedLock("ns", a=1, b=2):
|
|
assert _get_lock(MAIN_KEY, session) == LOCK_VALUE
|
|
with freeze_time("2022-01-01"):
|
|
assert _get_lock(MAIN_KEY, session) is None
|
|
|
|
assert _get_lock(MAIN_KEY, session) is None
|
|
|
|
|
|
def test_distributed_lock_uses_redis_when_configured() -> None:
|
|
"""Test that DistributedLock uses the coordination backend when configured."""
|
|
with (
|
|
patch(BACKEND_DEFINED, return_value=True),
|
|
patch(COORD_SET, return_value=True) as mock_set,
|
|
patch(COORD_DELETE) as mock_delete,
|
|
):
|
|
with DistributedLock("test_redis", key="value") as lock_key:
|
|
assert lock_key is not None
|
|
# Verify SET NX EX was called
|
|
mock_set.assert_called_once()
|
|
call_args = mock_set.call_args
|
|
assert call_args.kwargs["if_absent"] is True
|
|
assert "ttl" in call_args.kwargs
|
|
|
|
# Verify DELETE was called on exit
|
|
mock_delete.assert_called_once()
|
|
|
|
|
|
def test_distributed_lock_redis_already_taken() -> None:
|
|
"""Test Redis lock fails when already held."""
|
|
with (
|
|
patch(BACKEND_DEFINED, return_value=True),
|
|
patch(COORD_SET, return_value=None), # Lock not acquired (already taken)
|
|
):
|
|
with pytest.raises(AcquireDistributedLockFailedException):
|
|
with DistributedLock("test_redis", key="value"):
|
|
pass
|
|
|
|
|
|
def test_distributed_lock_redis_connection_error() -> None:
|
|
"""Test Redis connection error raises exception (fail fast)."""
|
|
import redis
|
|
|
|
with (
|
|
patch(BACKEND_DEFINED, return_value=True),
|
|
patch(COORD_SET, side_effect=redis.RedisError("Connection failed")),
|
|
):
|
|
with pytest.raises(AcquireDistributedLockFailedException):
|
|
with DistributedLock("test_redis", key="value"):
|
|
pass
|
|
|
|
|
|
def test_distributed_lock_custom_ttl() -> None:
|
|
"""Test Redis lock with custom TTL."""
|
|
with (
|
|
patch(BACKEND_DEFINED, return_value=True),
|
|
patch(COORD_SET, return_value=True) as mock_set,
|
|
patch(COORD_DELETE),
|
|
):
|
|
with DistributedLock("test", ttl_seconds=60, key="value"):
|
|
call_args = mock_set.call_args
|
|
assert call_args.kwargs["ttl"] == 60 # Custom TTL
|
|
|
|
|
|
def test_distributed_lock_default_ttl(app_context: None) -> None:
|
|
"""Test Redis lock uses default TTL when not specified."""
|
|
from superset.commands.distributed_lock.base import get_default_lock_ttl
|
|
|
|
with (
|
|
patch(BACKEND_DEFINED, return_value=True),
|
|
patch(COORD_SET, return_value=True) as mock_set,
|
|
patch(COORD_DELETE),
|
|
):
|
|
with DistributedLock("test", key="value"):
|
|
call_args = mock_set.call_args
|
|
assert call_args.kwargs["ttl"] == get_default_lock_ttl()
|
|
|
|
|
|
def test_distributed_lock_fallback_to_kv_when_redis_not_configured() -> None:
|
|
"""Test falls back to KV lock when no backend is configured."""
|
|
session = _get_other_session()
|
|
test_key = get_key("test_fallback", key="value")
|
|
|
|
with patch(BACKEND_DEFINED, return_value=False):
|
|
with freeze_time("2021-01-01"):
|
|
# When no backend is defined, should use KV backend
|
|
with DistributedLock("test_fallback", key="value") as lock_key:
|
|
assert lock_key == test_key
|
|
# Verify lock exists in KV store
|
|
assert _get_lock(test_key, session) == LOCK_VALUE
|
|
|
|
# Lock should be released
|
|
assert _get_lock(test_key, session) is None
|