1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
|
# This file is part of cloud-init. See LICENSE file for license information.
import datetime
import fcntl
import functools
import logging
import os
import shutil
import subprocess
import sys
from contextlib import contextmanager
from pathlib import Path
from tarfile import TarFile
from typing import Dict, Generator, Iterator, List, Type
import pytest
from pycloudlib.cloud import ImageType
from pycloudlib.lxd.instance import LXDInstance
from tests.integration_tests import integration_settings
from tests.integration_tests.clouds import (
AzureCloud,
Ec2Cloud,
GceCloud,
IbmCloud,
IntegrationCloud,
LxdContainerCloud,
LxdVmCloud,
OciCloud,
OpenstackCloud,
QemuCloud,
_LxdIntegrationCloud,
)
from tests.integration_tests.instances import (
CloudInitSource,
IntegrationInstance,
)
from tests.integration_tests.reaper import Reaper
log = logging.getLogger("integration_testing")
log.addHandler(logging.StreamHandler(sys.stdout))
log.setLevel(logging.INFO)
# set log level INFO instead of DEBUG for boto3 and botocore
# to prevent 1000s of lines of DEBUG log spam that occur during some tests
logging.getLogger("botocore").setLevel(logging.INFO)
logging.getLogger("boto3").setLevel(logging.INFO)
platforms: Dict[str, Type[IntegrationCloud]] = {
"ec2": Ec2Cloud,
"gce": GceCloud,
"azure": AzureCloud,
"oci": OciCloud,
"ibm": IbmCloud,
"lxd_container": LxdContainerCloud,
"lxd_vm": LxdVmCloud,
"qemu": QemuCloud,
"openstack": OpenstackCloud,
}
os_list = ["ubuntu"]
session_start_time = datetime.datetime.now().strftime("%y%m%d%H%M%S")
def pytest_runtest_setup(item):
"""Skip tests on unsupported clouds.
A test can take any number of marks to specify the platforms it can
run on. If a platform(s) is specified and we're not running on that
platform, then skip the test. If platform specific marks are not
specified, then we assume the test can be run anywhere.
"""
test_marks = [mark.name for mark in item.iter_markers()]
if "unstable" in test_marks and not integration_settings.RUN_UNSTABLE:
pytest.skip("Test marked unstable. Manually remove mark to run it")
# disable_subp_usage is defined at a higher level, but we don't
# want it applied here
@pytest.fixture()
def disable_subp_usage(request):
pass
def setup_image_or_die(cloud: IntegrationCloud):
try:
setup_image(cloud)
except Exception as e:
if cloud.snapshot_id:
# if a snapshot id was set, then snapshot succeeded, teardown
cloud.delete_snapshot()
cloud.destroy()
pytest.exit(
f"{type(e).__name__} in session setup: {str(e)}", returncode=2
)
def setup_image_once(
worker_id: str,
cloud: IntegrationCloud,
tmp_path_factory: pytest.TempPathFactory,
) -> None:
"""Setup image to be used for (almost) all tests.
Since pytest-xdist runs tests in parallel, we need to ensure that
the image setup is only done once, and not multiple times in parallel.
"""
if worker_id == "master":
# We're running single-threaded, so no synchronization needed
setup_image_or_die(cloud)
return
# We're an xdist worker, so we need to synchronize.
# Whoever gets the lock first will do the setup, writing the
# image id into the image path. The other workers will
# wait for file access, read the image id from image path and use it.
image_path = Path(
tmp_path_factory.getbasetemp().parent,
f"session_image_id_{worker_id}",
)
lock_path = image_path.with_suffix(".lock")
with open(lock_path, "w") as lock_file:
# Use a lock to ensure only one worker does the setup
fcntl.lockf(lock_file, fcntl.LOCK_EX)
try:
if not image_path.exists():
setup_image_or_die(cloud)
image_path.write_text(cloud.image_id)
else:
cloud.snapshot_id = image_path.read_text().strip()
finally:
fcntl.lockf(lock_file, fcntl.LOCK_UN)
@pytest.fixture(scope="session")
def session_cloud(
worker_id, reaper: Reaper, tmp_path_factory
) -> Generator[IntegrationCloud, None, None]:
"""get_session_cloud() creates a session from configuration"""
if integration_settings.PLATFORM not in platforms.keys():
raise ValueError(
f"{integration_settings.PLATFORM} is an invalid PLATFORM "
f"specified in settings. Must be one of {list(platforms.keys())}"
)
image_types = [member.value for member in ImageType.__members__.values()]
try:
image_type = ImageType(integration_settings.OS_IMAGE_TYPE)
except ValueError as e:
raise ValueError(
f"{integration_settings.OS_IMAGE_TYPE} is an invalid OS_IMAGE_TYPE"
f" specified in settings. Must be one of {image_types}"
) from e
cloud: IntegrationCloud = platforms[integration_settings.PLATFORM](
reaper=reaper, image_type=image_type
)
cloud.emit_settings_to_log()
setup_image_once(worker_id, cloud, tmp_path_factory)
yield cloud
log.info("Tearing down session cloud")
try:
cloud.delete_snapshot()
except Exception as e:
log.warning(
"Could not delete snapshot. Leaked snapshot id %s: %s",
cloud.snapshot_id,
e,
)
cloud.destroy()
def get_validated_source(
session_cloud: IntegrationCloud,
source=integration_settings.CLOUD_INIT_SOURCE,
) -> CloudInitSource:
if source == "NONE":
return CloudInitSource.NONE
elif source == "IN_PLACE":
if session_cloud.datasource not in ["lxd_container", "lxd_vm"]:
raise ValueError(
"IN_PLACE as CLOUD_INIT_SOURCE only works for LXD"
)
return CloudInitSource.IN_PLACE
elif source == "PROPOSED":
return CloudInitSource.PROPOSED
elif source.startswith("ppa:"):
return CloudInitSource.PPA
elif os.path.isfile(str(source)):
return CloudInitSource.DEB_PACKAGE
elif source == "UPGRADE":
return CloudInitSource.UPGRADE
raise ValueError(f"Invalid value for CLOUD_INIT_SOURCE setting: {source}")
def setup_image(session_cloud: IntegrationCloud) -> None:
"""create image with correct version of cloud-init, then make a snapshot"""
source = get_validated_source(session_cloud)
if not (
source.installs_new_version()
or integration_settings.INCLUDE_COVERAGE
or integration_settings.INCLUDE_PROFILE
):
return
log.info("Setting up source image")
client = session_cloud.launch()
if source.installs_new_version():
log.info("Installing cloud-init from %s", source.name)
client.install_new_cloud_init(source)
if (
integration_settings.INCLUDE_PROFILE
and integration_settings.INCLUDE_COVERAGE
):
log.error(
"Invalid configuration, cannot enable both profile and "
"coverage."
)
raise ValueError()
if integration_settings.INCLUDE_COVERAGE:
log.info("Installing coverage")
client.install_coverage()
elif integration_settings.INCLUDE_PROFILE:
log.info("Installing profiler")
client.install_profile()
# All done customizing the image, so snapshot it and make it global
snapshot_id = client.snapshot()
client.cloud.snapshot_id = snapshot_id
# Even if we're keeping instances, we don't want to keep this
# one around as it was just for image creation
client.destroy()
log.info("Done with environment setup")
def _collect_logs(instance: IntegrationInstance, log_dir: Path):
instance.execute(
"cloud-init collect-logs -u -t /var/tmp/cloud-init.tar.gz"
)
log.info("Writing logs to %s", log_dir)
tarball_path = log_dir / "cloud-init.tar.gz"
try:
instance.pull_file("/var/tmp/cloud-init.tar.gz", tarball_path)
except Exception as e:
log.error("Failed to pull logs: %s", e)
return
tarball = TarFile.open(str(tarball_path))
tarball.extractall(path=str(log_dir))
tarball_path.unlink()
def _collect_coverage(instance: IntegrationInstance, log_dir: Path):
log.info("Writing coverage report to %s", log_dir)
try:
instance.pull_file("/.coverage", log_dir / ".coverage")
except Exception as e:
log.error("Failed to pull coverage for: %s", e)
def _collect_profile(instance: IntegrationInstance, log_dir: Path):
log.info("Writing profile to %s", log_dir)
try:
(log_dir / "profile").mkdir(parents=True)
instance.pull_file(
"/var/log/cloud-init-local.service.stats",
log_dir / "profile" / "local.stats",
)
instance.pull_file(
"/var/log/cloud-init-network.service.stats",
log_dir / "profile" / "network.stats",
)
instance.pull_file(
"/var/log/cloud-config.service.stats",
log_dir / "profile" / "config.stats",
)
instance.pull_file(
"/var/log/cloud-final.service.stats",
log_dir / "profile" / "final.stats",
)
except Exception as e:
log.error("Failed to pull profile for: %s", e)
def _setup_artifact_paths(node_id: str):
parent_dir = Path(integration_settings.LOCAL_LOG_PATH, session_start_time)
node_id_path = Path(
node_id.replace(
".py", ""
) # Having a directory with '.py' would be weird
.replace("::", os.path.sep) # Turn classes/tests into paths
.replace("[", "-") # For parametrized names
.replace("]", "") # For parameterized names
)
log_dir = parent_dir / node_id_path
# Create log dir if not exists
if not log_dir.exists():
log_dir.mkdir(parents=True)
# Add a symlink to the latest log output directory
last_symlink = Path(integration_settings.LOCAL_LOG_PATH) / "last"
if os.path.islink(last_symlink):
os.unlink(last_symlink)
os.symlink(parent_dir, last_symlink)
return log_dir
def _collect_artifacts(
instance: IntegrationInstance, node_id: str, test_failed: bool
):
"""Collect artifacts from remote instance.
Args:
instance: The current IntegrationInstance to collect artifacts from
node_id: The pytest representation of this test, E.g.:
tests/integration_tests/test_example.py::TestExample.test_example
test_failed: If test failed or not
"""
should_collect_logs = integration_settings.COLLECT_LOGS == "ALWAYS" or (
integration_settings.COLLECT_LOGS == "ON_ERROR" and test_failed
)
should_collect_coverage = integration_settings.INCLUDE_COVERAGE
should_collect_profile = integration_settings.INCLUDE_PROFILE
if not (
should_collect_logs
or should_collect_coverage
or should_collect_profile
):
return
log_dir = _setup_artifact_paths(node_id)
if should_collect_logs:
_collect_logs(instance, log_dir)
if should_collect_coverage:
_collect_coverage(instance, log_dir)
elif should_collect_profile:
_collect_profile(instance, log_dir)
def get_session_args(request, fixture_utils, session_cloud: IntegrationCloud):
getter = functools.partial(
fixture_utils.closest_marker_first_arg_or, request, default=None
)
user_data = getter("user_data")
name = getter("instance_name")
lxd_config_dict = getter("lxd_config_dict")
lxd_setup = getter("lxd_setup")
lxd_use_exec = fixture_utils.closest_marker_args_or(
request, "lxd_use_exec", None
)
launch_kwargs = {}
if name is not None:
launch_kwargs["name"] = name
if lxd_config_dict is not None:
if not isinstance(session_cloud, _LxdIntegrationCloud):
pytest.skip("lxd_config_dict requires LXD")
launch_kwargs["config_dict"] = lxd_config_dict
if lxd_use_exec is not None:
if not isinstance(session_cloud, _LxdIntegrationCloud):
pytest.skip("lxd_use_exec requires LXD")
launch_kwargs["execute_via_ssh"] = False
if lxd_setup is not None:
if not isinstance(session_cloud, _LxdIntegrationCloud):
pytest.skip("lxd_setup requires LXD")
return user_data, launch_kwargs, lxd_setup, lxd_use_exec
@contextmanager
def _client(
request, fixture_utils, session_cloud: IntegrationCloud
) -> Iterator[IntegrationInstance]:
"""Fixture implementation for the client fixtures.
Launch the dynamic IntegrationClient instance using any provided
userdata, yield to the test, then cleanup
"""
user_data, launch_kwargs, lxd_setup, lxd_use_exec = get_session_args(
request, fixture_utils, session_cloud
)
with session_cloud.launch(
user_data=user_data,
launch_kwargs=launch_kwargs,
lxd_setup=lxd_setup,
) as instance:
if lxd_use_exec is not None and isinstance(
instance.instance, LXDInstance
):
# Existing instances are not affected by the launch kwargs, so
# ensure it here; we still need the launch kwarg so waiting
# works
instance.instance.execute_via_ssh = False
previous_failures = request.session.testsfailed
yield instance
test_failed = request.session.testsfailed - previous_failures > 0
_collect_artifacts(instance, request.node.nodeid, test_failed)
instance.test_failed = test_failed
if test_failed:
session_cloud.has_failed_test = True
# conflicting requirements:
# - pytest thinks that it can cleanup loggers after tests run
# - pycloudlib thinks that at garbage collection is a good place to
# tear down sftp connections
#
# After the final test runs, pytest might clean up loggers which will
# cause paramiko to barf when it logs that the connection is being
# closed.
#
# Manually run __del__() to prevent this teardown mess.
instance.instance.__del__()
@pytest.fixture
def client( # pylint: disable=W0135
request, fixture_utils, session_cloud
) -> Iterator[IntegrationInstance]:
"""Provide a client that runs for every test."""
with _client(request, fixture_utils, session_cloud) as client:
yield client
@pytest.fixture(scope="module")
def module_client( # pylint: disable=W0135
request, fixture_utils, session_cloud
) -> Iterator[IntegrationInstance]:
"""Provide a client that runs once per module."""
with _client(request, fixture_utils, session_cloud) as client:
yield client
@pytest.fixture(scope="class")
def class_client( # pylint: disable=W0135
request, fixture_utils, session_cloud
) -> Iterator[IntegrationInstance]:
"""Provide a client that runs once per class."""
with _client(request, fixture_utils, session_cloud) as client:
yield client
def pytest_assertrepr_compare(op, left, right):
"""Custom integration test assertion explanations.
See
https://docs.pytest.org/en/stable/assert.html#defining-your-own-explanation-for-failed-assertions
for pytest's documentation.
"""
if op == "not in" and isinstance(left, str) and isinstance(right, str):
# This stanza emits an improved assertion message if we're testing for
# the presence of a string within a cloud-init log: it will report only
# the specific lines containing the string (instead of the full log,
# the default behaviour).
potential_log_lines = right.splitlines()
first_line = potential_log_lines[0]
if "DEBUG" in first_line and "Cloud-init" in first_line:
# We are looking at a cloud-init log, so just pick out the relevant
# lines
found_lines = [
line for line in potential_log_lines if left in line
]
return [
'"{}" not in cloud-init.log string; unexpectedly found on'
" these lines:".format(left)
] + found_lines
def pytest_configure(config):
"""Perform initial configuration, before the test runs start.
This hook is only called if integration tests are being executed, so we can
use it to configure defaults for integration testing that differ from the
rest of the tests in the codebase.
See
https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_configure
for pytest's documentation.
"""
if "log_cli_level" in config.option and not config.option.log_cli_level:
# If log_cli_level is available in this version of pytest and not set
# to anything, set it to INFO.
config.option.log_cli_level = "INFO"
def _copy_coverage_files(parent_dir: Path) -> List[Path]:
combined_files = []
for dirpath in parent_dir.rglob("*"):
if (dirpath / ".coverage").exists():
# Construct the new filename
relative_dir = dirpath.relative_to(parent_dir)
new_filename = ".coverage." + str(relative_dir).replace(
os.sep, "-"
)
new_filepath = parent_dir / new_filename
# Copy the file
shutil.copy(dirpath / ".coverage", new_filepath)
combined_files.append(new_filepath)
return combined_files
def _generate_coverage_report() -> None:
log.info("Generating coverage report")
parent_dir = Path(integration_settings.LOCAL_LOG_PATH, session_start_time)
coverage_files = _copy_coverage_files(parent_dir)
subprocess.run(
["coverage", "combine"] + [str(f) for f in coverage_files],
check=True,
cwd=str(parent_dir),
stdout=subprocess.DEVNULL,
)
html_dir = parent_dir / "html"
html_dir.mkdir()
subprocess.run(
[
"coverage",
"html",
f"--data-file={parent_dir / '.coverage'}",
f"--directory={html_dir}",
"--ignore-errors",
],
check=True,
stdout=subprocess.DEVNULL,
)
log.info("Coverage report generated")
def _generate_profile_report() -> None:
log.info("Profile reports generated, run the following to view:")
command = (
"python3 -m snakeviz /tmp/cloud_init_test_logs/"
"last/tests/integration_tests/*/*/*/profile/%s"
)
log.info(command, "local.stats")
log.info(command, "network.stats")
log.info(command, "config.stats")
log.info(command, "final.stats")
@pytest.fixture(scope="session")
def reaper():
"""Fixture to provide a reaper instance for cleaning up instances."""
reaper_instance = Reaper()
reaper_instance.start()
yield reaper_instance
try:
reaper_instance.stop()
except Exception as e:
log.warning(
"Could not tear down instance reaper thread: %s(%s)",
type(e).__name__,
e,
)
def pytest_sessionfinish(session, exitstatus) -> None:
try:
if integration_settings.INCLUDE_COVERAGE:
_generate_coverage_report()
elif integration_settings.INCLUDE_PROFILE:
_generate_profile_report()
except Exception as e:
log.warning("Could not generate report during session finish: %s", e)
|