Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate servermanager to testProxy (Do not merge) #25481

Merged
merged 27 commits into from
Aug 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 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
7733dc7
migrate tests
BigCat20196 Aug 1, 2022
aaff3fb
Update dev_requirements.txt
BigCat20196 Aug 1, 2022
25d99a8
Update conftest.py
BigCat20196 Aug 2, 2022
895b3dc
update
BigCat20196 Aug 3, 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
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-e ../../../tools/azure-sdk-tools
-e ../../../tools/azure-devtools
azure-core
../../identity/azure-identity
54 changes: 54 additions & 0 deletions sdk/servermanager/azure-mgmt-servermanager/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# --------------------------------------------------------------------------
#
# 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("AZURE_SUBSCRIPTION_ID", "00000000-0000-0000-0000-000000000000")
tenant_id = os.environ.get("AZURE_TENANT_ID", "00000000-0000-0000-0000-000000000000")
client_id = os.environ.get("AZURE_CLIENT_ID", "00000000-0000-0000-0000-000000000000")
client_secret = os.environ.get("AZURE_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")
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
import unittest

import azure.mgmt.servermanager
from devtools_testutils import AzureMgmtTestCase, ResourceGroupPreparer
from devtools_testutils import AzureMgmtRecordedTestCase, ResourceGroupPreparer, recorded_by_proxy

class MgmtServerManagerTest(AzureMgmtTestCase):
class TestMgmtServerManager(AzureMgmtRecordedTestCase):

def setUp(self):
super(MgmtServerManagerTest, self).setUp()
def setup_method(self, method):
self.client = self.create_mgmt_client(
azure.mgmt.servermanager.ServerManagement
)

@ResourceGroupPreparer()
@recorded_by_proxy
def test_servermanager_gateways(self, resource_group, location):
gateway_name = self.get_resource_name('pygateway')
region = 'centralus'
Expand All @@ -29,16 +29,16 @@ def test_servermanager_gateways(self, resource_group, location):
region
)
gateway = gateway_async.result()
self.assertEqual(gateway.name, gateway_name)
assert gateway.name == gateway_name

gateway = self.client.gateway.get(
resource_group.name,
gateway_name
)
self.assertEqual(gateway.name, gateway_name)
assert gateway.name == gateway_name

gateways = list(self.client.gateway.list())
self.assertEqual(len(gateways), 1)
assert len(gateways) == 1

#------------------------------------------------------------------------------
if __name__ == '__main__':
Expand Down

This file was deleted.

Loading