# vim: set fileencoding=utf-8 : # # - Copyright 2014 Guido Günther # # 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. import mock import jenkins_jobs.builder from testtools import TestCase class TestCaseTestBuilder(TestCase): def setUp(self): self.builder = jenkins_jobs.builder.Builder( 'http://jenkins.example.com', 'doesnot', 'matter', plugins_list=['plugin1', 'plugin2'], ) TestCase.setUp(self) def test_plugins_list(self): self.assertEqual(self.builder.plugins_list, ['plugin1', 'plugin2']) @mock.patch.object(jenkins_jobs.builder.jenkins.Jenkins, 'get_plugins_info', return_value=['p1', 'p2']) def test_plugins_list_from_jenkins(self, jenkins_mock): # Trigger fetching the plugins from jenkins when accessing the property self.builder._plugins_list = None self.assertEqual(self.builder.plugins_list, ['p1', 'p2'])