コード例 #1
0
    def test_upstart_frequency_single(self):
        # files should be written out when frequency is ! per-instance
        new_root = self.makeDir()
        freq = PER_INSTANCE

        self.patchOS(new_root)
        self.patchUtils(new_root)
        paths = helpers.Paths({
            'upstart_dir': "/etc/upstart",
        })

        upstart_job.SUITABLE_UPSTART = True
        util.ensure_dir("/run")
        util.ensure_dir("/etc/upstart")

        mock_subp = self.mocker.replace(util.subp, passthrough=False)
        mock_subp(["initctl", "reload-configuration"], capture=False)
        self.mocker.replay()

        h = upstart_job.UpstartJobPartHandler(paths)
        h.handle_part('', handlers.CONTENT_START, None, None, None)
        h.handle_part('blah', 'text/upstart-job', 'test.conf', 'blah', freq)
        h.handle_part('', handlers.CONTENT_END, None, None, None)

        self.assertEquals(1, len(os.listdir('/etc/upstart')))
コード例 #2
0
    def test_upstart_frequency_single(self):
        # files should be written out when frequency is ! per-instance
        new_root = tempfile.mkdtemp()
        self.addCleanup(shutil.rmtree, new_root)
        freq = PER_INSTANCE

        self.patchOS(new_root)
        self.patchUtils(new_root)
        paths = helpers.Paths({
            'upstart_dir': "/etc/upstart",
        })

        upstart_job.SUITABLE_UPSTART = True
        util.ensure_dir("/run")
        util.ensure_dir("/etc/upstart")

        with mock.patch.object(util, 'subp') as mockobj:
            h = upstart_job.UpstartJobPartHandler(paths)
            h.handle_part('', handlers.CONTENT_START,
                          None, None, None)
            h.handle_part('blah', 'text/upstart-job',
                          'test.conf', 'blah', freq)
            h.handle_part('', handlers.CONTENT_END,
                          None, None, None)

            self.assertEquals(len(os.listdir('/etc/upstart')), 1)

        mockobj.assert_called_once_with(
            ['initctl', 'reload-configuration'], capture=False)
コード例 #3
0
 def test_upstart_frequency_no_out(self):
     c_root = self.makeDir()
     up_root = self.makeDir()
     paths = helpers.Paths({
         'cloud_dir': c_root,
         'upstart_dir': up_root,
     })
     freq = PER_ALWAYS
     h = upstart_job.UpstartJobPartHandler(paths)
     # No files should be written out when
     # the frequency is ! per-instance
     h.handle_part('', handlers.CONTENT_START, None, None, None)
     h.handle_part('blah', 'text/upstart-job', 'test.conf', 'blah', freq)
     h.handle_part('', handlers.CONTENT_END, None, None, None)
     self.assertEquals(0, len(os.listdir(up_root)))
コード例 #4
0
ファイル: stages.py プロジェクト: IBM/ibmi-cloudinit
    def _default_handlers(self, opts=None):
        if opts is None:
            opts = {}

        opts.update({
            'paths': self.paths,
            'datasource': self.datasource,
        })
        # TODO(harlowja) Hmmm, should we dynamically import these??
        def_handlers = [
            cc_part.CloudConfigPartHandler(**opts),
            ss_part.ShellScriptPartHandler(**opts),
            bh_part.BootHookPartHandler(**opts),
            up_part.UpstartJobPartHandler(**opts),
        ]
        return def_handlers