Пример #1
0
 def test_perms_block_cronrun(self):
     ''' Test that non-root can't cron-run the important functions. '''
     oneoff = PuppetctlExecution(self.test_statefile)
     with mock.patch.object(PuppetctlExecution,
                            '_allowed_to_run_command',
                            return_value=False):
         with self.assertRaises(SystemExit) as fail_run, \
                 mock.patch('sys.stdout', new=StringIO()):
             oneoff.cron_run([])
         self.assertEqual(fail_run.exception.code, 2)
Пример #2
0
class TestExecutionCronRun(unittest.TestCase):
    ''' Class of tests about executing puppetctl cron-run commands. '''
    def setUp(self):
        ''' Preparing test rig '''
        self.test_statefile = '/tmp/exec-cronrun-statefile-mods.test.txt'
        self.pe_patcher = mock.patch.object(PuppetctlExecution,
                                            '_allowed_to_run_command',
                                            return_value=True)
        self.library = PuppetctlExecution(self.test_statefile)
        self.library.logging_tag = 'testingpuppetctl[{}]'.format(
            self.library.invoking_user)
        self.pe_patcher.start()

    def tearDown(self):
        ''' Cleanup test rig '''
        try:
            os.remove(self.test_statefile)
        except OSError:  # pragma: no cover
            # we likely never created the file.
            pass
        self.pe_patcher.stop()

    def test_perms_block_cronrun(self):
        ''' Test that non-root can't cron-run the important functions. '''
        oneoff = PuppetctlExecution(self.test_statefile)
        with mock.patch.object(PuppetctlExecution,
                               '_allowed_to_run_command',
                               return_value=False):
            with self.assertRaises(SystemExit) as fail_run, \
                    mock.patch('sys.stdout', new=StringIO()):
                oneoff.cron_run([])
            self.assertEqual(fail_run.exception.code, 2)

    def test_cronrun_nolocks(self):
        ''' Test that "cron-run" fires when there are no locks. '''
        with mock.patch('os.execvpe') as mock_exec:
            self.library.cron_run([])
        my_env = os.environ
        my_env['PATH'] = self.library.puppet_bin_path
        mock_exec.assert_called_once_with('puppet', [
            'puppet', 'agent', '--verbose', '--onetime', '--no-daemonize',
            '--no-splay'
        ],
                                          env=my_env)

    def test_cronrun_nolocks_with_args(self):
        ''' Test that "cron-run" passes args along. '''
        with mock.patch('os.execvpe') as mock_exec:
            self.library.cron_run(['--nonsense1', '--shenanigans2'])
        my_env = os.environ
        my_env['PATH'] = self.library.puppet_bin_path
        mock_exec.assert_called_once_with('puppet', [
            'puppet', 'agent', '--verbose', '--onetime', '--no-daemonize',
            '--no-splay', '--nonsense1', '--shenanigans2'
        ],
                                          env=my_env)

    def test_cronrun_not_our_locks(self):
        ''' Test that "cron-run" does nothing when we have no locks, but others do. '''
        now = int(time.time())
        with mock.patch.object(PuppetctlStatefile,
                               '_allowed_to_write_statefile',
                               return_value=True):
            self.library.statefile_object.add_lock('somebody2', 'disable',
                                                   now + 30 * 60,
                                                   'I disabled 1h')
            self.library.statefile_object.add_lock('somebody3', 'nooperate',
                                                   now + 90 * 60,
                                                   'I nooped 2h')
        with self.assertRaises(SystemExit) as fail_run:
            with mock.patch('sys.stdout', new=StringIO()):
                self.library.cron_run([])
        self.assertEqual(fail_run.exception.code, 0)
        # We don't test the stdout result here because of isatty and py2.
        # We could extend this once we're pure py3

    def test_cronrun_disable_lock_tty(self):
        ''' Test that "cron-run" does nothing when I have a lock, and is silent '''
        now = int(time.time())
        with mock.patch.object(PuppetctlStatefile,
                               '_allowed_to_write_statefile',
                               return_value=True):
            self.library.statefile_object.add_lock(self.library.invoking_user,
                                                   'disable', now + 30 * 60,
                                                   'It is my lock')
        with self.assertRaises(SystemExit) as fail_run:
            # Order matters here: isatty comes second since we are touching stdout twice.
            with mock.patch('sys.stdout', new=StringIO()) as fake_out, \
                    mock.patch('sys.stdout.isatty', return_value=True):
                self.library.cron_run([])
        self.assertEqual(fail_run.exception.code, 0)
        self.assertEqual('', fake_out.getvalue())

    def test_cronrun_disable_lock_notty(self):
        ''' Test that "cron-run" does nothing when I have a lock, and is silent '''
        now = int(time.time())
        with mock.patch.object(PuppetctlStatefile,
                               '_allowed_to_write_statefile',
                               return_value=True):
            self.library.statefile_object.add_lock(self.library.invoking_user,
                                                   'disable', now + 30 * 60,
                                                   'It is my lock')
        with self.assertRaises(SystemExit) as fail_run:
            # Order matters here: isatty comes second since we are touching stdout twice.
            with mock.patch('sys.stdout', new=StringIO()) as fake_out, \
                    mock.patch('sys.stdout.isatty', return_value=False):
                self.library.cron_run([])
        self.assertEqual(fail_run.exception.code, 0)
        self.assertEqual('', fake_out.getvalue())

    def test_cronrun_noop_lock(self):
        ''' Test that "cron-run" fires noop mode I have a noop lock. '''
        now = int(time.time())
        with mock.patch.object(PuppetctlStatefile,
                               '_allowed_to_write_statefile',
                               return_value=True):
            self.library.statefile_object.add_lock(self.library.invoking_user,
                                                   'nooperate', now + 30 * 60,
                                                   'It is my lock')
        with mock.patch('os.execvpe') as mock_exec:
            self.library.cron_run([])
        my_env = os.environ
        my_env['PATH'] = self.library.puppet_bin_path
        mock_exec.assert_called_once_with('puppet', [
            'puppet', 'agent', '--verbose', '--onetime', '--no-daemonize',
            '--no-splay', '--noop'
        ],
                                          env=my_env)