Skip to content

Commit 602af71

Browse files
authored
Merge pull request #34 from IBM/custom_resolver
feat(custom resolver): Adding SDK and envs
2 parents c08696e + 2a18b2b commit 602af71

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

dns.env.enc

304 Bytes
Binary file not shown.

test/integration/test_direct_link_provider_v2.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525

2626
class TestDirectLinkProviderV2(unittest.TestCase):
2727
""" Test class for DirectLink Provider sdk functions """
28-
2928
def setUp(self):
3029
""" test case setup """
3130
self.dl_endpoint = os.getenv("DL_SERVICES_SERVICE_URL")
@@ -127,8 +126,7 @@ def delete_provider_gateway(self, gateway_id):
127126
assert response is not None
128127

129128

130-
################## Direct Link Provider Ports ######################################
131-
129+
################## Direct Link Provider Ports #####################################
132130
def test_list_get_provider_ports(self):
133131
""" test list/get ports success """
134132
response = self.dl_provider.list_provider_ports()
@@ -201,7 +199,7 @@ def test_provider_gateway_actions(self):
201199
assert response.get_status_code() == 204
202200

203201
################## Direct Link Provider Gateways with Client API ############################
204-
202+
@unittest.skip('skipping...')
205203
def test_provider_gateway_actions_with_client_api(self):
206204
timestamp = time.time()
207205
name = os.getenv("DL_PROVIDER_SERVICES_GW_NAME") + "-" + str(int(timestamp))
@@ -383,7 +381,7 @@ def test_provider_gateway_actions_with_client_api(self):
383381
assert response.get_status_code() == 204
384382

385383
################## Direct Link Provider Gateways with Client API MD5 Auth ############################
386-
384+
@unittest.skip('skipping...')
387385
def test_provider_gateway_actions_with_client_api_md5(self):
388386
timestamp = time.time()
389387
name = os.getenv("DL_PROVIDER_SERVICES_GW_NAME") + "-md5-" + str(int(timestamp))

test/integration/test_direct_link_v1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def test_loa_and_completion(self):
409409
self.delete_gateway(gateway_id)
410410

411411
################## Direct Link Gateways with Customer API MD5 Auth ############################
412-
412+
@unittest.skip('skipping...')
413413
def test_gateway_with_md5(self):
414414
bgpAsn = 64999
415415
crossConnectRouter = "LAB-xcr01.dal09"

test/integration/test_dns_svcs_v1.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -822,8 +822,9 @@ def test_1_permitted_network_negative(self):
822822

823823

824824
class TestGlobalLoadBalancersV1 (unittest.TestCase):
825+
825826
"""The Global Load Balancers for DNS V1 service test class."""
826-
827+
827828
def setUp(self):
828829
""" test case setup """
829830

@@ -903,6 +904,7 @@ def _clean_dns_globalloadbalancers(self):
903904
instance_id=self.instance_id, dnszone_id=zone.get("id"))
904905

905906
################## global load balancers integration test cases ##################
907+
@unittest.skip('skipping...')
906908
def test_1_dns_globalloadbalancers(self):
907909
""" create,get,update,delete GLB monitor """
908910

0 commit comments

Comments
 (0)