Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Unified Diff: dashboard/dashboard/pinpoint/models/quest/run_test_test.py

Issue 3001163002: Pinpoint - Surface info from executions for display in UI. (Closed)
Patch Set: Rebase again. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dashboard/dashboard/pinpoint/models/quest/run_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/pinpoint/models/quest/run_test_test.py
diff --git a/dashboard/dashboard/pinpoint/models/quest/run_test_test.py b/dashboard/dashboard/pinpoint/models/quest/run_test_test.py
index f2cafa7660e032abb8b4951fb4b05ffab97d0c35..55513d0708e8fe027350bbaf027a6b3161145d3c 100644
--- a/dashboard/dashboard/pinpoint/models/quest/run_test_test.py
+++ b/dashboard/dashboard/pinpoint/models/quest/run_test_test.py
@@ -109,6 +109,16 @@ class RunTestFullTest(_RunTestTest):
self.assertEqual(execution.result_values, (None,))
self.assertEqual(execution.result_arguments,
{'isolate_hashes': ('output isolate hash',)})
+ self.assertEqual(
+ {
+ 'bot_ids': ['bot id'],
+ 'input_isolate_hash': 'input isolate hash',
+ 'task_ids': ['task id'],
+ 'result_arguments': {'isolate_hashes': ('output isolate hash',)},
+ 'result_values': (None,),
+ },
+ execution.AsDict())
+
# Start a second Execution to check bot_id handling. We get a bot_id from
# Swarming from the first Execution and reuse it in subsequent Executions.
« no previous file with comments | « dashboard/dashboard/pinpoint/models/quest/run_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698