Skip to content

Commit a234cd0

Browse files
author
Isaac Karrer
committed
Use TODO properly, remove Tempest output
1 parent d80e51a commit a234cd0

File tree

6 files changed

+7
-310
lines changed

6 files changed

+7
-310
lines changed

jumpgate/compute/drivers/sl/extensions.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
'namespace': 'http://docs.openstack.org/compute/ext/availabilityzone/'
1010
'api/v1.1',
1111
'updated': '2012-12-21T00:00:00+00:00',
12+
# TODO(imkarrer) Added availability zone, need to return real value
1213
'availability_zone': {'Hosts': None},
1314
},
1415
}

jumpgate/compute/drivers/sl/servers.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def on_post(self, req, resp, tenant_id):
213213
resp.set_header('x-compute-request-id', 'create')
214214
resp.status = 202
215215
resp.body = {'server': {
216-
# TODO(imkarrer) - Casted to string to make tempest pass, make sure correct # noqa
216+
# Casted to string to make tempest pass
217217
'id': str(new_instance['id']),
218218
'links': [{
219219
'href': self.app.get_endpoint_url(
@@ -560,8 +560,8 @@ def get_server_details_dict(app, req, instance, is_list):
560560

561561
# TODO(kmcdonald) - Don't hardcode this
562562
image_name = ''
563-
# TODO(imkarrer) - returning None makes tempest fail, conditionally returning empty string # noqa
564-
# TODO(imkarrer) - same thing with zone
563+
# returning None makes tempest fail,
564+
# conditionally returning empty string for uid and zone
565565
uid = str(utils.lookup(instance,
566566
'billingItem',
567567
'orderItem',
@@ -608,7 +608,6 @@ def get_server_details_dict(app, req, instance, is_list):
608608
'tenant_id': tenant_id,
609609
# NOTE(bodenr): userRecordId accessibility determined by permissions
610610
# of API caller's user id and api key. Otherwise it will be None
611-
# TODO(imkarrer) - returning None makes tempest fail, conditionally returning empty string # noqa
612611
'user_id': uid,
613612
'updated': instance['modifyDate'],
614613
'image_name': image_name,

jumpgate/identity/drivers/sl/auth_tokens_v3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def parse_templates(template_lines):
3939
def get_access(token_id, token_details, user):
4040
return {
4141
'token': {
42-
# TODO(imkarrer) - replaced isoformat() with strftime to make tempest pass # noqa
42+
# replaced isoformat() with strftime to make tempest pass
4343
'expires': datetime.datetime.fromtimestamp(
4444
token_details['expires']).strftime('%Y-%m-%dT%H:%M:%SZ'),
4545
'id': token_id,

jumpgate/identity/drivers/sl/tokens.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_access(token_id, token_details):
4141
tokens = identity.token_driver()
4242
return {
4343
'token': {
44-
# TODO(imkarrer) - replaced isoformat() with strftime to make tempest pass # noqa
44+
# replaced isoformat() with strftime to make tempest pass
4545
'expires': datetime.datetime.fromtimestamp(
4646
tokens.expires(token_details)).strftime('%Y-%m-%dT%H:%M:%SZ'),
4747
'id': token_id,

jumpgate/image/drivers/sl/images.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def get_v1_image_details_dict(app, req, image, tenant_id=None):
570570
'progress': 100,
571571
'metadata': {},
572572
'size': int(image.get('blockDevicesDiskSpaceTotal', 0)),
573-
# TODO() - changed from None to 1000 for Tempest
573+
# changed from None to 1000 for Tempest
574574
'OS-EXT-IMG-SIZE:size': 1000,
575575
'container_format': 'bare',
576576
'disk_format': 'raw',

0 commit comments

Comments
 (0)