From: Zhang Xiaoxu <zhangxiaoxu@huaweicloud.com>
To: zhangxiaoxu5@huawei.com, weiyongjun1@huawei.com,
linux-kernel@vger.kernel.org, broonie@kernel.org,
rostedt@goodmis.org, mingo@redhat.com, frowand.list@gmail.com,
linux-spi@vger.kernel.org
Subject: [PATCH -next 12/14] kddv/tests: Add support for testing mtd driver
Date: Sat, 18 Nov 2023 18:40:38 +0800 [thread overview]
Message-ID: <20231118104040.386381-13-zhangxiaoxu@huaweicloud.com> (raw)
In-Reply-To: <20231118104040.386381-1-zhangxiaoxu@huaweicloud.com>
From: Zhang Xiaoxu <zhangxiaoxu5@huawei.com>
This implement some helper function for mtd device,
mtd driver test case can inherit 'MTDDriver' to simplify code.
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Zhang Xiaoxu <zhangxiaoxu@huawei.com>
---
tools/testing/kddv/kddv/tests/mtd/__init__.py | 63 +++++++++++++++++++
1 file changed, 63 insertions(+)
create mode 100644 tools/testing/kddv/kddv/tests/mtd/__init__.py
diff --git a/tools/testing/kddv/kddv/tests/mtd/__init__.py b/tools/testing/kddv/kddv/tests/mtd/__init__.py
new file mode 100644
index 000000000000..4defd92deb05
--- /dev/null
+++ b/tools/testing/kddv/kddv/tests/mtd/__init__.py
@@ -0,0 +1,63 @@
+#!/usr/bin/env python3
+# SPDX-License-Identifier: GPL-2.0
+#
+# Kernel device driver verification
+#
+# Copyright (C) 2022-2023 Huawei Technologies Co., Ltd
+# Author: Wei Yongjun <weiyongjun1@huawei.com>
+
+import os
+import logging
+
+from pathlib import Path
+
+logger = logging.getLogger(__name__)
+
+class MTD(object):
+ def __init__(self, path):
+ mtd = next(path.glob("mtd/mtd*")).name
+ self.cdev = Path(f"/sys/class/mtd/{mtd}")
+ self.rdev = f"/dev/{mtd}"
+
+ def read_bytes(self, len, offset = 0):
+ with open(self.rdev, "rb") as dev:
+ if offset:
+ dev.seek(offset)
+ return dev.read(len)
+
+ def write_bytes(self, data, offset = 0):
+ with open(self.rdev, "wb") as dev:
+ if offset:
+ dev.seek(offset)
+ dev.write(data)
+
+ def read_attr(self, attr):
+ path = self.cdev / attr
+ logger.debug(f"read from {path}")
+ if not os.path.exists(path):
+ return f"attr '{attr}' not exists"
+ return path.read_text().rstrip()
+
+ def write_attr(self, attr, val):
+ path = self.cdev / attr
+ if not os.path.exists(path):
+ return f"attr '{attr}' not exists"
+ logger.debug(f"write '{val}' to {path}")
+ return path.write_bytes(val.encode())
+
+class MTDDriver(object):
+ def mtd_read_attr(self, dev, attr):
+ mtddev = MTD(dev.path)
+ return mtddev.read_attr(attr)
+
+ def mtd_write_attr(self, dev, attr, val):
+ mtddev = MTD(dev.path)
+ return mtddev.write_attr(attr)
+
+ def mtd_read_bytes(self, dev, len):
+ mtddev = MTD(dev.path)
+ return mtddev.read_bytes(len)
+
+ def mtd_write_bytes(self, dev, data):
+ mtddev = MTD(dev.path)
+ return mtddev.write_bytes(data)
--
2.34.1
next prev parent reply other threads:[~2023-11-18 10:41 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-18 10:40 [PATCH -next 00/14] Implement a ligth weight device driver test framework Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 01/14] kddv/core: " Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 02/14] kddv/core: Allow test case config bpf program Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 03/14] kddv/core: Add io fault support to " Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 04/14] kddv/core: Check kmsg before return from test case Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 05/14] kddv/core: Support kernel memory leak detector Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 06/14] kddv/core: Add page and slab fault inject support Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 07/14] kddv/cmd: Add command to create/remove mockup device Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 08/14] kddv/cmd: Add command to run testcases Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 09/14] kddv/core: Add test support for SPI driver Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 10/14] kddv/tests: Add support for testing hwmon driver Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 11/14] kddv/tests/hwmon: Add test cases for max31722 driver Zhang Xiaoxu
2023-11-18 10:40 ` Zhang Xiaoxu [this message]
2023-11-18 10:40 ` [PATCH -next 13/14] kddv/tests/mtd: Add test cases for mchp23k256 driver Zhang Xiaoxu
2023-11-18 10:40 ` [PATCH -next 14/14] kddv: Add document for kddv Zhang Xiaoxu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20231118104040.386381-13-zhangxiaoxu@huaweicloud.com \
--to=zhangxiaoxu@huaweicloud.com \
--cc=broonie@kernel.org \
--cc=frowand.list@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=rostedt@goodmis.org \
--cc=weiyongjun1@huawei.com \
--cc=zhangxiaoxu5@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).