mirror of
https://github.com/apache/superset.git
synced 2026-04-13 05:07:53 +00:00
62 lines
2.0 KiB
Python
62 lines
2.0 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.
|
|
import pytest
|
|
from flask.ctx import AppContext
|
|
|
|
from superset.extensions import db, security_manager
|
|
from tests.integration_tests.test_app import app
|
|
|
|
|
|
@pytest.fixture
|
|
def public_role_like_gamma(app_context: AppContext):
|
|
app.config["PUBLIC_ROLE_LIKE"] = "Gamma"
|
|
security_manager.sync_role_definitions()
|
|
|
|
yield
|
|
|
|
security_manager.get_public_role().permissions = []
|
|
db.session.commit()
|
|
|
|
|
|
@pytest.fixture
|
|
def public_role_like_test_role(app_context: AppContext):
|
|
app.config["PUBLIC_ROLE_LIKE"] = "TestRole"
|
|
security_manager.sync_role_definitions()
|
|
|
|
yield
|
|
|
|
security_manager.get_public_role().permissions = []
|
|
db.session.commit()
|
|
|
|
|
|
@pytest.fixture
|
|
def public_role_builtin(app_context: AppContext):
|
|
"""
|
|
Fixture that uses the built-in Public role with minimal read-only permissions.
|
|
This sets PUBLIC_ROLE_LIKE to "Public" to use the new sensible defaults.
|
|
"""
|
|
original_value = app.config.get("PUBLIC_ROLE_LIKE")
|
|
app.config["PUBLIC_ROLE_LIKE"] = "Public"
|
|
security_manager.sync_role_definitions()
|
|
|
|
yield
|
|
|
|
# Restore original config and clean up
|
|
app.config["PUBLIC_ROLE_LIKE"] = original_value
|
|
security_manager.get_public_role().permissions = []
|
|
db.session.commit()
|