1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
#!/usr/bin/env vpython3
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# pylint: disable=protected-access
import unittest
from unittest import mock
from flake_suppressor_common import data_types
from flake_suppressor_common import tag_utils as common_tag_utils
from flake_suppressor import gpu_expectations
from flake_suppressor import gpu_results
from flake_suppressor import gpu_tag_utils as tag_utils
GENERIC_EXPECTATION_FILE_CONTENTS = """\
# tags: [ win ]
# results: [ Failure ]
crbug.com/1111 [ win ] foo_test [ Failure ]
"""
GPU_EXPECTATION_FILE_CONTENTS = """\
# tags: [ win ]
# tags: [ amd nvidia ]
# results: [ Failure ]
crbug.com/1111 [ win nvidia ] conformance/textures/misc/video-rotation.html [ Failure ]
"""
class GPUResultsUnittest(unittest.TestCase):
def setUp(self) -> None:
common_tag_utils.SetTagUtilsImplementation(tag_utils.GpuTagUtils)
expectations_processor = gpu_expectations.GpuExpectationProcessor()
self._results = gpu_results.GpuResultProcessor(expectations_processor)
self._local_patcher = mock.patch(
'flake_suppressor_common.results.expectations.'
'ExpectationProcessor.GetLocalCheckoutExpectationFileContents')
self._local_mock = self._local_patcher.start()
self._local_mock.return_value = {}
self.addCleanup(self._local_patcher.stop)
class AggregateResultsUnittest(GPUResultsUnittest):
def testWithFiltering(self) -> None:
"""Tests that results are properly filtered out."""
self._local_mock.return_value = {
'webgl_conformance_expectations.txt': GPU_EXPECTATION_FILE_CONTENTS,
}
query_results = [
# Expected to be removed.
{
'name': ('gpu_tests.webgl_conformance_integration_test.'
'WebGLConformanceIntegrationTest.'
'conformance/textures/misc/video-rotation.html'),
'id':
'build-1111',
'typ_tags': ['win', 'nvidia'],
},
# Expected to be removed.
{
'name': ('gpu_tests.webgl_conformance_integration_test.'
'WebGLConformanceIntegrationTest.'
'conformance/textures/misc/video-rotation.html'),
'id':
'build-2222',
'typ_tags': ['win', 'nvidia'],
},
{
'name': ('gpu_tests.webgl_conformance_integration_test.'
'WebGLConformanceIntegrationTest.'
'conformance/textures/misc/video-rotation.html'),
'id':
'build-3333',
'typ_tags': ['win', 'amd'],
},
{
'name': ('gpu_tests.webgl_conformance_integration_test.'
'WebGLConformanceIntegrationTest.'
'conformance/textures/misc/texture-npot-video.html'),
'id':
'build-4444',
'typ_tags': ['win', 'nvidia'],
},
{
'name': ('gpu_tests.pixel_integration_test.PixelIntegrationTest.'
'Pixel_CSS3DBlueBox'),
'id':
'build-5555',
'typ_tags': ['win', 'nvidia'],
},
]
expected_output = {
'webgl_conformance_integration_test': {
'conformance/textures/misc/video-rotation.html': {
('amd', 'win'): ['http://ci.chromium.org/b/3333'],
},
'conformance/textures/misc/texture-npot-video.html': {
('nvidia', 'win'): ['http://ci.chromium.org/b/4444'],
},
},
'pixel_integration_test': {
'Pixel_CSS3DBlueBox': {
('nvidia', 'win'): ['http://ci.chromium.org/b/5555'],
},
},
}
self.assertEqual(self._results.AggregateResults(query_results),
expected_output)
class ConvertJsonResultsToResultObjectsUnittest(GPUResultsUnittest):
def testDuplicateResults(self) -> None:
"""Tests that duplicate results are not merged."""
r = [
{
'name': ('gpu_tests.webgl_conformance_integration_test.'
'WebGLConformanceIntegrationTest.'
'conformance/textures/misc/video-rotation.html'),
'id':
'build-1111',
'typ_tags': ['win', 'nvidia'],
},
{
'name': ('gpu_tests.webgl_conformance_integration_test.'
'WebGLConformanceIntegrationTest.'
'conformance/textures/misc/video-rotation.html'),
'id':
'build-1111',
'typ_tags': ['win', 'nvidia'],
},
]
expected_results = [
data_types.Result('webgl_conformance_integration_test',
'conformance/textures/misc/video-rotation.html',
('nvidia', 'win'), '1111'),
data_types.Result('webgl_conformance_integration_test',
'conformance/textures/misc/video-rotation.html',
('nvidia', 'win'), '1111'),
]
self.assertEqual(self._results._ConvertJsonResultsToResultObjects(r),
expected_results)
if __name__ == '__main__':
unittest.main(verbosity=2)
|