open-cas-linux/test/functional/tests/example/example_test_power_cycle.py
Rafal Stefanowski 43f43068ad Update copyright statements (2021)
Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
2021-01-21 13:15:38 +01:00

27 lines
866 B
Python

#
# Copyright(c) 2020-2021 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause-Clear
#
import pytest
from core.test_run import TestRun
from storage_devices.disk import DiskType, DiskTypeSet
@pytest.mark.require_disk("cache", DiskTypeSet([DiskType.optane, DiskType.nand]))
@pytest.mark.require_plugin("power_control")
def test_create_example_partitions():
"""
title: Example test doing power cycle
description: |
Example usage of power_control plugin.
NOTE:
This test uses plugin that is not included in test-framework.
It should be provided by user as external_plugin.
pass_criteria:
- DUT should reboot successfully.
"""
with TestRun.step("Power cycle DUT"):
power_control = TestRun.plugin_manager.get_plugin('power_control')
power_control.power_cycle()