Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f1aeb2f
Merge pull request #1 from Azure/master
BigCat20196 Jun 7, 2021
89cb1ee
Merge pull request #2 from Azure/main
BigCat20196 Jun 21, 2021
ceb1300
Merge pull request #3 from Azure/main
BigCat20196 Jul 1, 2021
23da66e
Merge pull request #4 from Azure/main
BigCat20196 Jul 7, 2021
25145b5
Merge pull request #5 from Azure/main
BigCat20196 Jul 9, 2021
b24885e
Merge pull request #6 from Azure/main
BigCat20196 Jul 12, 2021
2ef256c
Merge pull request #7 from Azure/main
BigCat20196 Jul 27, 2021
10a97e5
Merge pull request #8 from Azure/main
BigCat20196 Aug 4, 2021
24f65c3
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Oct 9, 2021
3fdba01
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Oct 12, 2021
3e8eb8e
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Oct 13, 2021
92b06a6
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Oct 28, 2021
40ce8cc
Merge branch 'main' of https://github.com/BigCat20196/azure-sdk-for-p…
BigCat20196 Jun 22, 2022
675245f
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jun 22, 2022
b0b6c17
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jun 29, 2022
71a41f2
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jun 30, 2022
246c7bf
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jul 5, 2022
4d20deb
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jul 6, 2022
268bbd8
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jul 13, 2022
3e0c372
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jul 25, 2022
67ee4b1
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Jul 29, 2022
fda4c3b
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Aug 1, 2022
6597edb
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Aug 1, 2022
f367504
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Aug 3, 2022
a0f3460
migrate
BigCat20196 Aug 4, 2022
5905783
Update ci.yml
BigCat20196 Aug 4, 2022
8e2e1b7
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
BigCat20196 Aug 8, 2022
aa3e6cf
update
BigCat20196 Aug 8, 2022
4976f12
Merge branch 'migrate-azure-purview-catalog-to-testproxy' of https://…
BigCat20196 Aug 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions sdk/purview/azure-purview-catalog/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# --------------------------------------------------------------------------
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# The MIT License (MIT)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the ""Software""), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
#
# --------------------------------------------------------------------------
import os
import platform
import pytest
import sys

from dotenv import load_dotenv

from devtools_testutils import test_proxy, add_general_regex_sanitizer, add_body_key_sanitizer, add_header_regex_sanitizer

# Ignore async tests for Python < 3.5
collect_ignore_glob = []
if sys.version_info < (3, 5) or platform.python_implementation() == "PyPy":
collect_ignore_glob.append("*_async.py")

load_dotenv()

@pytest.fixture(scope="session", autouse=True)
def add_sanitizers(test_proxy):
subscription_id = os.environ.get("PURVIEWCATALOG_SUBSCRIPTION_ID", "00000000-0000-0000-0000-000000000000")
tenant_id = os.environ.get("PURVIEWCATALOG_TENANT_ID", "00000000-0000-0000-0000-000000000000")
client_id = os.environ.get("PURVIEWCATALOG_CLIENT_ID", "00000000-0000-0000-0000-000000000000")
client_secret = os.environ.get("PURVIEWCATALOG_CLIENT_SECRET", "00000000-0000-0000-0000-000000000000")
add_general_regex_sanitizer(regex=subscription_id, value="00000000-0000-0000-0000-000000000000")
add_general_regex_sanitizer(regex=tenant_id, value="00000000-0000-0000-0000-000000000000")
add_general_regex_sanitizer(regex=client_id, value="00000000-0000-0000-0000-000000000000")
add_general_regex_sanitizer(regex=client_secret, value="00000000-0000-0000-0000-000000000000")
add_header_regex_sanitizer(key="Set-Cookie", value="[set-cookie;]")
add_header_regex_sanitizer(key="Cookie", value="cookie;")
add_body_key_sanitizer(json_path="$..access_token", value="access_token")
add_body_key_sanitizer(json_path="$..atlasKafkaPrimaryEndpoint", value="000")
add_body_key_sanitizer(json_path="$..atlasKafkaSecondaryEndpoint", value="000")
add_body_key_sanitizer(json_path="$..systemData.createdBy", value="000")
Loading