| # 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=redefined-outer-name |
| |
| import pytest |
| |
| from pyiceberg.catalog.rest import RestCatalog |
| |
| TEST_NAMESPACE_IDENTIFIER = "TEST NS" |
| |
| |
| @pytest.mark.integration |
| @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog")]) |
| def test_namespace_exists(catalog: RestCatalog) -> None: |
| if not catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER): |
| catalog.create_namespace(TEST_NAMESPACE_IDENTIFIER) |
| |
| assert catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER) |
| |
| |
| @pytest.mark.integration |
| @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog")]) |
| def test_namespace_not_exists(catalog: RestCatalog) -> None: |
| if catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER): |
| catalog.drop_namespace(TEST_NAMESPACE_IDENTIFIER) |
| |
| assert not catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER) |
| |
| |
| @pytest.mark.integration |
| @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog")]) |
| def test_create_namespace_if_not_exists(catalog: RestCatalog) -> None: |
| if catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER): |
| catalog.drop_namespace(TEST_NAMESPACE_IDENTIFIER) |
| |
| catalog.create_namespace_if_not_exists(TEST_NAMESPACE_IDENTIFIER) |
| |
| assert catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER) |
| |
| |
| @pytest.mark.integration |
| @pytest.mark.parametrize("catalog", [pytest.lazy_fixture("session_catalog")]) |
| def test_create_namespace_if_already_existing(catalog: RestCatalog) -> None: |
| if not catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER): |
| catalog.create_namespace(TEST_NAMESPACE_IDENTIFIER) |
| |
| catalog.create_namespace_if_not_exists(TEST_NAMESPACE_IDENTIFIER) |
| |
| assert catalog.namespace_exists(TEST_NAMESPACE_IDENTIFIER) |