Пример #1
0
    def test_coverage_report_aggregates_multiple_hosts(self):

        # Setup
        results = [
            DeployResult(
                command=['components'],
                result={'components': {
                    'foo': {
                        'abcdef': 1
                    }
                }},
            ),
        ]
        host_results = {
            Host.from_hostname('test'): {
                'status': "success",
                'results': results
            },
            Host.from_hostname('test-2'): {
                'status': "success",
                'results': results
            },
        }

        # Generate Report
        report = generate_component_report(host_results)

        # Verify
        expected_report = {'foo': {'abcdef': 2}}
        self.assertEqual(report, expected_report)
Пример #2
0
    def test_coverage_report_skips_other_commands(self):

        # Setup
        host = Host.from_hostname('test')
        results = [
            DeployResult(
                command=['deploy', 'foo'],
                result={},
            ),
            DeployResult(
                command=['components'],
                result={'components': {'foo': {'abcdef': 1}}},
            ),
        ]
        host_results = {host: {'status': "complete", 'output': results}}

        # Generate Report
        report = generate_component_report(host_results)

        # Verify
        expected_report = {
            'foo': {
                'abcdef': 1,
            },
        }
        self.assertEqual(report, expected_report)
Пример #3
0
    def test_coverage_report_generation(self):

        # Setup
        host = Host.from_hostname('test')
        results = [
            DeployResult(
                command=['components'],
                result={'components': {
                    'foo': {
                        'abcdef': 1
                    }
                }},
            ),
        ]
        host_results = {host: {'status': "success", 'results': results}}

        # Generate Report
        report = generate_component_report(host_results)

        # Verify
        expected_report = {
            'foo': {
                'abcdef': 1,
            },
        }
        self.assertEqual(report, expected_report)
Пример #4
0
    def test_coverage_report_doesnt_break_when_no_coverage_report_requested(self):  # noqa

        # Setup
        host = Host.from_hostname('test')
        results = [
            DeployResult(
                command=['deploy', 'foo'],
                result={},
            ),
        ]
        host_results = {host: {'status': "complete", 'output': results}}

        # Generate Report
        report = generate_component_report(host_results)

        # Verify
        self.assertEqual(report, {})
Пример #5
0
    def test_coverage_report_aggregates_multiple_hosts(self):

        # Setup
        results = [
            DeployResult(
                command=['components'],
                result={'components': {'foo': {'abcdef': 1}}},
            ),
        ]
        host_results = {
            Host.from_hostname('test'): {'status': "complete", 'output': results},
            Host.from_hostname('test-2'): {'status': "complete", 'output': results},
        }

        # Generate Report
        report = generate_component_report(host_results)

        # Verify
        expected_report = {'foo': {'abcdef': 2}}
        self.assertEqual(report, expected_report)