From aff2152a810b5d68d17252669185aca9f34d28bd Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Mon, 20 Mar 2017 22:41:32 +0000 Subject: [PATCH] Bug 1165356 - Log parser: Remove tests workaround for file:// log URLs Now that we're using requests, the log URL being used to access the file is consistent across environments (since it doesn't reference the local directory structure), so we don't need to exclude it from comparisons. --- tests/log_parser/test_artifact_builder_collection.py | 12 +++--------- tests/log_parser/test_job_artifact_builder.py | 7 ------- tests/log_parser/test_log_view_artifact_builder.py | 10 ---------- tests/sample_data/logs/crash-1.logview.json | 2 +- tests/sample_data/logs/crash-2.logview.json | 2 +- tests/sample_data/logs/crash-mac-1.logview.json | 2 +- .../sample_data/logs/crashtest-timeout.logview.json | 2 +- tests/sample_data/logs/jsreftest-fail.logview.json | 2 +- .../logs/jsreftest-timeout-crash.logview.json | 2 +- .../logs/large-number-of-error-lines.logview.json | 2 +- tests/sample_data/logs/leaks-1.logview.json | 2 +- .../sample_data/logs/mochitest-test-end.logview.json | 2 +- ...cosx64-debug-bm65-build1-build15.jobartifact.json | 2 +- ...ntral-win32-pgo-bm85-build1-build111.logview.json | 2 +- ...test-1-bm54-tests1-linux-build50.jobartifact.json | 2 +- ...rashtest-1-bm54-tests1-linux-build50.logview.json | 2 +- ...est-2-bm80-tests1-macosx-build93.jobartifact.json | 2 +- ...st-2-bm77-tests1-macosx-build141.jobartifact.json | 2 +- ...hitest-2-bm77-tests1-macosx-build141.logview.json | 2 +- ...st-2-bm80-tests1-macosx-build138.jobartifact.json | 2 +- ...86-set-4-bm103-tests1-linux-build369.logview.json | 2 +- ...rome-bm74-tests1-windows-build12.jobartifact.json | 2 +- ...r-chrome-bm74-tests1-windows-build12.logview.json | 2 +- ...other-bm53-tests1-linux-build122.jobartifact.json | 2 +- ...est-other-bm53-tests1-linux-build122.logview.json | 2 +- .../sample_data/logs/multiple-timeouts.logview.json | 2 +- .../sample_data/logs/opt-objc-exception.logview.json | 2 +- .../sample_data/logs/reftest-fail-crash.logview.json | 2 +- tests/sample_data/logs/reftest-jserror.logview.json | 2 +- tests/sample_data/logs/reftest-opt-fail.logview.json | 2 +- tests/sample_data/logs/reftest-timeout.logview.json | 2 +- ...skcluster-missing-finish-step-marker.logview.json | 2 +- .../logs/tinderbox-exception.logview.json | 2 +- ...etpack-bm67-tests1-linux-build16.jobartifact.json | 2 +- ...st-jetpack-bm67-tests1-linux-build16.logview.json | 2 +- tests/sample_data/logs/xpcshell-crash.logview.json | 2 +- .../sample_data/logs/xpcshell-multiple.logview.json | 2 +- tests/sample_data/logs/xpcshell-timeout.logview.json | 2 +- 38 files changed, 38 insertions(+), 61 deletions(-) diff --git a/tests/log_parser/test_artifact_builder_collection.py b/tests/log_parser/test_artifact_builder_collection.py index 523020bce..78365862f 100644 --- a/tests/log_parser/test_artifact_builder_collection.py +++ b/tests/log_parser/test_artifact_builder_collection.py @@ -52,18 +52,12 @@ def test_all_builders_complete(): "steps": [], "errors_truncated": False }, + "logurl": url, }, "Job Info": { - "job_details": [] + "job_details": [], + "logurl": url, } } - act = lpc.artifacts - - # we can't compare the "logurl" field, because it's a fully qualified url, - # so it will be different depending on the config it's run in. - assert "logurl" in act["text_log_summary"] - assert "logurl" in act["Job Info"] - del(act["Job Info"]["logurl"]) - del(act["text_log_summary"]["logurl"]) assert exp == lpc.artifacts, diff(exp, lpc.artifacts) diff --git a/tests/log_parser/test_job_artifact_builder.py b/tests/log_parser/test_job_artifact_builder.py index 3ca63635a..f21137912 100644 --- a/tests/log_parser/test_job_artifact_builder.py +++ b/tests/log_parser/test_job_artifact_builder.py @@ -29,13 +29,6 @@ def do_test(log): # with open(SampleData().get_log_path("{0}.jobartifact.json".format(log)), "w") as f: # f.write(json.dumps(act, indent=4)) - # we can't compare the "logurl" field, because it's a fully qualified url, - # so it will be different depending on the config it's run in. - assert "logurl" in act - del(act["logurl"]) - # leaving the logurl in the exp files so they are a good example of the - # expected structure. - del(exp["logurl"]) # assert act == exp, diff(exp, act) # if you want to gather results for a new test, use this diff --git a/tests/log_parser/test_log_view_artifact_builder.py b/tests/log_parser/test_log_view_artifact_builder.py index 553956c5e..9a6f6a0e4 100644 --- a/tests/log_parser/test_log_view_artifact_builder.py +++ b/tests/log_parser/test_log_view_artifact_builder.py @@ -32,16 +32,6 @@ def do_test(log): # with open(SampleData().get_log_path("{0}.logview.json".format(log)), "w") as f: # f.write(json.dumps(act, indent=4)) - # we can't compare the "logurl" field, because it's a fully qualified url, - # so it will be different depending on the machine it's run on. - assert "logurl" in act - del(act["logurl"]) - - # log urls won't match in tests, since they're machine specific - # but leave it in the exp file as an example of what the real structure - # should look like. - del(exp["logurl"]) - assert act == exp # , diff(exp, act) # :: Use this assert when creating new tests and you want to get the actual diff --git a/tests/sample_data/logs/crash-1.logview.json b/tests/sample_data/logs/crash-1.logview.json index 529d78ac8..72c4ec600 100644 --- a/tests/sample_data/logs/crash-1.logview.json +++ b/tests/sample_data/logs/crash-1.logview.json @@ -66,5 +66,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/crash-1.txt.gz" + "logurl": "http://my-log.mozilla.org/crash-1.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/crash-2.logview.json b/tests/sample_data/logs/crash-2.logview.json index fec3d5e5b..b37405778 100644 --- a/tests/sample_data/logs/crash-2.logview.json +++ b/tests/sample_data/logs/crash-2.logview.json @@ -78,5 +78,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/crash-2.txt.gz" + "logurl": "http://my-log.mozilla.org/crash-2.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/crash-mac-1.logview.json b/tests/sample_data/logs/crash-mac-1.logview.json index a95d16884..2c46910ff 100644 --- a/tests/sample_data/logs/crash-mac-1.logview.json +++ b/tests/sample_data/logs/crash-mac-1.logview.json @@ -70,5 +70,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/crash-mac-1.txt.gz" + "logurl": "http://my-log.mozilla.org/crash-mac-1.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/crashtest-timeout.logview.json b/tests/sample_data/logs/crashtest-timeout.logview.json index 12466b27a..309be159b 100644 --- a/tests/sample_data/logs/crashtest-timeout.logview.json +++ b/tests/sample_data/logs/crashtest-timeout.logview.json @@ -54,5 +54,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/crashtest-timeout.txt.gz" + "logurl": "http://my-log.mozilla.org/crashtest-timeout.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/jsreftest-fail.logview.json b/tests/sample_data/logs/jsreftest-fail.logview.json index e7c055d05..f490e04d2 100644 --- a/tests/sample_data/logs/jsreftest-fail.logview.json +++ b/tests/sample_data/logs/jsreftest-fail.logview.json @@ -254,5 +254,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/jsreftest-fail.txt.gz" + "logurl": "http://my-log.mozilla.org/jsreftest-fail.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/jsreftest-timeout-crash.logview.json b/tests/sample_data/logs/jsreftest-timeout-crash.logview.json index 898898e4a..3c59d971c 100644 --- a/tests/sample_data/logs/jsreftest-timeout-crash.logview.json +++ b/tests/sample_data/logs/jsreftest-timeout-crash.logview.json @@ -62,5 +62,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/jsreftest-timeout-crash.txt.gz" + "logurl": "http://my-log.mozilla.org/jsreftest-timeout-crash.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/large-number-of-error-lines.logview.json b/tests/sample_data/logs/large-number-of-error-lines.logview.json index ed4225271..ca7c6712c 100644 --- a/tests/sample_data/logs/large-number-of-error-lines.logview.json +++ b/tests/sample_data/logs/large-number-of-error-lines.logview.json @@ -540,5 +540,5 @@ ], "errors_truncated": true }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/large-number-of-error-lines.txt.gz" + "logurl": "http://my-log.mozilla.org/large-number-of-error-lines.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/leaks-1.logview.json b/tests/sample_data/logs/leaks-1.logview.json index 2be8dbfde..764e6245e 100644 --- a/tests/sample_data/logs/leaks-1.logview.json +++ b/tests/sample_data/logs/leaks-1.logview.json @@ -74,5 +74,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/leaks-1.txt.gz" + "logurl": "http://my-log.mozilla.org/leaks-1.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mochitest-test-end.logview.json b/tests/sample_data/logs/mochitest-test-end.logview.json index ffa89cd98..d7014da29 100644 --- a/tests/sample_data/logs/mochitest-test-end.logview.json +++ b/tests/sample_data/logs/mochitest-test-end.logview.json @@ -58,5 +58,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mochitest-test-end.txt.gz" + "logurl": "http://my-log.mozilla.org/mochitest-test-end.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-central-macosx64-debug-bm65-build1-build15.jobartifact.json b/tests/sample_data/logs/mozilla-central-macosx64-debug-bm65-build1-build15.jobartifact.json index 722111ce6..a2fa79358 100644 --- a/tests/sample_data/logs/mozilla-central-macosx64-debug-bm65-build1-build15.jobartifact.json +++ b/tests/sample_data/logs/mozilla-central-macosx64-debug-bm65-build1-build15.jobartifact.json @@ -1,4 +1,4 @@ { "job_details": [], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central-macosx64-debug-bm65-build1-build15.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central-macosx64-debug-bm65-build1-build15.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-central-win32-pgo-bm85-build1-build111.logview.json b/tests/sample_data/logs/mozilla-central-win32-pgo-bm85-build1-build111.logview.json index 195e3bbb5..91578ec19 100644 --- a/tests/sample_data/logs/mozilla-central-win32-pgo-bm85-build1-build111.logview.json +++ b/tests/sample_data/logs/mozilla-central-win32-pgo-bm85-build1-build111.logview.json @@ -499,5 +499,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central-win32-pgo-bm85-build1-build111.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central-win32-pgo-bm85-build1-build111.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.jobartifact.json b/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.jobartifact.json index 04918f590..ec2d5cd7c 100644 --- a/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.jobartifact.json +++ b/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.jobartifact.json @@ -12,5 +12,5 @@ "title": "crashtest" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.logview.json b/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.logview.json index f7a4a0fb4..6078ae772 100644 --- a/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.logview.json +++ b/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.logview.json @@ -112,5 +112,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93.jobartifact.json b/tests/sample_data/logs/mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93.jobartifact.json index d9b636fad..139b2ca11 100644 --- a/tests/sample_data/logs/mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93.jobartifact.json +++ b/tests/sample_data/logs/mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93.jobartifact.json @@ -12,5 +12,5 @@ "title": "mochitest-plain2" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.jobartifact.json b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.jobartifact.json index 74d1c678b..45257d2dd 100644 --- a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.jobartifact.json +++ b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.jobartifact.json @@ -12,5 +12,5 @@ "title": "mochitest-plain2" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.logview.json b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.logview.json index 1bb87a14a..041d93d41 100644 --- a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.logview.json +++ b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.logview.json @@ -112,5 +112,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.jobartifact.json b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.jobartifact.json index 935221c1f..92c93004e 100644 --- a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.jobartifact.json +++ b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.jobartifact.json @@ -12,5 +12,5 @@ "title": "mochitest-plain2" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-central_ubuntu64_hw_test-androidx86-set-4-bm103-tests1-linux-build369.logview.json b/tests/sample_data/logs/mozilla-central_ubuntu64_hw_test-androidx86-set-4-bm103-tests1-linux-build369.logview.json index 39b32447f..5b21f339c 100644 --- a/tests/sample_data/logs/mozilla-central_ubuntu64_hw_test-androidx86-set-4-bm103-tests1-linux-build369.logview.json +++ b/tests/sample_data/logs/mozilla-central_ubuntu64_hw_test-androidx86-set-4-bm103-tests1-linux-build369.logview.json @@ -139,5 +139,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-central_ubuntu64_hw_test-androidx86-set-4-bm103-tests1-linux-build369.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-central_ubuntu64_hw_test-androidx86-set-4-bm103-tests1-linux-build369.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.jobartifact.json b/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.jobartifact.json index 1381232fb..9e2fd007a 100644 --- a/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.jobartifact.json +++ b/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.jobartifact.json @@ -12,5 +12,5 @@ "title": "mochitest-browser-chrome" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.logview.json b/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.logview.json index 7dbdbba7d..43970baf2 100644 --- a/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.logview.json +++ b/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.logview.json @@ -220,5 +220,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.jobartifact.json b/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.jobartifact.json index 4f20029ef..c510a3613 100644 --- a/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.jobartifact.json +++ b/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.jobartifact.json @@ -22,5 +22,5 @@ "title": "mochitest-plugins" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.txt.gz" } diff --git a/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.logview.json b/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.logview.json index b2b00a1ca..151bd4979 100644 --- a/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.logview.json +++ b/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.logview.json @@ -161,5 +161,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.txt.gz" + "logurl": "http://my-log.mozilla.org/mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/multiple-timeouts.logview.json b/tests/sample_data/logs/multiple-timeouts.logview.json index 3f118d585..83c17c3ee 100644 --- a/tests/sample_data/logs/multiple-timeouts.logview.json +++ b/tests/sample_data/logs/multiple-timeouts.logview.json @@ -94,5 +94,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/multiple-timeouts.txt.gz" + "logurl": "http://my-log.mozilla.org/multiple-timeouts.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/opt-objc-exception.logview.json b/tests/sample_data/logs/opt-objc-exception.logview.json index 76a97a1a5..30e804723 100644 --- a/tests/sample_data/logs/opt-objc-exception.logview.json +++ b/tests/sample_data/logs/opt-objc-exception.logview.json @@ -58,5 +58,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/opt-objc-exception.txt.gz" + "logurl": "http://my-log.mozilla.org/opt-objc-exception.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/reftest-fail-crash.logview.json b/tests/sample_data/logs/reftest-fail-crash.logview.json index 98eec07ed..e7838b566 100644 --- a/tests/sample_data/logs/reftest-fail-crash.logview.json +++ b/tests/sample_data/logs/reftest-fail-crash.logview.json @@ -70,5 +70,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/reftest-fail-crash.txt.gz" + "logurl": "http://my-log.mozilla.org/reftest-fail-crash.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/reftest-jserror.logview.json b/tests/sample_data/logs/reftest-jserror.logview.json index 95dd51799..ad6cd4ca7 100644 --- a/tests/sample_data/logs/reftest-jserror.logview.json +++ b/tests/sample_data/logs/reftest-jserror.logview.json @@ -54,5 +54,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/reftest-jserror.txt.gz" + "logurl": "http://my-log.mozilla.org/reftest-jserror.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/reftest-opt-fail.logview.json b/tests/sample_data/logs/reftest-opt-fail.logview.json index 0f501f202..14241f0ff 100644 --- a/tests/sample_data/logs/reftest-opt-fail.logview.json +++ b/tests/sample_data/logs/reftest-opt-fail.logview.json @@ -54,5 +54,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/reftest-opt-fail.txt.gz" + "logurl": "http://my-log.mozilla.org/reftest-opt-fail.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/reftest-timeout.logview.json b/tests/sample_data/logs/reftest-timeout.logview.json index ee7352108..6e31fe09f 100644 --- a/tests/sample_data/logs/reftest-timeout.logview.json +++ b/tests/sample_data/logs/reftest-timeout.logview.json @@ -62,5 +62,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/reftest-timeout.txt.gz" + "logurl": "http://my-log.mozilla.org/reftest-timeout.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/taskcluster-missing-finish-step-marker.logview.json b/tests/sample_data/logs/taskcluster-missing-finish-step-marker.logview.json index 510fbaf0b..8a7a881da 100644 --- a/tests/sample_data/logs/taskcluster-missing-finish-step-marker.logview.json +++ b/tests/sample_data/logs/taskcluster-missing-finish-step-marker.logview.json @@ -45,5 +45,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/taskcluster-missing-finish-step-marker.txt.gz" + "logurl": "http://my-log.mozilla.org/taskcluster-missing-finish-step-marker.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/tinderbox-exception.logview.json b/tests/sample_data/logs/tinderbox-exception.logview.json index 40df01dab..423259f91 100644 --- a/tests/sample_data/logs/tinderbox-exception.logview.json +++ b/tests/sample_data/logs/tinderbox-exception.logview.json @@ -62,5 +62,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/tinderbox-exception.txt.gz" + "logurl": "http://my-log.mozilla.org/tinderbox-exception.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.jobartifact.json b/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.jobartifact.json index 2935d5523..4739a7bdb 100644 --- a/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.jobartifact.json +++ b/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.jobartifact.json @@ -12,5 +12,5 @@ "title": "jetpack" } ], - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.txt.gz" + "logurl": "http://my-log.mozilla.org/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.txt.gz" } diff --git a/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.logview.json b/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.logview.json index 7600e49e9..a70e4f729 100644 --- a/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.logview.json +++ b/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.logview.json @@ -227,5 +227,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.txt.gz" + "logurl": "http://my-log.mozilla.org/ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/xpcshell-crash.logview.json b/tests/sample_data/logs/xpcshell-crash.logview.json index b52747330..9c978bbb3 100644 --- a/tests/sample_data/logs/xpcshell-crash.logview.json +++ b/tests/sample_data/logs/xpcshell-crash.logview.json @@ -58,5 +58,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/xpcshell-crash.txt.gz" + "logurl": "http://my-log.mozilla.org/xpcshell-crash.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/xpcshell-multiple.logview.json b/tests/sample_data/logs/xpcshell-multiple.logview.json index 77443ee17..19eaf1fde 100644 --- a/tests/sample_data/logs/xpcshell-multiple.logview.json +++ b/tests/sample_data/logs/xpcshell-multiple.logview.json @@ -58,5 +58,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/xpcshell-multiple.txt.gz" + "logurl": "http://my-log.mozilla.org/xpcshell-multiple.txt.gz" } \ No newline at end of file diff --git a/tests/sample_data/logs/xpcshell-timeout.logview.json b/tests/sample_data/logs/xpcshell-timeout.logview.json index 6f7cefe9c..181d7f287 100644 --- a/tests/sample_data/logs/xpcshell-timeout.logview.json +++ b/tests/sample_data/logs/xpcshell-timeout.logview.json @@ -58,5 +58,5 @@ ], "errors_truncated": false }, - "logurl": "file:///home/vagrant/treeherder/tests/sample_data/logs/xpcshell-timeout.txt.gz" + "logurl": "http://my-log.mozilla.org/xpcshell-timeout.txt.gz" } \ No newline at end of file