5cea04aa2a
In version 78.v2dcf62ba199b GitHub Pull Request Comment Build Plugin introduced permissions check for users triggering jobs with comments. This added a new checkbox/XML element that allows untrusted users to trigger builds. (see https://github.com/jenkinsci/github-pr-comment-build-plugin/pull/46) This commit adds support for this option by allowing dictionary syntax for GH PR Comment Build plugin: ``` - trigger-build-on-pr-review: allow-untrusted-users: true ``` while preserving support for currently existing syntax: ``` - trigger-build-on-pr-review: true ``` Change-Id: I554129c779161b47cba4566f7821ef7590a242e0
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
#
|
|
# Copyright (c) 2018 Sorin Sbarnea <ssbarnea@users.noreply.github.com>
|
|
#
|
|
# 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.
|
|
from operator import attrgetter
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from jenkins_jobs.modules import project_multibranch
|
|
from tests.enum_scenarios import scenario_list
|
|
|
|
fixtures_dir = Path(__file__).parent / "error_fixtures"
|
|
|
|
|
|
@pytest.fixture(
|
|
params=scenario_list(fixtures_dir),
|
|
ids=attrgetter("name"),
|
|
)
|
|
def scenario(request):
|
|
return request.param
|
|
|
|
|
|
def test_error(check_generator, expected_error):
|
|
with pytest.raises(Exception) as excinfo:
|
|
check_generator(project_multibranch.WorkflowMultiBranch)
|
|
assert str(excinfo.value) == expected_error
|