You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
181 lines
6.3 KiB
181 lines
6.3 KiB
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2019 - The Android Open Source Project
|
|
#
|
|
# 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.
|
|
"""Tests for acloud.internal.lib.cheeps_compute_client."""
|
|
|
|
import unittest
|
|
|
|
from unittest import mock
|
|
|
|
from acloud.internal import constants
|
|
from acloud.internal.lib import cheeps_compute_client
|
|
from acloud.internal.lib import driver_test_lib
|
|
from acloud.internal.lib import gcompute_client
|
|
|
|
|
|
class CheepsComputeClientTest(driver_test_lib.BaseDriverTest):
|
|
"""Test CheepsComputeClient."""
|
|
|
|
SSH_PUBLIC_KEY_PATH = ""
|
|
INSTANCE = "fake-instance"
|
|
IMAGE = "fake-image"
|
|
IMAGE_PROJECT = "fake-image-project"
|
|
MACHINE_TYPE = "fake-machine-type"
|
|
NETWORK = "fake-network"
|
|
ZONE = "fake-zone"
|
|
METADATA = {"metadata_key": "metadata_value"}
|
|
BOOT_DISK_SIZE_GB = 10
|
|
ANDROID_BUILD_ID = 123
|
|
ANDROID_BUILD_TARGET = 'cheese-userdebug'
|
|
DPI = 320
|
|
X_RES = 720
|
|
Y_RES = 1280
|
|
USER = "test_user"
|
|
PASSWORD = "test_password"
|
|
CHEEPS_BETTY_IMAGE = 'abcasdf'
|
|
|
|
def _GetFakeConfig(self):
|
|
"""Create a fake configuration object.
|
|
|
|
Returns:
|
|
A fake configuration mock object.
|
|
"""
|
|
|
|
fake_cfg = mock.MagicMock()
|
|
fake_cfg.ssh_public_key_path = self.SSH_PUBLIC_KEY_PATH
|
|
fake_cfg.machine_type = self.MACHINE_TYPE
|
|
fake_cfg.network = self.NETWORK
|
|
fake_cfg.zone = self.ZONE
|
|
fake_cfg.resolution = "{x}x{y}x32x{dpi}".format(
|
|
x=self.X_RES, y=self.Y_RES, dpi=self.DPI)
|
|
fake_cfg.metadata_variable = self.METADATA
|
|
return fake_cfg
|
|
|
|
def setUp(self):
|
|
"""Set up the test."""
|
|
|
|
super(CheepsComputeClientTest, self).setUp()
|
|
self.Patch(cheeps_compute_client.CheepsComputeClient,
|
|
"InitResourceHandle")
|
|
self.cheeps_compute_client = (
|
|
cheeps_compute_client.CheepsComputeClient(self._GetFakeConfig(),
|
|
mock.MagicMock()))
|
|
self.Patch(
|
|
gcompute_client.ComputeClient, "CompareMachineSize", return_value=1)
|
|
self.Patch(
|
|
gcompute_client.ComputeClient,
|
|
"GetImage",
|
|
return_value={"diskSizeGb": self.BOOT_DISK_SIZE_GB})
|
|
self.Patch(gcompute_client.ComputeClient, "CreateInstance")
|
|
|
|
def testCreateInstance(self):
|
|
"""Test CreateInstance."""
|
|
|
|
expected_metadata = {
|
|
'android_build_id': self.ANDROID_BUILD_ID,
|
|
'android_build_target': self.ANDROID_BUILD_TARGET,
|
|
'avd_type': "cheeps",
|
|
'betty_image': self.CHEEPS_BETTY_IMAGE,
|
|
'cvd_01_dpi': str(self.DPI),
|
|
'cvd_01_x_res': str(self.X_RES),
|
|
'cvd_01_y_res': str(self.Y_RES),
|
|
'display': "%sx%s (%s)"%(
|
|
str(self.X_RES),
|
|
str(self.Y_RES),
|
|
str(self.DPI)),
|
|
'user': self.USER,
|
|
'password': self.PASSWORD,
|
|
}
|
|
expected_metadata.update(self.METADATA)
|
|
|
|
avd_spec = mock.MagicMock()
|
|
avd_spec.hw_property = {constants.HW_X_RES: str(self.X_RES),
|
|
constants.HW_Y_RES: str(self.Y_RES),
|
|
constants.HW_ALIAS_DPI: str(self.DPI)}
|
|
avd_spec.username = self.USER
|
|
avd_spec.password = self.PASSWORD
|
|
avd_spec.remote_image = {
|
|
constants.BUILD_ID: self.ANDROID_BUILD_ID,
|
|
constants.BUILD_TARGET: self.ANDROID_BUILD_TARGET,
|
|
constants.CHEEPS_BETTY_IMAGE: self.CHEEPS_BETTY_IMAGE,
|
|
}
|
|
|
|
self.cheeps_compute_client.CreateInstance(
|
|
self.INSTANCE,
|
|
self.IMAGE,
|
|
self.IMAGE_PROJECT,
|
|
avd_spec)
|
|
# pylint: disable=no-member
|
|
gcompute_client.ComputeClient.CreateInstance.assert_called_with(
|
|
self.cheeps_compute_client,
|
|
instance=self.INSTANCE,
|
|
image_name=self.IMAGE,
|
|
image_project=self.IMAGE_PROJECT,
|
|
disk_args=None,
|
|
metadata=expected_metadata,
|
|
machine_type=self.MACHINE_TYPE,
|
|
network=self.NETWORK,
|
|
zone=self.ZONE)
|
|
|
|
def testCreateInstanceMissingParams(self):
|
|
"""Test CreateInstance with optional avd_spec parameters missing."""
|
|
expected_metadata = {
|
|
'android_build_id': self.ANDROID_BUILD_ID,
|
|
'android_build_target': self.ANDROID_BUILD_TARGET,
|
|
'avd_type': "cheeps",
|
|
'betty_image': None,
|
|
'cvd_01_dpi': str(self.DPI),
|
|
'cvd_01_x_res': str(self.X_RES),
|
|
'cvd_01_y_res': str(self.Y_RES),
|
|
'display': "%sx%s (%s)"%(
|
|
str(self.X_RES),
|
|
str(self.Y_RES),
|
|
str(self.DPI)),
|
|
}
|
|
expected_metadata.update(self.METADATA)
|
|
|
|
|
|
avd_spec = mock.MagicMock()
|
|
avd_spec.hw_property = {constants.HW_X_RES: str(self.X_RES),
|
|
constants.HW_Y_RES: str(self.Y_RES),
|
|
constants.HW_ALIAS_DPI: str(self.DPI)}
|
|
avd_spec.username = None
|
|
avd_spec.password = None
|
|
avd_spec.remote_image = {
|
|
constants.BUILD_ID: self.ANDROID_BUILD_ID,
|
|
constants.BUILD_TARGET: self.ANDROID_BUILD_TARGET,
|
|
constants.CHEEPS_BETTY_IMAGE: None,
|
|
}
|
|
|
|
self.cheeps_compute_client.CreateInstance(
|
|
self.INSTANCE,
|
|
self.IMAGE,
|
|
self.IMAGE_PROJECT,
|
|
avd_spec)
|
|
# pylint: disable=no-member
|
|
gcompute_client.ComputeClient.CreateInstance.assert_called_with(
|
|
self.cheeps_compute_client,
|
|
instance=self.INSTANCE,
|
|
image_name=self.IMAGE,
|
|
image_project=self.IMAGE_PROJECT,
|
|
disk_args=None,
|
|
metadata=expected_metadata,
|
|
machine_type=self.MACHINE_TYPE,
|
|
network=self.NETWORK,
|
|
zone=self.ZONE)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|