示例#1
0
 def test_ssh_deprecation_message(self):
   """Test the ssh command."""
   mock_options = self.setup_mock_options()
   (mock_api, mock_scheduler_proxy) = self.create_mock_api()
   mock_scheduler_proxy.getTasksStatus.return_value = self.create_status_response()
   sandbox_args = {'slave_root': '/slaveroot', 'slave_run_directory': 'slaverun'}
   with contextlib.nested(
       patch('apache.aurora.client.api.SchedulerProxy', return_value=mock_scheduler_proxy),
       patch('apache.aurora.client.factory.CLUSTERS', new=self.TEST_CLUSTERS),
       patch('twitter.common.app.get_options', return_value=mock_options),
       patch('apache.aurora.client.api.command_runner.DistributedCommandRunner.sandbox_args',
           return_value=sandbox_args),
       patch('subprocess.call', return_value=0),
       patch('apache.aurora.client.commands.ssh.v1_deprecation_warning')) as (
           mock_scheduler_proxy_class,
           mock_clusters,
           options,
           mock_runner_args_patch,
           mock_subprocess,
           mock_dep_warn):
     mock_options.tunnels = ['100:hundred', '1000:thousand']
     try:
       ssh(['west/mchucarroll/test/hello', '1', 'ls'], mock_options)
     except SystemExit:
       # It's going to fail with an error about unknown ports, but we don't
       # care: we just want to verify that it generated a deprecation warning
       # with the correct --tunnels parameters.
       pass
     mock_dep_warn.assert_called_with('ssh',
         ['task', 'ssh', 'west/mchucarroll/test/hello/1',
          '--tunnels=100:hundred', '--tunnels=1000:thousand',
          '--command="ls"'])
示例#2
0
  def test_successful_ssh(self):
    """Test the ssh command."""
    mock_options = self.setup_mock_options()
    (mock_api, mock_scheduler_proxy) = self.create_mock_api()
    mock_scheduler_proxy.getTasksStatus.return_value = self.create_status_response()
    sandbox_args = {'slave_root': '/slaveroot', 'slave_run_directory': 'slaverun'}
    with contextlib.nested(
        patch('apache.aurora.client.api.SchedulerProxy', return_value=mock_scheduler_proxy),
        patch('apache.aurora.client.factory.CLUSTERS', new=self.TEST_CLUSTERS),
        patch('twitter.common.app.get_options', return_value=mock_options),
        patch('apache.aurora.client.api.command_runner.DistributedCommandRunner.sandbox_args',
            return_value=sandbox_args),
        patch('subprocess.call', return_value=0)) as (
            mock_scheduler_proxy_class,
            mock_clusters,
            options,
            mock_runner_args_patch,
            mock_subprocess):
      ssh(['west/mchucarroll/test/hello', '1', 'ls'], mock_options)

      # The status command sends a getTasksStatus query to the scheduler,
      # and then prints the result.
      mock_scheduler_proxy.getTasksStatus.assert_called_with(
          TaskQuery(jobKeys=[JobKey(role='mchucarroll', environment='test', name='hello')],
                    instanceIds=set([1]),
                    statuses=LIVE_STATES))
      mock_subprocess.assert_called_with(['ssh', '-t', 'mchucarroll@slavehost',
          'cd /slaveroot/slaves/*/frameworks/*/executors/thermos-1287391823/runs/'
          'slaverun/sandbox;ls'])
示例#3
0
    def test_successful_ssh(self):
        """Test the ssh command."""
        mock_options = self.setup_mock_options()
        (mock_api, mock_scheduler_proxy) = self.create_mock_api()
        mock_scheduler_proxy.getTasksStatus.return_value = self.create_status_response(
        )
        sandbox_args = {
            'slave_root': '/slaveroot',
            'slave_run_directory': 'slaverun'
        }
        with contextlib.nested(
                patch('apache.aurora.client.api.SchedulerProxy',
                      return_value=mock_scheduler_proxy),
                patch('apache.aurora.client.factory.CLUSTERS',
                      new=self.TEST_CLUSTERS),
                patch('twitter.common.app.get_options',
                      return_value=mock_options),
                patch(
                    'apache.aurora.client.api.command_runner.DistributedCommandRunner.sandbox_args',
                    return_value=sandbox_args),
                patch('subprocess.call',
                      return_value=0)) as (mock_scheduler_proxy_class,
                                           mock_clusters, options,
                                           mock_runner_args_patch,
                                           mock_subprocess):
            ssh(['west/mchucarroll/test/hello', '1', 'ls'], mock_options)

            # The status command sends a getTasksStatus query to the scheduler,
            # and then prints the result.
            mock_scheduler_proxy.getTasksStatus.assert_called_with(
                TaskQuery(jobName='hello',
                          environment='test',
                          owner=Identity(role='mchucarroll'),
                          instanceIds=set([1]),
                          statuses=LIVE_STATES))
            mock_subprocess.assert_called_with([
                'ssh', '-t', 'mchucarroll@slavehost',
                'cd /slaveroot/slaves/*/frameworks/*/executors/thermos-1287391823/runs/'
                'slaverun/sandbox;ls'
            ])