5e61fbaf00
That option can be used when calling the update subcommand. If the option is set, only jobs which are enabled will be updated. That is useful of there are a lot of disabled jobs which are not required. Change-Id: Ie2f268e2356a3b7e0a334a331696ca81e09790aa
151 lines
5.4 KiB
Python
151 lines
5.4 KiB
Python
# Joint copyright:
|
|
# - Copyright 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# The goal of these tests is to check that given a particular set of flags to
|
|
# Jenkins Job Builder's command line tools it will result in a particular set
|
|
# of actions by the JJB library, usually through interaction with the
|
|
# python-jenkins library.
|
|
|
|
from unittest import mock
|
|
|
|
import pytest
|
|
|
|
|
|
def test_update_jobs(mocker, fixtures_dir, default_config_file, execute_jenkins_jobs):
|
|
"""
|
|
Test update_job is called
|
|
"""
|
|
mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.job_exists")
|
|
mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.get_all_jobs")
|
|
reconfig_job = mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.reconfig_job")
|
|
|
|
path = fixtures_dir / "cmd-002.yaml"
|
|
args = ["--conf", default_config_file, "update", str(path)]
|
|
|
|
execute_jenkins_jobs(args)
|
|
|
|
reconfig_job.assert_has_calls(
|
|
[
|
|
mock.call(job_name, mock.ANY)
|
|
for job_name in ["bar001", "bar002", "baz001", "bam001"]
|
|
],
|
|
any_order=True,
|
|
)
|
|
|
|
|
|
def test_update_jobs_enabled_only(
|
|
mocker, fixtures_dir, default_config_file, execute_jenkins_jobs
|
|
):
|
|
"""
|
|
Test update_job is called with --enabled-only
|
|
"""
|
|
mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.job_exists")
|
|
mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.get_all_jobs")
|
|
reconfig_job = mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.reconfig_job")
|
|
|
|
path = fixtures_dir / "cmd-002.yaml"
|
|
args = ["--conf", default_config_file, "update", "--enabled-only", str(path)]
|
|
|
|
execute_jenkins_jobs(args)
|
|
|
|
reconfig_job.assert_has_calls(
|
|
[mock.call(job_name, mock.ANY) for job_name in ["bar001", "bar002", "baz001"]],
|
|
any_order=True,
|
|
)
|
|
# make sure that there are only those 3 calls checked before
|
|
assert len(reconfig_job.call_args_list) == 3
|
|
|
|
|
|
def test_update_jobs_decode_job_output(
|
|
mocker, fixtures_dir, default_config_file, execute_jenkins_jobs
|
|
):
|
|
"""
|
|
Test that job xml output has been decoded before attempting to update
|
|
"""
|
|
mocker.patch("jenkins_jobs.builder.JenkinsManager.is_job", return_value=True)
|
|
mocker.patch("jenkins_jobs.builder.JenkinsManager.get_jobs")
|
|
mocker.patch("jenkins_jobs.builder.JenkinsManager.get_job_md5")
|
|
update_job_mock = mocker.patch("jenkins_jobs.builder.JenkinsManager.update_job")
|
|
|
|
# don't care about the value returned here
|
|
update_job_mock.return_value = ([], 0)
|
|
|
|
path = fixtures_dir / "cmd-002.yaml"
|
|
args = ["--conf", default_config_file, "update", str(path)]
|
|
|
|
execute_jenkins_jobs(args)
|
|
assert isinstance(update_job_mock.call_args[0][1], str)
|
|
|
|
|
|
def test_update_jobs_and_delete_old(
|
|
mocker, fixtures_dir, default_config_file, execute_jenkins_jobs
|
|
):
|
|
"""Test update behaviour with --delete-old option.
|
|
|
|
* mock out a call to jenkins.Jenkins.get_jobs() to return a known list
|
|
of job names.
|
|
* mock out a call to jenkins.Jenkins.reconfig_job() and
|
|
jenkins.Jenkins.delete_job() to detect calls being made to determine
|
|
that JJB does correctly delete the jobs it should delete when passed
|
|
a specific set of inputs.
|
|
* mock out a call to jenkins.Jenkins.job_exists() to always return
|
|
True.
|
|
"""
|
|
mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.job_exists")
|
|
jenkins_get_all_jobs = mocker.patch(
|
|
"jenkins_jobs.builder.jenkins.Jenkins.get_all_jobs"
|
|
)
|
|
jenkins_reconfig_job = mocker.patch(
|
|
"jenkins_jobs.builder.jenkins.Jenkins.reconfig_job"
|
|
)
|
|
jenkins_delete_job = mocker.patch("jenkins_jobs.builder.jenkins.Jenkins.delete_job")
|
|
|
|
yaml_jobs = ["bar001", "bar002", "baz001", "bam001"]
|
|
extra_jobs = ["old_job001", "old_job002", "unmanaged"]
|
|
|
|
path = fixtures_dir / "cmd-002.yaml"
|
|
args = ["--conf", default_config_file, "update", "--delete-old", str(path)]
|
|
|
|
jenkins_get_all_jobs.return_value = [
|
|
{"fullname": name} for name in yaml_jobs + extra_jobs
|
|
]
|
|
|
|
mocker.patch(
|
|
"jenkins_jobs.builder.JenkinsManager.is_managed",
|
|
side_effect=(lambda name: name != "unmanaged"),
|
|
)
|
|
execute_jenkins_jobs(args)
|
|
|
|
jenkins_reconfig_job.assert_has_calls(
|
|
[mock.call(job_name, mock.ANY) for job_name in yaml_jobs], any_order=True
|
|
)
|
|
calls = [mock.call(name) for name in extra_jobs if name != "unmanaged"]
|
|
jenkins_delete_job.assert_has_calls(calls)
|
|
# to ensure only the calls we expected were made, have to check
|
|
# there were no others, as no API call for assert_has_only_calls
|
|
assert jenkins_delete_job.call_count == len(calls)
|
|
|
|
|
|
@pytest.mark.skip(reason="TODO: Develop actual update timeout test approach.")
|
|
def test_update_timeout_not_set():
|
|
"""Validate update timeout behavior when timeout not explicitly configured."""
|
|
pass
|
|
|
|
|
|
@pytest.mark.skip(reason="TODO: Develop actual update timeout test approach.")
|
|
def test_update_timeout_set():
|
|
"""Validate update timeout behavior when timeout is explicitly configured."""
|
|
pass
|