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
|
##############################################################################
# Copyright (c) 2017 Tim Rozet (Red Hat)
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import unittest
from apex.builders import common_builder as c_builder
from apex.common import constants as con
from mock import patch
from mock import mock_open
from mock import MagicMock
class TestCommonBuilder(unittest.TestCase):
@classmethod
def setup_class(cls):
"""This method is run once for each class before any tests are run"""
@classmethod
def teardown_class(cls):
"""This method is run once for each class _after_ all tests are run"""
def setup(self):
"""This method is run once before _each_ test method is executed"""
def teardown(self):
"""This method is run once after _each_ test method is executed"""
def test_project_to_path(self):
project = 'openstack/tripleo-heat-templates'
path = '/usr/share/openstack-tripleo-heat-templates'
self.assertEquals(c_builder.project_to_path(project), path)
project = 'openstack/puppet-tripleo'
path = '/etc/puppet/modules/tripleo'
self.assertEquals(c_builder.project_to_path(project), path)
project = 'openstack/nova'
path = '/usr/lib/python2.7/site-packages/nova'
self.assertEquals(c_builder.project_to_path(project), path)
@patch('builtins.open', mock_open())
@patch('apex.build_utils.get_patch')
@patch('apex.virtual.utils.virt_customize')
def test_add_upstream_patches(self, mock_customize, mock_get_patch):
mock_get_patch.return_value = None
change_id = 'I301370fbf47a71291614dd60e4c64adc7b5ebb42'
patches = [{
'change-id': change_id,
'project': 'openstack/tripleo-heat-templates'
}]
c_builder.add_upstream_patches(patches, 'dummy.qcow2', '/dummytmp/')
assert mock_customize.not_called
project_path = '/usr/share/openstack-tripleo-heat-templates'
patch_file = "{}.patch".format(change_id)
patch_file_path = "/dummytmp/{}".format(patch_file)
test_virt_ops = [
{con.VIRT_UPLOAD: "{}:{}".format(patch_file_path,
project_path)},
{con.VIRT_RUN_CMD: "cd {} && patch -p1 < {}".format(
project_path, patch_file)}]
mock_get_patch.return_value = 'some random diff'
c_builder.add_upstream_patches(patches, 'dummy.qcow2', '/dummytmp/')
mock_customize.assert_called_once_with(test_virt_ops, 'dummy.qcow2')
@patch('builtins.open', mock_open())
@patch('apex.virtual.utils.virt_customize')
def test_add_repo(self, mock_customize):
c_builder.add_repo('fake/url', 'dummyrepo', 'dummy.qcow2',
'/dummytmp/')
repo_file_path = '/dummytmp/dummyrepo.repo'
test_virt_ops = [
{con.VIRT_UPLOAD: "{}:/etc/yum.repos.d/".format(repo_file_path)}
]
mock_customize.assert_called_once_with(test_virt_ops, 'dummy.qcow2')
@patch('builtins.open', mock_open())
@patch('git.Repo.clone_from')
def test_create_git_archive(self, mock_git):
mock_git.return_value = MagicMock()
self.assertEqual(c_builder.create_git_archive('fake/url', 'dummyrepo',
'/dummytmp/'),
'/dummytmp/dummyrepo.tar')
|