Ejemplo n.º 1
0
 def _test_find_changed_tests(  #pylint: disable=too-many-arguments
         self,
         commit,
         max_revisions,
         variant,
         check_evg,
         rev1,
         rev2,
         rev_diff,
         untracked_files,
         last_activated_task=None):
     branch = "master"
     # pylint: disable=attribute-defined-outside-init
     self.rev1 = rev1
     self.rev2 = rev2
     self.rev_diff = rev_diff
     self.untracked_files = untracked_files
     self.expected_changed_tests = []
     if commit is None and rev_diff:
         self.expected_changed_tests += rev_diff[str(self.NUM_COMMITS - 1)]
     elif rev_diff.get(commit, []):
         self.expected_changed_tests += rev_diff.get(commit, [])
     self.expected_changed_tests += untracked_files
     # pylint: enable=attribute-defined-outside-init
     with patch("buildscripts.client.evergreen.read_evg_config"
                ) as mock_read_evg, patch(
                    "buildscripts.git.Repository", self._mock_git_repository
                ), patch("os.path.isfile") as mock_isfile, patch(
                    "buildscripts.burn_in_tests.find_last_activated_task"
                ) as mock_find_last_activated_task:
         mock_read_evg.return_value = None
         mock_isfile.return_value = True
         mock_find_last_activated_task.return_value = last_activated_task
         return burn_in.find_changed_tests(branch, commit, max_revisions,
                                           variant, check_evg)
Ejemplo n.º 2
0
    def test_missing_files_filtered(self, is_file_mock, changed_files_mock):
        repo_mock = MagicMock()
        file_list = [
            os.path.join("jstests", "test1.js"),
            os.path.join("jstests", "test2.js"),
            os.path.join("jstests", "test3.js"),
        ]
        changed_files_mock.return_value = set(file_list)
        is_file_mock.return_value = False

        found_tests = under_test.find_changed_tests([repo_mock])

        self.assertEqual(0, len(found_tests))
Ejemplo n.º 3
0
    def test_non_js_files_filtered(self, is_file_mock, changed_files_mock):
        repo_mock = MagicMock()
        file_list = [
            os.path.join("jstests", "test1.js"),
            os.path.join("jstests", "test1.cpp"),
            os.path.join("jstests", "test2.js"),
        ]
        changed_files_mock.return_value = set(file_list)
        is_file_mock.return_value = True

        found_tests = under_test.find_changed_tests([repo_mock])

        self.assertIn(file_list[0], found_tests)
        self.assertIn(file_list[2], found_tests)
        self.assertNotIn(file_list[1], found_tests)
Ejemplo n.º 4
0
def _generate_evg_tasks(evergreen_api: EvergreenApi,
                        shrub_project: ShrubProject,
                        task_expansions: Dict[str, Any],
                        build_variant_map: Dict[str, str], repos: List[Repo],
                        evg_conf: EvergreenProjectConfig) -> None:
    """
    Generate burn in tests tasks for a given shrub config and group of build variants.

    :param evergreen_api: Evergreen.py object.
    :param shrub_project: Shrub config object that the build variants will be built upon.
    :param task_expansions: Dictionary of expansions for the running task.
    :param build_variant_map: Map of base buildvariants to their generated buildvariant.
    :param repos: Git repositories.
    """
    for build_variant, run_build_variant in build_variant_map.items():
        config_options = _get_config_options(task_expansions, build_variant,
                                             run_build_variant)
        task_id = task_expansions[TASK_ID_EXPANSION]
        changed_tests = find_changed_tests(repos,
                                           evg_api=evergreen_api,
                                           task_id=task_id)
        tests_by_task = create_tests_by_task(build_variant, evg_conf,
                                             changed_tests)
        if tests_by_task:
            shrub_build_variant = _generate_evg_build_variant(
                evg_conf.get_variant(build_variant), run_build_variant,
                task_expansions["build_variant"])
            gen_config = GenerateConfig(
                build_variant, config_options.project, run_build_variant,
                config_options.distro).validate(evg_conf)
            repeat_config = RepeatConfig(
                repeat_tests_min=config_options.repeat_tests_min,
                repeat_tests_max=config_options.repeat_tests_max,
                repeat_tests_secs=config_options.repeat_tests_secs)

            create_generate_tasks_config(shrub_build_variant,
                                         tests_by_task,
                                         gen_config,
                                         repeat_config,
                                         evergreen_api,
                                         include_gen_task=False)
            shrub_project.add_build_variant(shrub_build_variant)
Ejemplo n.º 5
0
 def _test_find_changed_tests(  #pylint: disable=too-many-arguments
         self, commit, max_revisions, variant, check_evg, rev1, rev2, rev_diff, untracked_files,
         last_activated_task=None):
     branch = "master"
     # pylint: disable=attribute-defined-outside-init
     self.rev1 = rev1
     self.rev2 = rev2
     self.rev_diff = rev_diff
     self.untracked_files = untracked_files
     self.expected_changed_tests = []
     if commit is None and rev_diff:
         self.expected_changed_tests += rev_diff[str(self.NUM_COMMITS - 1)]
     elif rev_diff.get(commit, []):
         self.expected_changed_tests += rev_diff.get(commit, [])
     self.expected_changed_tests += untracked_files
     # pylint: enable=attribute-defined-outside-init
     with patch(EVG_CLIENT + ".read_evg_config", return_value=None),\
          patch(GIT + ".Repository", self._mock_git_repository),\
          patch("os.path.isfile", return_value=True),\
          patch(BURN_IN + ".find_last_activated_task", return_value=last_activated_task):
         return burn_in.find_changed_tests(branch, commit, max_revisions, variant, check_evg)
Ejemplo n.º 6
0
    def test_nothing_found(self, changed_files_mock):
        repo_mock = MagicMock()
        changed_files_mock.return_value = set()

        self.assertEqual(0, len(under_test.find_changed_tests(repo_mock)))
def main(build_variant, run_build_variant, distro, project,
         generate_tasks_file, no_exec, resmoke_args, evg_api_config, verbose,
         task_id):
    """
    Run new or changed tests in repeated mode to validate their stability.

    Running burn_in_tests_multiversion will run new or changed tests against the appropriate generated multiversion
    suites. The purpose of these tests are to signal bugs in the generated multiversion suites as these tasks are
    excluded from the required build variants and are only run in certain daily build variants. As such, we only expect
    the burn-in multiversion tests to be run once for each binary version configuration, and `--repeat-*` arguments
    should be None when executing this script.

    There are two modes that burn_in_tests_multiversion can run in:

    (1) Normal mode: by default burn_in_tests will attempt to run all detected tests the
    configured number of times. This is useful if you have a test or tests you would like to
    check before submitting a patch to evergreen.

    (2) By specifying the `--generate-tasks-file`, burn_in_tests will run generate a configuration
    file that can then be sent to the Evergreen 'generate.tasks' command to create evergreen tasks
    to do all the test executions. This is the mode used to run tests in patch builds.

    NOTE: There is currently a limit of the number of tasks burn_in_tests will attempt to generate
    in evergreen. The limit is 1000. If you change enough tests that more than 1000 tasks would
    be generated, burn_in_test will fail. This is to avoid generating more tasks than evergreen
    can handle.
    \f

    :param build_variant: Build variant to query tasks from.
    :param run_build_variant:Build variant to actually run against.
    :param distro: Distro to run tests on.
    :param project: Project to run tests on.
    :param generate_tasks_file: Create a generate tasks configuration in this file.
    :param no_exec: Just perform test discover, do not execute the tests.
    :param resmoke_args: Arguments to pass through to resmoke.
    :param evg_api_config: Location of configuration file to connect to evergreen.
    :param verbose: Log extra debug information.
    """
    _configure_logging(verbose)

    evg_conf = parse_evergreen_file(EVERGREEN_FILE)
    repeat_config = RepeatConfig()  # yapf: disable
    generate_config = GenerateConfig(build_variant=build_variant,
                                     run_build_variant=run_build_variant,
                                     distro=distro,
                                     project=project,
                                     task_id=task_id)  # yapf: disable
    if generate_tasks_file:
        generate_config.validate(evg_conf)

    evg_api = _get_evg_api(evg_api_config, False)

    repos = [Repo(x) for x in DEFAULT_REPO_LOCATIONS if os.path.isdir(x)]

    resmoke_cmd = _set_resmoke_cmd(repeat_config, list(resmoke_args))

    changed_tests = find_changed_tests(repos, evg_api=evg_api, task_id=task_id)
    tests_by_task = create_tests_by_task(generate_config.build_variant,
                                         evg_conf, changed_tests)
    LOGGER.debug("tests and tasks found", tests_by_task=tests_by_task)

    if generate_tasks_file:
        multiversion_tasks = evg_conf.get_task_names_by_tag(
            MULTIVERSION_PASSTHROUGH_TAG)
        LOGGER.debug("Multiversion tasks by tag",
                     tasks=multiversion_tasks,
                     tag=MULTIVERSION_PASSTHROUGH_TAG)
        # We expect the number of suites with MULTIVERSION_PASSTHROUGH_TAG to be the same as in
        # multiversion_suites. Multiversion passthrough suites must include
        # MULTIVERSION_CONFIG_KEY as a root level key and must be set to true.
        multiversion_suites = get_named_suites_with_root_level_key(
            MULTIVERSION_CONFIG_KEY)
        assert len(multiversion_tasks) == len(multiversion_suites)

        build_variant = create_multiversion_generate_tasks_config(
            tests_by_task, evg_api, generate_config)
        shrub_project = ShrubProject.empty()
        shrub_project.add_build_variant(build_variant)

        if not validate_task_generation_limit(shrub_project):
            sys.exit(1)

        write_file(generate_tasks_file, shrub_project.json())
    elif not no_exec:
        run_tests(tests_by_task, resmoke_cmd)
    else:
        LOGGER.info("Not running tests due to 'no_exec' option.")