2016-03-23 09:38:34 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
2016-10-25 10:13:16 +00:00
|
|
|
import json
|
2016-03-23 09:38:34 +00:00
|
|
|
import unittest
|
|
|
|
import mock
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
|
|
|
|
|
|
|
|
from tests import helpers
|
|
|
|
from pungi.phases import ostree
|
|
|
|
|
|
|
|
|
|
|
|
class OSTreePhaseTest(helpers.PungiTestCase):
|
|
|
|
|
|
|
|
@mock.patch('pungi.phases.ostree.ThreadPool')
|
|
|
|
def test_run(self, ThreadPool):
|
2017-02-22 02:48:05 +00:00
|
|
|
cfg = helpers.IterableMock()
|
2016-03-23 09:38:34 +00:00
|
|
|
compose = helpers.DummyCompose(self.topdir, {
|
|
|
|
'ostree': [
|
|
|
|
('^Everything$', {'x86_64': cfg})
|
2019-03-21 09:58:13 +00:00
|
|
|
],
|
|
|
|
'runroot': True,
|
2016-03-23 09:38:34 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
pool = ThreadPool.return_value
|
|
|
|
|
|
|
|
phase = ostree.OSTreePhase(compose)
|
|
|
|
phase.run()
|
|
|
|
|
|
|
|
self.assertEqual(len(pool.add.call_args_list), 1)
|
|
|
|
self.assertEqual(pool.queue_put.call_args_list,
|
|
|
|
[mock.call((compose, compose.variants['Everything'], 'x86_64', cfg))])
|
|
|
|
|
|
|
|
@mock.patch('pungi.phases.ostree.ThreadPool')
|
|
|
|
def test_skip_without_config(self, ThreadPool):
|
|
|
|
compose = helpers.DummyCompose(self.topdir, {})
|
|
|
|
compose.just_phases = None
|
|
|
|
compose.skip_phases = []
|
|
|
|
phase = ostree.OSTreePhase(compose)
|
|
|
|
self.assertTrue(phase.skip())
|
|
|
|
|
2017-08-03 13:26:34 +00:00
|
|
|
@mock.patch('pungi.phases.ostree.ThreadPool')
|
|
|
|
def test_run_with_simple_config(self, ThreadPool):
|
|
|
|
cfg = helpers.IterableMock(get=lambda x, y: None)
|
|
|
|
compose = helpers.DummyCompose(self.topdir, {
|
|
|
|
'ostree': {
|
|
|
|
'^Everything$': cfg
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
pool = ThreadPool.return_value
|
|
|
|
|
|
|
|
phase = ostree.OSTreePhase(compose)
|
|
|
|
phase.run()
|
|
|
|
|
|
|
|
self.assertEqual(len(pool.add.call_args_list), 2)
|
|
|
|
self.assertEqual(pool.queue_put.call_args_list,
|
|
|
|
[mock.call((compose, compose.variants['Everything'], 'x86_64', cfg)),
|
|
|
|
mock.call((compose, compose.variants['Everything'], 'amd64', cfg))])
|
|
|
|
|
|
|
|
@mock.patch('pungi.phases.ostree.ThreadPool')
|
|
|
|
def test_run_with_simple_config_limit_arches(self, ThreadPool):
|
|
|
|
cfg = helpers.IterableMock(get=lambda x, y: ['x86_64'])
|
|
|
|
compose = helpers.DummyCompose(self.topdir, {
|
|
|
|
'ostree': {
|
|
|
|
'^Everything$': cfg
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
pool = ThreadPool.return_value
|
|
|
|
|
|
|
|
phase = ostree.OSTreePhase(compose)
|
|
|
|
phase.run()
|
|
|
|
|
|
|
|
self.assertEqual(len(pool.add.call_args_list), 1)
|
|
|
|
self.assertEqual(pool.queue_put.call_args_list,
|
|
|
|
[mock.call((compose, compose.variants['Everything'], 'x86_64', cfg))])
|
|
|
|
|
|
|
|
@mock.patch('pungi.phases.ostree.ThreadPool')
|
|
|
|
def test_run_with_simple_config_limit_arches_two_blocks(self, ThreadPool):
|
|
|
|
cfg1 = helpers.IterableMock(get=lambda x, y: ['x86_64'])
|
|
|
|
cfg2 = helpers.IterableMock(get=lambda x, y: ['s390x'])
|
|
|
|
compose = helpers.DummyCompose(self.topdir, {
|
|
|
|
'ostree': {
|
|
|
|
'^Everything$': [cfg1, cfg2],
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
pool = ThreadPool.return_value
|
|
|
|
|
|
|
|
phase = ostree.OSTreePhase(compose)
|
|
|
|
phase.run()
|
|
|
|
|
|
|
|
self.assertEqual(len(pool.add.call_args_list), 2)
|
|
|
|
self.assertEqual(pool.queue_put.call_args_list,
|
|
|
|
[mock.call((compose, compose.variants['Everything'], 'x86_64', cfg1)),
|
|
|
|
mock.call((compose, compose.variants['Everything'], 's390x', cfg2))])
|
|
|
|
|
2016-03-23 09:38:34 +00:00
|
|
|
|
|
|
|
class OSTreeThreadTest(helpers.PungiTestCase):
|
|
|
|
|
2016-05-09 13:59:02 +00:00
|
|
|
def setUp(self):
|
|
|
|
super(OSTreeThreadTest, self).setUp()
|
|
|
|
self.repo = os.path.join(self.topdir, 'place/for/atomic')
|
2016-10-25 10:13:16 +00:00
|
|
|
os.makedirs(os.path.join(self.repo, 'refs', 'heads'))
|
2016-09-15 12:20:26 +00:00
|
|
|
self.cfg = {
|
2017-03-27 21:53:08 +00:00
|
|
|
'repo': 'Everything',
|
2016-09-15 12:20:26 +00:00
|
|
|
'config_url': 'https://git.fedorahosted.org/git/fedora-atomic.git',
|
|
|
|
'config_branch': 'f24',
|
|
|
|
'treefile': 'fedora-atomic-docker-host.json',
|
2019-03-21 09:58:13 +00:00
|
|
|
'ostree_repo': self.repo,
|
2016-09-15 12:20:26 +00:00
|
|
|
}
|
|
|
|
self.compose = helpers.DummyCompose(self.topdir, {
|
|
|
|
'koji_profile': 'koji',
|
|
|
|
'runroot_tag': 'rrt',
|
|
|
|
'translate_paths': [
|
2018-02-06 21:29:22 +00:00
|
|
|
(self.topdir, 'http://example.com')
|
2019-03-21 09:58:13 +00:00
|
|
|
],
|
2016-09-15 12:20:26 +00:00
|
|
|
})
|
|
|
|
self.pool = mock.Mock()
|
2016-05-09 13:59:02 +00:00
|
|
|
|
2016-04-07 12:33:37 +00:00
|
|
|
def _dummy_config_repo(self, scm_dict, target, logger=None):
|
2016-10-25 10:13:16 +00:00
|
|
|
os.makedirs(target)
|
|
|
|
helpers.touch(os.path.join(target, 'fedora-atomic-docker-host.json'),
|
2016-11-07 05:23:13 +00:00
|
|
|
json.dumps({'ref': 'fedora-atomic/25/x86_64',
|
|
|
|
'repos': ['fedora-rawhide', 'fedora-24', 'fedora-23']}))
|
2016-04-07 13:42:20 +00:00
|
|
|
helpers.touch(os.path.join(target, 'fedora-rawhide.repo'),
|
2016-11-07 05:23:13 +00:00
|
|
|
'[fedora-rawhide]\nmirrorlist=mirror-mirror-on-the-wall')
|
2016-04-15 06:17:40 +00:00
|
|
|
helpers.touch(os.path.join(target, 'fedora-24.repo'),
|
2016-11-07 05:23:13 +00:00
|
|
|
'[fedora-24]\nmetalink=who-is-the-fairest-of-them-all')
|
2016-04-15 06:17:40 +00:00
|
|
|
helpers.touch(os.path.join(target, 'fedora-23.repo'),
|
2016-11-07 05:23:13 +00:00
|
|
|
'[fedora-23]\nbaseurl=why-not-zoidberg?')
|
2016-04-07 12:33:37 +00:00
|
|
|
|
2016-10-25 10:13:16 +00:00
|
|
|
def _mock_runroot(self, retcode, writefiles=None):
|
|
|
|
"""Pretend to run a task in runroot, creating a log file with given line
|
|
|
|
|
|
|
|
Also allows for writing other files of requested"""
|
2016-09-15 12:20:26 +00:00
|
|
|
def fake_runroot(self, log_file, **kwargs):
|
2016-10-25 10:13:16 +00:00
|
|
|
if writefiles:
|
2016-09-15 12:20:26 +00:00
|
|
|
logdir = os.path.dirname(log_file)
|
2016-10-25 10:13:16 +00:00
|
|
|
for filename in writefiles:
|
|
|
|
helpers.touch(os.path.join(logdir, filename),
|
|
|
|
'\n'.join(writefiles[filename]))
|
2018-09-13 13:50:22 +00:00
|
|
|
helpers.touch(os.path.join(logdir, filename + ".stamp"))
|
2016-09-15 12:20:26 +00:00
|
|
|
return {'task_id': 1234, 'retcode': retcode, 'output': 'Foo bar\n'}
|
|
|
|
return fake_runroot
|
|
|
|
|
2018-02-06 21:29:22 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_extra_config_content(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
self.compose.conf['runroot_weights'] = {'ostree': 123}
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(0)
|
|
|
|
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
extra_config_file = os.path.join(self.topdir, 'work/ostree-1/extra_config.json')
|
|
|
|
self.assertFalse(os.path.isfile(extra_config_file))
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertTrue(os.path.isfile(extra_config_file))
|
|
|
|
with open(extra_config_file, 'r') as f:
|
|
|
|
extraconf_content = json.load(f)
|
2018-04-09 13:32:33 +00:00
|
|
|
|
|
|
|
proper_extraconf_content = {
|
|
|
|
"repo": [
|
|
|
|
{"name": "http:__example.com_work__basearch_repo",
|
|
|
|
"baseurl": "http://example.com/work/$basearch/repo"},
|
|
|
|
{"name": "http:__example.com_work__basearch_comps_repo_Everything",
|
|
|
|
"baseurl": "http://example.com/work/$basearch/comps_repo_Everything"}
|
|
|
|
]
|
|
|
|
}
|
2018-02-06 21:29:22 +00:00
|
|
|
self.assertEqual(proper_extraconf_content, extraconf_content)
|
|
|
|
|
2016-04-07 12:33:37 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
2016-03-23 09:38:34 +00:00
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
2016-04-07 12:33:37 +00:00
|
|
|
def test_run(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
2017-02-23 09:28:49 +00:00
|
|
|
self.compose.conf['runroot_weights'] = {'ostree': 123}
|
2016-04-07 12:33:37 +00:00
|
|
|
|
2016-03-23 09:38:34 +00:00
|
|
|
koji = KojiWrapper.return_value
|
2016-09-15 12:20:26 +00:00
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(0)
|
2016-03-23 09:38:34 +00:00
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
t = ostree.OSTreeThread(self.pool)
|
2016-03-23 09:38:34 +00:00
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
2016-03-23 09:38:34 +00:00
|
|
|
|
2016-04-07 12:33:37 +00:00
|
|
|
self.assertEqual(get_dir_from_scm.call_args_list,
|
|
|
|
[mock.call({'scm': 'git', 'repo': 'https://git.fedorahosted.org/git/fedora-atomic.git',
|
|
|
|
'branch': 'f24', 'dir': '.'},
|
2016-09-15 12:20:26 +00:00
|
|
|
self.topdir + '/work/ostree-1/config_repo', logger=self.pool._logger)])
|
2016-03-23 09:38:34 +00:00
|
|
|
self.assertEqual(koji.get_runroot_cmd.call_args_list,
|
|
|
|
[mock.call('rrt', 'x86_64',
|
|
|
|
['pungi-make-ostree',
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
'tree',
|
|
|
|
'--repo=%s' % self.repo,
|
2016-05-25 11:37:39 +00:00
|
|
|
'--log-dir=%s/logs/x86_64/Everything/ostree-1' % self.topdir,
|
|
|
|
'--treefile=%s/fedora-atomic-docker-host.json' % (
|
2016-05-18 06:03:31 +00:00
|
|
|
self.topdir + '/work/ostree-1/config_repo'),
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
'--extra-config=%s/extra_config.json' % (self.topdir + '/work/ostree-1')],
|
2016-05-09 13:59:02 +00:00
|
|
|
channel=None, mounts=[self.topdir, self.repo],
|
2016-03-23 09:38:34 +00:00
|
|
|
packages=['pungi', 'ostree', 'rpm-ostree'],
|
2017-02-23 09:28:49 +00:00
|
|
|
task_id=True, use_shell=True, new_chroot=True, weight=123)])
|
2016-03-23 09:38:34 +00:00
|
|
|
self.assertEqual(koji.run_runroot_cmd.call_args_list,
|
|
|
|
[mock.call(koji.get_runroot_cmd.return_value,
|
2016-05-18 06:03:31 +00:00
|
|
|
log_file=self.topdir + '/logs/x86_64/Everything/ostree-1/runroot.log')])
|
2016-03-23 09:38:34 +00:00
|
|
|
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
self.assertTrue(os.path.isfile(os.path.join(self.topdir, 'work/ostree-1/extra_config.json')))
|
2016-05-09 13:59:02 +00:00
|
|
|
self.assertTrue(os.path.isdir(self.repo))
|
2016-04-07 13:42:20 +00:00
|
|
|
|
2016-04-07 12:33:37 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
2016-04-06 12:57:12 +00:00
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
2016-04-07 12:33:37 +00:00
|
|
|
def test_run_fail(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
self.cfg['failable'] = ['*']
|
2016-04-06 12:57:12 +00:00
|
|
|
koji = KojiWrapper.return_value
|
2016-09-15 12:20:26 +00:00
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(1)
|
2016-04-06 12:57:12 +00:00
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
t = ostree.OSTreeThread(self.pool)
|
2016-04-06 12:57:12 +00:00
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
2016-04-06 12:57:12 +00:00
|
|
|
|
2018-07-11 13:37:21 +00:00
|
|
|
self.compose._logger.error.assert_has_calls([
|
2016-04-06 12:57:12 +00:00
|
|
|
mock.call('[FAIL] Ostree (variant Everything, arch x86_64) failed, but going on anyway.'),
|
2016-05-25 11:37:39 +00:00
|
|
|
mock.call('Runroot task failed: 1234. See %s for more details.'
|
|
|
|
% (self.topdir + '/logs/x86_64/Everything/ostree-1/runroot.log'))
|
2016-04-06 12:57:12 +00:00
|
|
|
])
|
|
|
|
|
2016-04-07 12:33:37 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
2016-04-06 12:57:12 +00:00
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
2016-04-07 12:33:37 +00:00
|
|
|
def test_run_handle_exception(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
self.cfg['failable'] = ['*']
|
2016-04-06 12:57:12 +00:00
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = helpers.boom
|
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
t = ostree.OSTreeThread(self.pool)
|
2016-04-06 12:57:12 +00:00
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
2016-04-06 12:57:12 +00:00
|
|
|
|
2018-07-11 13:37:21 +00:00
|
|
|
self.compose._logger.error.assert_has_calls([
|
2016-04-06 12:57:12 +00:00
|
|
|
mock.call('[FAIL] Ostree (variant Everything, arch x86_64) failed, but going on anyway.'),
|
|
|
|
mock.call('BOOM')
|
|
|
|
])
|
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_send_message(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
self.compose.notifier = mock.Mock()
|
2017-06-29 11:04:29 +00:00
|
|
|
self.compose.conf['translate_paths'] = [(self.topdir, 'http://example.com/')]
|
2016-09-15 12:20:26 +00:00
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(
|
2016-10-25 10:13:16 +00:00
|
|
|
0,
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
{'commitid.log': 'fca3465861a',
|
2016-10-25 10:13:16 +00:00
|
|
|
'create-ostree-repo.log':
|
|
|
|
['Doing work', 'fedora-atomic/25/x86_64 -> fca3465861a']})
|
2016-09-15 12:20:26 +00:00
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertEqual(self.compose.notifier.send.mock_calls,
|
|
|
|
[mock.call('ostree',
|
|
|
|
variant='Everything',
|
|
|
|
arch='x86_64',
|
|
|
|
ref='fedora-atomic/25/x86_64',
|
2017-06-29 11:04:29 +00:00
|
|
|
commitid='fca3465861a',
|
|
|
|
repo_path='http://example.com/place/for/atomic',
|
|
|
|
local_repo_path=self.repo)])
|
2016-09-15 12:20:26 +00:00
|
|
|
|
2019-01-10 06:53:46 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_send_message_custom_ref(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
self.cfg["ostree_ref"] = "my/${basearch}"
|
|
|
|
|
|
|
|
self.compose.notifier = mock.Mock()
|
|
|
|
self.compose.conf['translate_paths'] = [(self.topdir, 'http://example.com/')]
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(
|
|
|
|
0,
|
|
|
|
{'commitid.log': 'fca3465861a',
|
|
|
|
'create-ostree-repo.log':
|
|
|
|
['Doing work', 'fedora-atomic/25/x86_64 -> fca3465861a']})
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertEqual(self.compose.notifier.send.mock_calls,
|
|
|
|
[mock.call('ostree',
|
|
|
|
variant='Everything',
|
|
|
|
arch='x86_64',
|
|
|
|
ref='my/x86_64',
|
|
|
|
commitid='fca3465861a',
|
|
|
|
repo_path='http://example.com/place/for/atomic',
|
|
|
|
local_repo_path=self.repo)])
|
|
|
|
|
2016-09-15 12:20:26 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_send_message_without_commit_id(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
self.compose.notifier = mock.Mock()
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
2016-10-25 10:13:16 +00:00
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(
|
|
|
|
0,
|
|
|
|
{'create-ostree-repo.log': ['Doing work', 'Weird output']})
|
2016-09-15 12:20:26 +00:00
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertEqual(self.compose.notifier.send.mock_calls,
|
|
|
|
[mock.call('ostree',
|
|
|
|
variant='Everything',
|
|
|
|
arch='x86_64',
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
ref='fedora-atomic/25/x86_64',
|
2017-06-29 11:04:29 +00:00
|
|
|
commitid=None,
|
2018-02-06 21:29:22 +00:00
|
|
|
repo_path='http://example.com/place/for/atomic',
|
2017-06-29 11:04:29 +00:00
|
|
|
local_repo_path=self.repo)])
|
2016-09-15 12:20:26 +00:00
|
|
|
|
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_send_no_message_on_failure(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
self.compose.notifier = mock.Mock()
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(1)
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
self.assertRaises(RuntimeError, t.process,
|
|
|
|
(self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg),
|
|
|
|
1)
|
|
|
|
self.assertEqual(self.compose.notifier.send.mock_calls, [])
|
|
|
|
|
2016-11-03 12:59:00 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_with_update_summary(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
self.cfg['update_summary'] = True
|
|
|
|
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(0)
|
|
|
|
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertEqual(get_dir_from_scm.call_args_list,
|
|
|
|
[mock.call({'scm': 'git', 'repo': 'https://git.fedorahosted.org/git/fedora-atomic.git',
|
|
|
|
'branch': 'f24', 'dir': '.'},
|
|
|
|
self.topdir + '/work/ostree-1/config_repo', logger=self.pool._logger)])
|
|
|
|
self.assertEqual(koji.get_runroot_cmd.call_args_list,
|
|
|
|
[mock.call('rrt', 'x86_64',
|
|
|
|
['pungi-make-ostree',
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
'tree',
|
|
|
|
'--repo=%s' % self.repo,
|
2016-11-03 12:59:00 +00:00
|
|
|
'--log-dir=%s/logs/x86_64/Everything/ostree-1' % self.topdir,
|
|
|
|
'--treefile=%s/fedora-atomic-docker-host.json' % (
|
|
|
|
self.topdir + '/work/ostree-1/config_repo'),
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
'--extra-config=%s/work/ostree-1/extra_config.json' % self.topdir,
|
|
|
|
'--update-summary'],
|
2016-11-03 12:59:00 +00:00
|
|
|
channel=None, mounts=[self.topdir, self.repo],
|
|
|
|
packages=['pungi', 'ostree', 'rpm-ostree'],
|
2017-02-23 09:28:49 +00:00
|
|
|
task_id=True, use_shell=True, new_chroot=True, weight=None)])
|
2016-11-03 12:59:00 +00:00
|
|
|
self.assertEqual(koji.run_runroot_cmd.call_args_list,
|
|
|
|
[mock.call(koji.get_runroot_cmd.return_value,
|
|
|
|
log_file=self.topdir + '/logs/x86_64/Everything/ostree-1/runroot.log')])
|
|
|
|
|
2016-11-04 08:07:26 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_with_versioning_metadata(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
self.cfg['version'] = '24'
|
|
|
|
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(0)
|
|
|
|
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertEqual(get_dir_from_scm.call_args_list,
|
|
|
|
[mock.call({'scm': 'git', 'repo': 'https://git.fedorahosted.org/git/fedora-atomic.git',
|
|
|
|
'branch': 'f24', 'dir': '.'},
|
|
|
|
self.topdir + '/work/ostree-1/config_repo', logger=self.pool._logger)])
|
|
|
|
self.assertEqual(koji.get_runroot_cmd.call_args_list,
|
|
|
|
[mock.call('rrt', 'x86_64',
|
|
|
|
['pungi-make-ostree',
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
'tree',
|
|
|
|
'--repo=%s' % self.repo,
|
2016-11-04 08:07:26 +00:00
|
|
|
'--log-dir=%s/logs/x86_64/Everything/ostree-1' % self.topdir,
|
|
|
|
'--treefile=%s/fedora-atomic-docker-host.json' % (
|
|
|
|
self.topdir + '/work/ostree-1/config_repo'),
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
'--version=24',
|
|
|
|
'--extra-config=%s/work/ostree-1/extra_config.json' % self.topdir],
|
2016-11-04 08:07:26 +00:00
|
|
|
channel=None, mounts=[self.topdir, self.repo],
|
|
|
|
packages=['pungi', 'ostree', 'rpm-ostree'],
|
2017-02-23 09:28:49 +00:00
|
|
|
task_id=True, use_shell=True, new_chroot=True, weight=None)])
|
2017-03-29 13:49:21 +00:00
|
|
|
self.assertEqual(koji.run_runroot_cmd.call_args_list,
|
|
|
|
[mock.call(koji.get_runroot_cmd.return_value,
|
|
|
|
log_file=self.topdir + '/logs/x86_64/Everything/ostree-1/runroot.log')])
|
|
|
|
|
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
|
|
|
def test_run_with_generated_versioning_metadata(self, KojiWrapper, get_dir_from_scm):
|
|
|
|
self.cfg['version'] = '!OSTREE_VERSION_FROM_LABEL_DATE_TYPE_RESPIN'
|
|
|
|
|
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(0)
|
|
|
|
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', self.cfg), 1)
|
|
|
|
|
|
|
|
self.assertEqual(get_dir_from_scm.call_args_list,
|
|
|
|
[mock.call({'scm': 'git', 'repo': 'https://git.fedorahosted.org/git/fedora-atomic.git',
|
|
|
|
'branch': 'f24', 'dir': '.'},
|
|
|
|
self.topdir + '/work/ostree-1/config_repo', logger=self.pool._logger)])
|
|
|
|
self.assertEqual(koji.get_runroot_cmd.call_args_list,
|
|
|
|
[mock.call('rrt', 'x86_64',
|
|
|
|
['pungi-make-ostree',
|
|
|
|
'tree',
|
|
|
|
'--repo=%s' % self.repo,
|
|
|
|
'--log-dir=%s/logs/x86_64/Everything/ostree-1' % self.topdir,
|
|
|
|
'--treefile=%s/fedora-atomic-docker-host.json' % (
|
|
|
|
self.topdir + '/work/ostree-1/config_repo'),
|
|
|
|
'--version=25.20151203.t.0',
|
|
|
|
'--extra-config=%s/work/ostree-1/extra_config.json' % self.topdir],
|
|
|
|
channel=None, mounts=[self.topdir, self.repo],
|
|
|
|
packages=['pungi', 'ostree', 'rpm-ostree'],
|
|
|
|
task_id=True, use_shell=True, new_chroot=True, weight=None)])
|
2016-11-04 08:07:26 +00:00
|
|
|
self.assertEqual(koji.run_runroot_cmd.call_args_list,
|
|
|
|
[mock.call(koji.get_runroot_cmd.return_value,
|
|
|
|
log_file=self.topdir + '/logs/x86_64/Everything/ostree-1/runroot.log')])
|
2016-03-23 09:38:34 +00:00
|
|
|
|
2016-11-07 05:23:13 +00:00
|
|
|
@mock.patch('pungi.wrappers.scm.get_dir_from_scm')
|
|
|
|
@mock.patch('pungi.wrappers.kojiwrapper.KojiWrapper')
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
def test_write_extra_config_file(self, KojiWrapper, get_dir_from_scm):
|
2016-11-07 05:23:13 +00:00
|
|
|
get_dir_from_scm.side_effect = self._dummy_config_repo
|
|
|
|
|
|
|
|
koji = KojiWrapper.return_value
|
|
|
|
koji.run_runroot_cmd.side_effect = self._mock_runroot(0)
|
|
|
|
|
|
|
|
cfg = {
|
2018-02-06 21:29:22 +00:00
|
|
|
'repo': [ # Variant type repos will not be included into extra_config. This part of the config is deprecated
|
|
|
|
'Everything', # do not include
|
2016-11-07 05:23:13 +00:00
|
|
|
{
|
|
|
|
'name': 'repo_a',
|
|
|
|
'baseurl': 'http://url/to/repo/a',
|
|
|
|
'exclude': 'systemd-container'
|
|
|
|
},
|
2018-02-06 21:29:22 +00:00
|
|
|
{ # do not include
|
2016-11-07 05:23:13 +00:00
|
|
|
'name': 'Server',
|
|
|
|
'baseurl': 'Server',
|
|
|
|
'exclude': 'systemd-container'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'keep_original_sources': True,
|
|
|
|
'config_url': 'https://git.fedorahosted.org/git/fedora-atomic.git',
|
|
|
|
'config_branch': 'f24',
|
|
|
|
'treefile': 'fedora-atomic-docker-host.json',
|
|
|
|
'ostree_repo': self.repo
|
|
|
|
}
|
|
|
|
|
|
|
|
t = ostree.OSTreeThread(self.pool)
|
|
|
|
|
|
|
|
t.process((self.compose, self.compose.variants['Everything'], 'x86_64', cfg), 1)
|
|
|
|
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
extra_config_file = os.path.join(self.topdir, 'work/ostree-1/extra_config.json')
|
|
|
|
self.assertTrue(os.path.isfile(extra_config_file))
|
2018-02-06 21:29:22 +00:00
|
|
|
with open(extra_config_file, 'r') as extra_config_fd:
|
|
|
|
extra_config = json.load(extra_config_fd)
|
[ostree] Add 'tree' sub-command to pungi-make-ostree script
Update pungi-make-ostree to supourt sub-command 'tree', which is just
as the original feature of pungi-make-ostree to compose OSTree tree.
With the change we can add other sub commands later to build other
OSTree artifacts, like the installer image.
Inaddtional to the change, now the the 'tree' command can accept an
optional '--extra-config' parameter to update the original tree
configuration with extra configurations specified in a json file
before composing the OSTree tree.
Example:
pungi-make-ostree tree --repo=/ostree --treefile=/path/to/treefile \
--log-dir=/path/to/log --extra-config=/path/to/extra-config.json
The extra-config file can contains the same configuration as OSTree
phase, the difference is it doesn't understand variant UID as source
repo since it's not ran in the chain of phases. A valid configuration
can be like:
{
"source_repo_from": "http://example.com/repo/x86_64/Server",
"extra_source_repos": [
{
"name": "optional",
"baseurl": "http://example.com/repo/x86_64/optional",
"exclude": "systemd-container",
"gpgcheck": False
},
{
"name": "extra",
"baseurl": "http://example.com/repo/x86_64/extra",
}
],
"keep_original_sources": True
}
The OSTree phase is updated to move out the task of updating treefile,
instead of that, it writes the extra configurations to a json file,
then 'pungi-make-ostree tree' will take it by option '--extra-config'.
Signed-off-by: Qixiang Wan <qwan@redhat.com>
2016-12-02 12:11:09 +00:00
|
|
|
self.assertTrue(extra_config.get('keep_original_sources', False))
|
2018-04-09 13:32:33 +00:00
|
|
|
# should equal to number of valid repositories in cfg['repo'] + default repository + comps repository
|
|
|
|
self.assertEqual(len(extra_config.get('repo', [])), 3)
|
|
|
|
self.assertEqual(extra_config.get('repo').pop()['baseurl'],
|
|
|
|
'http://example.com/work/$basearch/comps_repo_Everything')
|
2018-02-06 21:29:22 +00:00
|
|
|
self.assertEqual(extra_config.get('repo').pop()['baseurl'], 'http://example.com/work/$basearch/repo')
|
2017-03-27 21:53:08 +00:00
|
|
|
self.assertEqual(extra_config.get('repo').pop()['baseurl'], 'http://url/to/repo/a')
|
2018-02-06 21:29:22 +00:00
|
|
|
|
2016-11-07 05:23:13 +00:00
|
|
|
|
2016-03-23 09:38:34 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|