HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/396/lib/third_party/kubernetes/config/exec_provider_test.py
#!/usr/bin/env python

# Copyright 2018 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import os
import unittest

import mock

from .config_exception import ConfigException
from .exec_provider import ExecProvider
from .kube_config import ConfigNode


class ExecProviderTest(unittest.TestCase):

  def setUp(self):
    self.input_ok = ConfigNode(
        'test', {
            'command': 'aws-iam-authenticator',
            'args': ['token', '-i', 'dummy'],
            'apiVersion': 'client.authentication.k8s.io/v1beta1',
            'env': None
        })
    self.output_ok = """
        {
            "apiVersion": "client.authentication.k8s.io/v1beta1",
            "kind": "ExecCredential",
            "status": {
                "token": "dummy"
            }
        }
        """

  def test_missing_input_keys(self):
    exec_configs = [
        ConfigNode('test1', {}),
        ConfigNode('test2', {'command': ''}),
        ConfigNode('test3', {'apiVersion': ''})
    ]
    for exec_config in exec_configs:
      with self.assertRaises(ConfigException) as context:
        ExecProvider(exec_config)
      self.assertIn('exec: malformed request. missing key',
                    context.exception.args[0])

  @mock.patch('subprocess.Popen')
  def test_error_code_returned(self, mock):
    instance = mock.return_value
    instance.wait.return_value = 1
    instance.communicate.return_value = ('', '')
    with self.assertRaises(ConfigException) as context:
      ep = ExecProvider(self.input_ok)
      ep.run()
    self.assertIn('exec: process returned %d' % instance.wait.return_value,
                  context.exception.args[0])

  @mock.patch('subprocess.Popen')
  def test_nonjson_output_returned(self, mock):
    instance = mock.return_value
    instance.wait.return_value = 0
    instance.communicate.return_value = ('', '')
    with self.assertRaises(ConfigException) as context:
      ep = ExecProvider(self.input_ok)
      ep.run()
    self.assertIn('exec: failed to decode process output',
                  context.exception.args[0])

  @mock.patch('subprocess.Popen')
  def test_missing_output_keys(self, mock):
    instance = mock.return_value
    instance.wait.return_value = 0
    outputs = [
        """
            {
                "kind": "ExecCredential",
                "status": {
                    "token": "dummy"
                }
            }
            """, """
            {
                "apiVersion": "client.authentication.k8s.io/v1beta1",
                "status": {
                    "token": "dummy"
                }
            }
            """, """
            {
                "apiVersion": "client.authentication.k8s.io/v1beta1",
                "kind": "ExecCredential"
            }
            """
    ]
    for output in outputs:
      instance.communicate.return_value = (output, '')
      with self.assertRaises(ConfigException) as context:
        ep = ExecProvider(self.input_ok)
        ep.run()
      self.assertIn('exec: malformed response. missing key',
                    context.exception.args[0])

  @mock.patch('subprocess.Popen')
  def test_mismatched_api_version(self, mock):
    instance = mock.return_value
    instance.wait.return_value = 0
    wrong_api_version = 'client.authentication.k8s.io/v1'
    output = """
        {
            "apiVersion": "%s",
            "kind": "ExecCredential",
            "status": {
                "token": "dummy"
            }
        }
        """ % wrong_api_version
    instance.communicate.return_value = (output, '')
    with self.assertRaises(ConfigException) as context:
      ep = ExecProvider(self.input_ok)
      ep.run()
    self.assertIn(
        'exec: plugin api version %s does not match' % wrong_api_version,
        context.exception.args[0])

  @mock.patch('subprocess.Popen')
  def test_ok_01(self, mock):
    instance = mock.return_value
    instance.wait.return_value = 0
    instance.communicate.return_value = (self.output_ok, '')
    ep = ExecProvider(self.input_ok)
    result = ep.run()
    self.assertTrue(isinstance(result, dict))
    self.assertTrue('token' in result)


if __name__ == '__main__':
  unittest.main()