1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
7 import crunchstat_summary.command
15 TESTS_DIR = os.path.dirname(os.path.abspath(__file__))
18 class ReportDiff(unittest.TestCase):
19 def diff_known_report(self, logfile, cmd):
20 expectfile = logfile+'.report'
21 expect = open(expectfile).readlines()
22 self.diff_report(cmd, expect, expectfile=expectfile)
24 def diff_report(self, cmd, expect, expectfile=None):
25 got = [x+"\n" for x in cmd.report().strip("\n").split("\n")]
26 self.assertEqual(got, expect, "\n"+"".join(difflib.context_diff(
27 expect, got, fromfile=expectfile, tofile="(generated)")))
30 class SummarizeFile(ReportDiff):
31 def test_example_files(self):
32 for fnm in glob.glob(os.path.join(TESTS_DIR, '*.txt.gz')):
33 logfile = os.path.join(TESTS_DIR, fnm)
34 args = crunchstat_summary.command.ArgumentParser().parse_args(
35 ['--log-file', logfile])
36 cmd = crunchstat_summary.command.Command(args)
38 self.diff_known_report(logfile, cmd)
41 class HTMLFromFile(ReportDiff):
42 def test_example_files(self):
43 # Note we don't test the output content at all yet; we're
44 # mainly just verifying the --format=html option isn't ignored
45 # and the HTML code path doesn't crash.
46 for fnm in glob.glob(os.path.join(TESTS_DIR, '*.txt.gz')):
47 logfile = os.path.join(TESTS_DIR, fnm)
48 args = crunchstat_summary.command.ArgumentParser().parse_args(
49 ['--format=html', '--log-file', logfile])
50 cmd = crunchstat_summary.command.Command(args)
52 self.assertRegexpMatches(cmd.report(), r'(?is)<html>.*</html>\s*$')
55 class SummarizeEdgeCases(unittest.TestCase):
56 def test_error_messages(self):
57 logfile = open(os.path.join(TESTS_DIR, 'crunchstat_error_messages.txt'))
58 s = crunchstat_summary.summarizer.Summarizer(logfile)
62 class SummarizeJob(ReportDiff):
63 fake_job_uuid = '4xphq-8i9sb-jq0ekny1xou3zoh'
64 fake_log_id = 'fake-log-collection-id'
66 'uuid': fake_job_uuid,
69 logfile = os.path.join(TESTS_DIR, 'logfile_20151204190335.txt.gz')
71 @mock.patch('arvados.collection.CollectionReader')
72 @mock.patch('arvados.api')
73 def test_job_report(self, mock_api, mock_cr):
74 mock_api().jobs().get().execute.return_value = self.fake_job
75 mock_cr().__iter__.return_value = ['fake-logfile.txt']
76 mock_cr().open.return_value = gzip.open(self.logfile)
77 args = crunchstat_summary.command.ArgumentParser().parse_args(
78 ['--job', self.fake_job_uuid])
79 cmd = crunchstat_summary.command.Command(args)
81 self.diff_known_report(self.logfile, cmd)
82 mock_api().jobs().get.assert_called_with(uuid=self.fake_job_uuid)
83 mock_cr.assert_called_with(self.fake_log_id)
84 mock_cr().open.assert_called_with('fake-logfile.txt')
87 class SummarizePipeline(ReportDiff):
89 'uuid': 'zzzzz-d1hrv-i3e77t9z5y8j9cc',
90 'owner_uuid': 'zzzzz-tpzed-xurymjxw79nv3jz',
91 'components': collections.OrderedDict([
94 'uuid': 'zzzzz-8i9sb-000000000000000',
95 'log': 'fake-log-pdh-0',
96 'runtime_constraints': {
97 'min_ram_mb_per_node': 900,
98 'min_cores_per_node': 1,
104 'uuid': 'zzzzz-8i9sb-000000000000001',
105 'log': 'fake-log-pdh-1',
106 'runtime_constraints': {
107 'min_ram_mb_per_node': 900,
108 'min_cores_per_node': 1,
112 ['no-job-assigned', {}],
115 'uuid': 'zzzzz-8i9sb-xxxxxxxxxxxxxxx',
120 'uuid': 'zzzzz-8i9sb-000000000000002',
121 'log': 'fake-log-pdh-2',
122 'runtime_constraints': {
123 'min_ram_mb_per_node': 900,
124 'min_cores_per_node': 1,
130 @mock.patch('arvados.collection.CollectionReader')
131 @mock.patch('arvados.api')
132 def test_pipeline(self, mock_api, mock_cr):
133 logfile = os.path.join(TESTS_DIR, 'logfile_20151204190335.txt.gz')
134 mock_api().pipeline_instances().get().execute. \
135 return_value = self.fake_instance
136 mock_cr().__iter__.return_value = ['fake-logfile.txt']
137 mock_cr().open.side_effect = [gzip.open(logfile) for _ in range(3)]
138 args = crunchstat_summary.command.ArgumentParser().parse_args(
139 ['--pipeline-instance', self.fake_instance['uuid']])
140 cmd = crunchstat_summary.command.Command(args)
144 line for line in open(logfile+'.report').readlines()
145 if not line.startswith('#!! ')]
147 ['### Summary for foo (zzzzz-8i9sb-000000000000000)\n'] +
148 job_report + ['\n'] +
149 ['### Summary for bar (zzzzz-8i9sb-000000000000001)\n'] +
150 job_report + ['\n'] +
151 ['### Summary for unfinished-job (zzzzz-8i9sb-xxxxxxxxxxxxxxx)\n',
152 '(no report generated)\n',
154 ['### Summary for baz (zzzzz-8i9sb-000000000000002)\n'] +
156 self.diff_report(cmd, expect)
157 mock_cr.assert_has_calls(
159 mock.call('fake-log-pdh-0'),
160 mock.call('fake-log-pdh-1'),
161 mock.call('fake-log-pdh-2'),
163 mock_cr().open.assert_called_with('fake-logfile.txt')