open-cas-linux/test/functional/test-framework/test_tools/fio/fio_patterns.py
Robert Baldyga 849f59855c tests: Embed test framework within OCL repository
Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
2022-12-23 12:53:55 +01:00

20 lines
408 B
Python

#
# Copyright(c) 2020-2021 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
import secrets
from aenum import Enum
class Pattern(Enum):
cyclic = "0x00336699ccffcc996633"
sequential = "0x" + "".join([f"{i:02x}" for i in range(0, 256)])
high = "0xaa"
low = "0x84210"
zeroes = "0x00"
ones = "0xff"
bin_1 = high
bin_2 = "0x55"
random = "0x" + secrets.token_hex()