Merge pull request #1184 from mmichal10/test-standby-neg-cache-id

Test standby neg cache
This commit is contained in:
Karolina Rogowska 2022-04-21 12:33:48 +02:00 committed by GitHub
commit 70834a74cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 96 additions and 1 deletions

View File

@ -49,7 +49,11 @@ class Cache:
return self.get_statistics().usage_stats.occupancy return self.get_statistics().usage_stats.occupancy
def get_status(self): def get_status(self):
status = self.get_statistics().config_stats.status.replace(' ', '_').lower() status = (
self.get_statistics(stat_filter=[StatsFilter.conf])
.config_stats.status.replace(" ", "_")
.lower()
)
return CacheStatus[status] return CacheStatus[status]
@property @property

View File

@ -117,6 +117,8 @@ class CacheStatus(Enum):
initializing = "initializing" initializing = "initializing"
flushing = "flushing" flushing = "flushing"
incomplete = "incomplete" incomplete = "incomplete"
standby = "standby"
standby_detached = "standby detached"
def __str__(self): def __str__(self):
return self.value return self.value

View File

@ -145,6 +145,10 @@ mutually_exclusive_params_load = [
r"forbidden." r"forbidden."
] ]
activate_with_different_cache_id = [
r"Cache id specified by user and loaded from metadata are different"
]
def check_stderr_msg(output: Output, expected_messages): def check_stderr_msg(output: Output, expected_messages):
return __check_string_msg(output.stderr, expected_messages) return __check_string_msg(output.stderr, expected_messages)

View File

@ -0,0 +1,85 @@
#
# Copyright(c) 2019-2021 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
import pytest
from api.cas import cli, casadm
from storage_devices.disk import DiskType, DiskTypeSet, DiskTypeLowerThan
from core.test_run import TestRun
from test_utils.size import Size, Unit
from api.cas.cache_config import CacheLineSize, CacheMode, CacheStatus
from test_tools.dd import Dd
from api.cas.cli import standby_activate_cmd
from api.cas.cli_messages import check_stderr_msg, activate_with_different_cache_id
@pytest.mark.require_disk("cache", DiskTypeSet([DiskType.optane, DiskType.nand]))
def test_activate_neg_cache_id():
"""
title: Blocking cache with mismatching cache ID activation
description: |
Try restoring cache operations from a replicated cache that was initialized
with different cache ID than the original cache
pass_criteria:
- The activation is cancelled
- The cache remains in Standby detached state after an unsuccessful activation
- The cache exported object is present after an unsuccessful activation
- A proper error message is displayed
"""
with TestRun.step("Prepare two partitions of the same size"):
disk = TestRun.disks["cache"]
disk.create_partitions([Size(200, Unit.MebiByte), Size(200, Unit.MebiByte)])
active_dev = disk.partitions[0]
standby_dev = disk.partitions[1]
with TestRun.step(
"Start a regular cache instance explicitly providing a valid cache id and stop it"
):
active_cache_id = 5
standby_cache_id = 15
cache_exp_obj_name = f"cas-cache-{standby_cache_id}"
cls = CacheLineSize.LINE_32KiB
cache = casadm.start_cache(
active_dev, cache_id=active_cache_id, cache_line_size=cls, force=True
)
cache.stop()
with TestRun.step(
"On the second partition initialize standby instance with different cache id"
):
standby_cache = casadm.standby_init(
standby_dev,
cache_line_size=int(cls.value.value / Unit.KibiByte.value),
cache_id=standby_cache_id,
force=True,
)
with TestRun.step("Copy contents of the first partition into the cache exported object"):
Dd().input(active_dev.path).output(f"/dev/{cache_exp_obj_name}").run()
with TestRun.step("Verify if the cache exported object appeared in the system"):
output = TestRun.executor.run_expect_success(f"ls -la /dev/ | grep {cache_exp_obj_name}")
if output.stdout[0] != "b":
TestRun.fail("The cache exported object is not a block device")
with TestRun.step("Detach the standby instance"):
standby_cache.standby_detach()
with TestRun.step("Try to activate the standby cache instance with different cache id"):
output = TestRun.executor.run_expect_fail(
standby_activate_cmd(cache_dev=standby_dev.path, cache_id=str(standby_cache_id))
)
if not check_stderr_msg(output, activate_with_different_cache_id):
TestRun.LOGGER.error(
f"Invalid error message. Expected {activate_with_different_cache_id}."
f"Got {output.stderr}"
)
status = standby_cache.get_status()
if status != CacheStatus.standby_detached:
TestRun.LOGGER.error(
"The standby cache instance is in an invalid state "
f"Expected {CacheStatus.standby_detached}. Got {status}"
)