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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
#!/usr/bin/env python3
# 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.
"""Script used to generate the tests definitions for Web App testing framework.
See the README.md file in this directory for more information.
Usage: python3 chrome/test/webapps/generate_framework_tests_and_coverage.py
"""
import argparse
from io import TextIOWrapper
import logging
import os
from typing import List, Optional, Dict
import csv
from models import ActionNode
from models import CoverageTestsByPlatform
from models import CoverageTestsByPlatformSet
from models import TestPartitionDescription
from models import TestPlatform
from models import CoverageTest
from graph_analysis import build_action_node_graph
from graph_analysis import generate_coverage_file_and_percents
from graph_analysis import trim_graph_to_platform_actions
from graph_analysis import generate_framework_tests
from graph_analysis import generage_graphviz_dot_file
from file_reading import find_existing_and_disabled_tests
from file_reading import read_actions_file
from file_reading import read_enums_file
from file_reading import read_platform_supported_actions
from file_reading import read_unprocessed_coverage_tests_file
from test_analysis import compare_and_print_tests_to_remove_and_add
from test_analysis import expand_parameterized_tests
from test_analysis import filter_coverage_tests_for_platform
from test_analysis import partition_framework_tests_per_platform_combination
def check_partition_prefixes(partition_a: TestPartitionDescription,
partition_b: TestPartitionDescription):
if partition_a.test_file_prefix.startswith(partition_b.test_file_prefix):
raise ValueError(
f"Cannot have partition filenames intersect:"
f"{partition_a.test_file_prefix} and {partition_b.test_file_prefix}"
)
def generate_framework_tests_and_coverage(
supported_framework_action_file: TextIOWrapper,
enums_file: TextIOWrapper,
actions_file: TextIOWrapper,
coverage_required_file: TextIOWrapper,
custom_partitions: List[TestPartitionDescription],
default_partition: TestPartitionDescription,
coverage_output_dir: str,
graph_output_dir: Optional[str],
delete_in_place: bool = False,
add_to_file: bool = False,
suppress_coverage: bool = False):
for partition_a in custom_partitions:
check_partition_prefixes(partition_a, default_partition)
for partition_b in custom_partitions:
if partition_a == partition_b:
continue
check_partition_prefixes(partition_a, partition_b)
actions_csv = actions_file.readlines()
platform_supported_actions = read_platform_supported_actions(
csv.reader(supported_framework_action_file, delimiter=','))
enums = read_enums_file(enums_file.readlines())
(actions, action_base_name_to_default_param) = read_actions_file(
actions_csv, enums, platform_supported_actions)
required_coverage_tests = read_unprocessed_coverage_tests_file(
coverage_required_file.readlines(), actions, enums,
action_base_name_to_default_param)
required_coverage_tests = expand_parameterized_tests(
required_coverage_tests)
if graph_output_dir:
coverage_root_node = ActionNode.CreateRootNode()
build_action_node_graph(coverage_root_node, required_coverage_tests)
graph_file = generage_graphviz_dot_file(coverage_root_node, None)
output_coverage_graph_file_name = os.path.join(
graph_output_dir, "coverage_required_graph.dot")
with open(output_coverage_graph_file_name, "w",
encoding="'utf-8") as coverage_graph_file:
coverage_graph_file.write("# This is a generated file.\n")
coverage_graph_file.write(graph_file)
coverage_graph_file.close()
# Each platform can have unique tests. Start by generating the required
# tests per platform, and the generated testes per platform.
required_coverage_by_platform: CoverageTestsByPlatform = {}
generated_tests_by_platform: CoverageTestsByPlatform = {}
for platform in TestPlatform:
platform_tests = filter_coverage_tests_for_platform(
required_coverage_tests.copy(), platform)
required_coverage_by_platform[platform] = platform_tests
generated_tests_root_node = ActionNode.CreateRootNode()
build_action_node_graph(generated_tests_root_node, platform_tests)
trim_graph_to_platform_actions(generated_tests_root_node, platform)
generated_tests_by_platform[platform] = generate_framework_tests(
generated_tests_root_node, platform)
if graph_output_dir:
graph_file = generage_graphviz_dot_file(generated_tests_root_node,
platform)
output_coverage_graph_file_name = os.path.join(
graph_output_dir,
"generated_tests_graph_" + platform.suffix + ".dot")
with open(output_coverage_graph_file_name, "w",
encoding="'utf-8") as coverage_graph_file:
coverage_graph_file.write("# This is a generated file.\n")
coverage_graph_file.write(graph_file)
# A test can be required to run on on multiple platforms, and we group
# required tests by platform set to output minimal number of browser tests
# files. This allows the test to exist only in one place for ease of
# sheriffing. Example:
# Linux: testA, testB
# Mac: testA, testB
# Windows: testA
# ChromeOS: testA, testC
# ->
# {Linux, Mac, Windows, ChromeOS} -> testA
# {Linux, Mac} -> testB
# {ChromeOS} -> testC
required_coverage_by_platform_set: CoverageTestsByPlatformSet = (
partition_framework_tests_per_platform_combination(
generated_tests_by_platform))
# Find all existing tests.
all_partitions = [default_partition]
all_partitions.extend(custom_partitions)
(existing_tests_ids_names_by_platform_set,
disabled_test_ids_names_by_platform) = find_existing_and_disabled_tests(
all_partitions, required_coverage_by_platform_set, delete_in_place)
# Print all diffs that are required.
compare_and_print_tests_to_remove_and_add(
existing_tests_ids_names_by_platform_set,
required_coverage_by_platform_set, custom_partitions,
default_partition, add_to_file)
if suppress_coverage:
return
# To calculate coverage we need to incorporate any disabled tests.
# Remove any disabled tests from the generated tests per platform.
for platform, tests in generated_tests_by_platform.items():
disabled_tests = disabled_test_ids_names_by_platform.get(platform, [])
disabled_test_ids = set([test_id for (test_id, _) in disabled_tests])
tests_minus_disabled: List[CoverageTest] = []
for test in tests:
if test.id not in disabled_test_ids:
tests_minus_disabled.append(test)
else:
logging.info("Removing disabled test from coverage: " +
test.id)
generated_tests_root_node = ActionNode.CreateRootNode()
build_action_node_graph(generated_tests_root_node,
tests_minus_disabled)
(coverage_file, full, partial) = generate_coverage_file_and_percents(
required_coverage_by_platform[platform], generated_tests_root_node,
platform)
coverage_filename = os.path.join(coverage_output_dir,
f"coverage_{platform.suffix}.tsv")
with open(coverage_filename, 'w+', encoding="'utf-8") as file:
file.write("# This is a generated file.\n")
file.write(f"# Full coverage: {full:.0%}, "
f"with partial coverage: {partial:.0%}\n")
file.write(coverage_file + "\n")
return
def main(argv=None):
parser = argparse.ArgumentParser(description='WebApp Test List Processor')
parser.add_argument('-v',
dest='v',
action='store_true',
help='Include info logging.',
required=False)
parser.add_argument('--graphs',
dest='graphs',
action='store_true',
help='Output dot graphs from all steps.',
required=False)
parser.add_argument('--delete-in-place',
dest='delete_in_place',
action='store_true',
help='Delete test cases no longer needed in place',
required=False)
parser.add_argument('--add-to-file',
dest='add_to_file',
action='store_true',
help='Add test cases to existing test file',
required=False)
parser.add_argument('--suppress-coverage',
dest='suppress_coverage',
action='store_true',
help='Do not write coverage information.',
required=False)
options = parser.parse_args(argv)
logging.basicConfig(level=logging.INFO if options.v else logging.WARN,
format='[%(asctime)s %(levelname)s] %(message)s',
datefmt='%H:%M:%S')
script_dir = os.path.dirname(os.path.realpath(__file__))
actions_filename = os.path.join(script_dir, "data", "actions.md")
enums_filename = os.path.join(script_dir, "data", "enums.md")
supported_actions_filename = os.path.join(
script_dir, "data", "framework_supported_actions.csv")
coverage_required_filename = os.path.join(script_dir, "data",
"critical_user_journeys.md")
coverage_output_dir = os.path.join(script_dir, "coverage")
default_tests_location = os.path.join(script_dir, "..", "..", "browser",
"ui", "views", "web_apps")
sync_tests_location = os.path.join(script_dir, "..", "..", "browser",
"sync", "test", "integration")
# These describe where existing browsertests are to be found, and where the
# script runner will be directed to write tests to.
custom_partitions = [
TestPartitionDescription(
action_name_prefixes={"switch_profile_clients", "sync_"},
browsertest_dir=sync_tests_location,
test_file_prefix="two_client_web_apps_integration_test",
test_fixture="WebAppIntegration")
]
default_partition = TestPartitionDescription(
action_name_prefixes=set(),
browsertest_dir=default_tests_location,
test_file_prefix="web_app_integration_browsertest",
test_fixture="WebAppIntegration")
graph_output_dir = None
if options.graphs:
graph_output_dir = script_dir
with open(actions_filename, 'r', encoding="utf-8") as actions_file, \
open(supported_actions_filename, 'r', encoding="utf-8") \
as supported_actions, \
open(enums_filename, 'r', encoding="utf-8") \
as enums_file, \
open(coverage_required_filename, 'r', encoding="utf-8") \
as coverage_file:
generate_framework_tests_and_coverage(
supported_actions, enums_file, actions_file, coverage_file,
custom_partitions, default_partition, coverage_output_dir,
graph_output_dir, options.delete_in_place, options.add_to_file,
options.suppress_coverage)
if __name__ == '__main__':
main()
|