Files
virtual-kubelet/vendor/github.com/vmware/vic/tests/manual-test-cases/Group18-VIC-UI/VicUiInstallPexpectLibrary.py
Loc Nguyen 513cebe7b7 VMware vSphere Integrated Containers provider (#206)
* Add Virtual Kubelet provider for VIC

Initial virtual kubelet provider for VMware VIC.  This provider currently
handles creating and starting of a pod VM via the VIC portlayer and persona
server.  Image store handling via the VIC persona server.  This provider
currently requires the feature/wolfpack branch of VIC.

* Added pod stop and delete.  Also added node capacity.

Added the ability to stop and delete pod VMs via VIC.  Also retrieve
node capacity information from the VCH.

* Cleanup and readme file

Some file clean up and added a Readme.md markdown file for the VIC
provider.

* Cleaned up errors, added function comments, moved operation code

1. Cleaned up error handling.  Set standard for creating errors.
2. Added method prototype comments for all interface functions.
3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder.

* Add mocking code and unit tests for podcache, podcreator, and podstarter

Used the unit test framework used in VIC to handle assertions in the provider's
unit test.  Mocking code generated using OSS project mockery, which is compatible
with the testify assertion framework.

* Vendored packages for the VIC provider

Requires feature/wolfpack branch of VIC and a few specific commit sha of
projects used within VIC.

* Implementation of POD Stopper and Deleter unit tests (#4)

* Updated files for initial PR
2018-06-04 15:41:32 -07:00

162 lines
6.9 KiB
Python

# Copyright 2016-2017 VMware, Inc. All Rights Reserved.
#
# 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.path
import pexpect
import time
class VicUiInstallPexpectLibrary(object):
TIMEOUT_LIMIT = 180
NGC_TESTS_TIMEOUT_LIMIT = 1800
with open('testbed-information', 'r') as f:
testbed_information = f.read().splitlines()
IS_TESTING_VSPHERE65 = 'TEST_VSPHERE_VER=65' in testbed_information[0]
INSTALLER_PATH = os.path.join(os.path.dirname(
__file__), '../../..', 'ui', 'installer', 'VCSA')
NGC_TESTS_PATH = os.path.join(os.path.dirname(__file__), '../../..', 'ui', 'vic-ui-h5c/uia/h5-plugin-tests/ui-automation/vic-uia') if IS_TESTING_VSPHERE65 else os.path.join(
os.path.dirname(__file__), '../../..', 'ui', 'vic-uia/flex-automation-test/uia/vic-uia')
def _prepare_and_spawn(self, operation, callback, flags=None):
try:
executable = os.path.join(
VicUiInstallPexpectLibrary.INSTALLER_PATH, operation + '.sh ' + (flags if flags is not None else ''))
self._f = open(operation + '.log', 'wb')
self._pchild = pexpect.spawn(
executable, cwd=VicUiInstallPexpectLibrary.INSTALLER_PATH, timeout=VicUiInstallPexpectLibrary.TIMEOUT_LIMIT)
self._pchild.logfile = self._f
callback()
self._f.close()
except IOError as e:
return 'Error: ' + e.value
def _common_prompts(
self, vcenter_ip, vcenter_user, vcenter_password,
trust_fingerprint, manual_entry):
self._pchild.expect('Enter IP to target vCenter Server: ')
self._pchild.sendline(vcenter_ip)
self._pchild.expect('Enter your vCenter Administrator Username: ')
self._pchild.sendline(vcenter_user)
self._pchild.expect('Enter your vCenter Administrator Password: ')
self._pchild.sendline(vcenter_password)
def install_fails(
self, vcenter_ip, vcenter_user, vcenter_password,
trust_fingerprint=True, manual_entry=None):
def commands():
self._common_prompts(
vcenter_ip, vcenter_user, vcenter_password, trust_fingerprint, manual_entry)
# self._pchild.interact()
idx = self._pchild.expect([
'.*Are you sure you trust the authenticity of this host (yes/no)?.*', '.*Error.*'])
if idx is 1:
self._pchild.expect(pexpect.EOF)
else:
if trust_fingerprint is True:
self._pchild.sendline('yes')
else:
self._pchild.sendline('no')
self._pchild.expect(
'.*Enter SHA-1 thumbprint of target VC:.*')
self._pchild.sendline(manual_entry)
self._pchild.expect('.*Error.*')
self._pchild.expect(pexpect.EOF)
self._prepare_and_spawn('install', commands)
def install_plugin_successfully(
self, vcenter_ip, vcenter_user, vcenter_password,
trust_fingerprint=True, manual_entry=None, force=False):
def commands():
self._common_prompts(
vcenter_ip, vcenter_user, vcenter_password, trust_fingerprint, manual_entry)
self._pchild.expect(
'.*Are you sure you trust the authenticity of this host (yes/no)?.*')
self._pchild.sendline('yes')
self._pchild.expect('.*exited successfully')
self._pchild.expect(pexpect.EOF)
if force is True:
self._prepare_and_spawn('install', commands, '--force')
else:
self._prepare_and_spawn('install', commands)
def uninstall_fails(
self, vcenter_ip, vcenter_user, vcenter_password,
trust_fingerprint=True, manual_entry=None):
def commands():
self._common_prompts(
vcenter_ip, vcenter_user, vcenter_password, trust_fingerprint, manual_entry)
# self._pchild.interact()
idx = self._pchild.expect([
'.*Are you sure you trust the authenticity of this host (yes/no)?.*', '.*Error.*'])
if idx is 1:
self._pchild.expect(pexpect.EOF)
else:
if trust_fingerprint is True:
self._pchild.sendline('yes')
else:
self._pchild.sendline('no')
self._pchild.expect(
'.*Enter SHA-1 thumbprint of target VC:.*')
self._pchild.sendline(manual_entry)
self._pchild.expect('.*Error.*')
self._pchild.expect(pexpect.EOF)
self._prepare_and_spawn('uninstall', commands)
def uninstall_vicui(
self, vcenter_ip, vcenter_user, vcenter_password,
trust_fingerprint=True, manual_entry=None):
def commands():
self._common_prompts(
vcenter_ip, vcenter_user, vcenter_password, trust_fingerprint, manual_entry)
self._pchild.expect(
'.*Are you sure you trust the authenticity of this host (yes/no)?.*')
self._pchild.sendline('yes')
self._pchild.expect(
['.*exited successfully', 'Error! Could not unregister.*'])
# self._pchild.interact()
self._pchild.expect(pexpect.EOF)
self._prepare_and_spawn('uninstall', commands)
def run_ngc_tests(self, vcenter_user, vcenter_password):
try:
self._f = open('ngc_tests.log', 'wb')
self._pchild = pexpect.spawn('mvn test -Denv.VC_ADMIN_USERNAME=' + vcenter_user + ' -Denv.VC_ADMIN_PASSWORD=' + vcenter_password,
cwd=VicUiInstallPexpectLibrary.NGC_TESTS_PATH, timeout=VicUiInstallPexpectLibrary.NGC_TESTS_TIMEOUT_LIMIT)
self._pchild.logfile = self._f
self._pchild.expect(pexpect.EOF)
self._f.close()
except IOError as e:
return 'Error: ' + e.value
def run_hsuia_tests(self):
try:
self._f = open('ngc_tests.log', 'wb')
self._pchild = pexpect.spawn('mvn clean compile exec:exec -e -Dhsuia.runlist=work/runlists/default.runlist',
cwd=VicUiInstallPexpectLibrary.NGC_TESTS_PATH, timeout=VicUiInstallPexpectLibrary.NGC_TESTS_TIMEOUT_LIMIT)
self._pchild.logfile = self._f
self._pchild.expect(pexpect.EOF)
self._f.close()
except IOError as e:
return 'Error: ' + e.value