X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/87a3cc47267fad4cc769d9d866754c072a83c35e..00a4d2f890cd363725a4d6697bbf92498c866420:/tools/crunchstat-summary/tests/test_examples.py diff --git a/tools/crunchstat-summary/tests/test_examples.py b/tools/crunchstat-summary/tests/test_examples.py index a19d7ad0a4..6271f5665c 100644 --- a/tools/crunchstat-summary/tests/test_examples.py +++ b/tools/crunchstat-summary/tests/test_examples.py @@ -1,7 +1,10 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + import arvados import collections import crunchstat_summary.command -import crunchstat_summary.summarizer import difflib import glob import gzip @@ -9,17 +12,17 @@ import mock import os import unittest - TESTS_DIR = os.path.dirname(os.path.abspath(__file__)) + class ReportDiff(unittest.TestCase): - def diff_known_report(self, logfile, summarizer): + def diff_known_report(self, logfile, cmd): expectfile = logfile+'.report' expect = open(expectfile).readlines() - self.diff_report(summarizer, expect, expectfile=expectfile) + self.diff_report(cmd, expect, expectfile=expectfile) - def diff_report(self, summarizer, expect, expectfile=None): - got = [x+"\n" for x in summarizer.report().strip("\n").split("\n")] + def diff_report(self, cmd, expect, expectfile=None): + got = [x+"\n" for x in cmd.report().strip("\n").split("\n")] self.assertEqual(got, expect, "\n"+"".join(difflib.context_diff( expect, got, fromfile=expectfile, tofile="(generated)"))) @@ -30,13 +33,66 @@ class SummarizeFile(ReportDiff): logfile = os.path.join(TESTS_DIR, fnm) args = crunchstat_summary.command.ArgumentParser().parse_args( ['--log-file', logfile]) - summarizer = crunchstat_summary.command.Command(args).summarizer() - summarizer.run() - self.diff_known_report(logfile, summarizer) + cmd = crunchstat_summary.command.Command(args) + cmd.run() + self.diff_known_report(logfile, cmd) + + +class HTMLFromFile(ReportDiff): + def test_example_files(self): + # Note we don't test the output content at all yet; we're + # mainly just verifying the --format=html option isn't ignored + # and the HTML code path doesn't crash. + for fnm in glob.glob(os.path.join(TESTS_DIR, '*.txt.gz')): + logfile = os.path.join(TESTS_DIR, fnm) + args = crunchstat_summary.command.ArgumentParser().parse_args( + ['--format=html', '--log-file', logfile]) + cmd = crunchstat_summary.command.Command(args) + cmd.run() + self.assertRegexpMatches(cmd.report(), r'(?is).*\s*$') + + +class SummarizeEdgeCases(unittest.TestCase): + def test_error_messages(self): + logfile = open(os.path.join(TESTS_DIR, 'crunchstat_error_messages.txt')) + s = crunchstat_summary.summarizer.Summarizer(logfile) + s.run() + + +class SummarizeContainer(ReportDiff): + fake_container = { + 'uuid': '9tee4-dz642-mjfb0i5hzojp16a', + 'created_at': '2017-08-18T14:27:25.371388141', + 'log': '9tee4-4zz18-ihyzym9tcwjwg4r', + } + fake_request = { + 'uuid': '9tee4-xvhdp-uper95jktm10d3w', + 'name': 'container', + 'created_at': '2017-08-18T14:27:25.242339223Z', + 'container_uuid': fake_container['uuid'], + } + logfile = os.path.join( + TESTS_DIR, 'container_9tee4-dz642-mjfb0i5hzojp16a-crunchstat.txt.gz') + + @mock.patch('arvados.collection.CollectionReader') + @mock.patch('arvados.api') + def test_container(self, mock_api, mock_cr): + mock_api().container_requests().index().execute.return_value = {'items':[]} + mock_api().container_requests().get().execute.return_value = self.fake_request + mock_api().containers().get().execute.return_value = self.fake_container + mock_cr().__iter__.return_value = [ + 'crunch-run.txt', 'stderr.txt', 'node-info.txt', + 'container.json', 'crunchstat.txt'] + mock_cr().open.return_value = gzip.open(self.logfile) + args = crunchstat_summary.command.ArgumentParser().parse_args( + ['--job', self.fake_request['uuid']]) + cmd = crunchstat_summary.command.Command(args) + cmd.run() + self.diff_known_report(self.logfile, cmd) class SummarizeJob(ReportDiff): - fake_job_uuid = 'zzzzz-8i9sb-jjjjjjjjjjjjjjj' + fake_job_uuid = '4xphq-8i9sb-jq0ekny1xou3zoh' fake_log_id = 'fake-log-collection-id' fake_job = { 'uuid': fake_job_uuid, @@ -52,9 +108,9 @@ class SummarizeJob(ReportDiff): mock_cr().open.return_value = gzip.open(self.logfile) args = crunchstat_summary.command.ArgumentParser().parse_args( ['--job', self.fake_job_uuid]) - summarizer = crunchstat_summary.command.Command(args).summarizer() - summarizer.run() - self.diff_known_report(self.logfile, summarizer) + cmd = crunchstat_summary.command.Command(args) + cmd.run() + self.diff_known_report(self.logfile, cmd) mock_api().jobs().get.assert_called_with(uuid=self.fake_job_uuid) mock_cr.assert_called_with(self.fake_log_id) mock_cr().open.assert_called_with('fake-logfile.txt') @@ -70,7 +126,7 @@ class SummarizePipeline(ReportDiff): 'uuid': 'zzzzz-8i9sb-000000000000000', 'log': 'fake-log-pdh-0', 'runtime_constraints': { - 'min_ram_mb_per_node': 1024, + 'min_ram_mb_per_node': 900, 'min_cores_per_node': 1, }, }, @@ -80,7 +136,7 @@ class SummarizePipeline(ReportDiff): 'uuid': 'zzzzz-8i9sb-000000000000001', 'log': 'fake-log-pdh-1', 'runtime_constraints': { - 'min_ram_mb_per_node': 1024, + 'min_ram_mb_per_node': 900, 'min_cores_per_node': 1, }, }, @@ -96,7 +152,7 @@ class SummarizePipeline(ReportDiff): 'uuid': 'zzzzz-8i9sb-000000000000002', 'log': 'fake-log-pdh-2', 'runtime_constraints': { - 'min_ram_mb_per_node': 1024, + 'min_ram_mb_per_node': 900, 'min_cores_per_node': 1, }, }, @@ -113,8 +169,8 @@ class SummarizePipeline(ReportDiff): mock_cr().open.side_effect = [gzip.open(logfile) for _ in range(3)] args = crunchstat_summary.command.ArgumentParser().parse_args( ['--pipeline-instance', self.fake_instance['uuid']]) - summarizer = crunchstat_summary.command.Command(args).summarizer() - summarizer.run() + cmd = crunchstat_summary.command.Command(args) + cmd.run() job_report = [ line for line in open(logfile+'.report').readlines() @@ -124,9 +180,91 @@ class SummarizePipeline(ReportDiff): job_report + ['\n'] + ['### Summary for bar (zzzzz-8i9sb-000000000000001)\n'] + job_report + ['\n'] + + ['### Summary for unfinished-job (partial) (zzzzz-8i9sb-xxxxxxxxxxxxxxx)\n', + '(no report generated)\n', + '\n'] + ['### Summary for baz (zzzzz-8i9sb-000000000000002)\n'] + job_report) - self.diff_report(summarizer, expect) + self.diff_report(cmd, expect) + mock_cr.assert_has_calls( + [ + mock.call('fake-log-pdh-0'), + mock.call('fake-log-pdh-1'), + mock.call('fake-log-pdh-2'), + ], any_order=True) + mock_cr().open.assert_called_with('fake-logfile.txt') + + +class SummarizeACRJob(ReportDiff): + fake_job = { + 'uuid': 'zzzzz-8i9sb-i3e77t9z5y8j9cc', + 'owner_uuid': 'zzzzz-tpzed-xurymjxw79nv3jz', + 'components': { + 'foo': 'zzzzz-8i9sb-000000000000000', + 'bar': 'zzzzz-8i9sb-000000000000001', + 'unfinished-job': 'zzzzz-8i9sb-xxxxxxxxxxxxxxx', + 'baz': 'zzzzz-8i9sb-000000000000002', + } + } + fake_jobs_index = { 'items': [ + { + 'uuid': 'zzzzz-8i9sb-000000000000000', + 'log': 'fake-log-pdh-0', + 'runtime_constraints': { + 'min_ram_mb_per_node': 900, + 'min_cores_per_node': 1, + }, + }, + { + 'uuid': 'zzzzz-8i9sb-000000000000001', + 'log': 'fake-log-pdh-1', + 'runtime_constraints': { + 'min_ram_mb_per_node': 900, + 'min_cores_per_node': 1, + }, + }, + { + 'uuid': 'zzzzz-8i9sb-xxxxxxxxxxxxxxx', + }, + { + 'uuid': 'zzzzz-8i9sb-000000000000002', + 'log': 'fake-log-pdh-2', + 'runtime_constraints': { + 'min_ram_mb_per_node': 900, + 'min_cores_per_node': 1, + }, + }, + ]} + @mock.patch('arvados.collection.CollectionReader') + @mock.patch('arvados.api') + def test_acr_job(self, mock_api, mock_cr): + logfile = os.path.join(TESTS_DIR, 'logfile_20151204190335.txt.gz') + mock_api().jobs().index().execute.return_value = self.fake_jobs_index + mock_api().jobs().get().execute.return_value = self.fake_job + mock_cr().__iter__.return_value = ['fake-logfile.txt'] + mock_cr().open.side_effect = [gzip.open(logfile) for _ in range(3)] + args = crunchstat_summary.command.ArgumentParser().parse_args( + ['--job', self.fake_job['uuid']]) + cmd = crunchstat_summary.command.Command(args) + cmd.run() + + job_report = [ + line for line in open(logfile+'.report').readlines() + if not line.startswith('#!! ')] + expect = ( + ['### Summary for zzzzz-8i9sb-i3e77t9z5y8j9cc (partial) (zzzzz-8i9sb-i3e77t9z5y8j9cc)\n', + '(no report generated)\n', + '\n'] + + ['### Summary for bar (zzzzz-8i9sb-000000000000001)\n'] + + job_report + ['\n'] + + ['### Summary for baz (zzzzz-8i9sb-000000000000002)\n'] + + job_report + ['\n'] + + ['### Summary for foo (zzzzz-8i9sb-000000000000000)\n'] + + job_report + ['\n'] + + ['### Summary for unfinished-job (partial) (zzzzz-8i9sb-xxxxxxxxxxxxxxx)\n', + '(no report generated)\n'] + ) + self.diff_report(cmd, expect) mock_cr.assert_has_calls( [ mock.call('fake-log-pdh-0'),