Skip to content

Commit

Permalink
fixed the infinite loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo committed Apr 23, 2020
1 parent 7a1c30a commit 2e4dfb3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions monitoring/api/v3/api-client/custom_metric_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import backoff
import googleapiclient.discovery
import pytest
from googleapiclient.errors import HttpError

from custom_metric import create_custom_metric
from custom_metric import delete_metric_descriptor
Expand All @@ -52,7 +53,6 @@ def client():
return googleapiclient.discovery.build('monitoring', 'v3')


@pytest.mark.flaky
def test_custom_metric(client):
PROJECT_RESOURCE = "projects/{}".format(PROJECT)
# Use a constant seed so psuedo random number is known ahead of time
Expand All @@ -69,23 +69,30 @@ def test_custom_metric(client):
client, PROJECT_RESOURCE, METRIC_RESOURCE, METRIC_KIND)

# wait until metric has been created, use the get call to wait until
# a response comes back with the new metric
# a response comes back with the new metric with 10 retries.
custom_metric = None
while not custom_metric:
retry_count = 0
while not custom_metric and retry_count < 10:
time.sleep(1)
retry_count += 1
custom_metric = get_custom_metric(
client, PROJECT_RESOURCE, METRIC_RESOURCE)
# Make sure we get the custom metric
assert custom_metric

write_timeseries_value(client, PROJECT_RESOURCE,
METRIC_RESOURCE, INSTANCE_ID,
METRIC_KIND)

# Sometimes on new metric descriptors, writes have a delay in being
# read back. Use eventually_consistent to account for this.
@backoff.on_exception(backoff.expo, AssertionError, max_time=120)
@backoff.on_exception(
backoff.expo, (AssertionError, HttpError), max_time=120)
def eventually_consistent_test():
response = read_timeseries(
client, PROJECT_RESOURCE, METRIC_RESOURCE)
# Make sure the value is not empty.
assert 'timeSeries' in response
value = int(
response['timeSeries'][0]['points'][0]['value']['int64Value'])
# using seed of 1 will create a value of 1
Expand Down

0 comments on commit 2e4dfb3

Please sign in to comment.