From: Igor Opaniuk <igor.opaniuk@gmail.com>
To: u-boot@lists.denx.de
Cc: Igor Opaniuk <igor.opaniuk@gmail.com>, Tom Rini <trini@konsulko.com>
Subject: [PATCH v2 4/5] test: py: add optee_rpmb tests
Date: Sat, 2 Mar 2024 23:01:07 +0100 [thread overview]
Message-ID: <20240302220108.720637-5-igor.opaniuk@gmail.com> (raw)
In-Reply-To: <20240302220108.720637-1-igor.opaniuk@gmail.com>
Add read/write tests for optee_rpmb cmd.
Signed-off-by: Igor Opaniuk <igor.opaniuk@gmail.com>
---
(no changes since v1)
test/py/tests/test_optee_rpmb.py | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 test/py/tests/test_optee_rpmb.py
diff --git a/test/py/tests/test_optee_rpmb.py b/test/py/tests/test_optee_rpmb.py
new file mode 100644
index 00000000000..8a081b5c494
--- /dev/null
+++ b/test/py/tests/test_optee_rpmb.py
@@ -0,0 +1,20 @@
+# SPDX-License-Identifier: GPL-2.0+
+#
+# Tests for OP-TEE RPMB read/write support
+
+"""
+This tests optee_rpmb cmd in U-Boot
+"""
+
+import pytest
+import u_boot_utils as util
+
+@pytest.mark.buildconfigspec('cmd_optee_rpmb')
+def test_optee_rpmb_read_write(u_boot_console):
+ """Test OP-TEE RPMB cmd read/write
+ """
+ response = u_boot_console.run_command('optee_rpmb write_pvalue test_variable test_value')
+ assert response == 'Wrote 11 bytes'
+
+ response = u_boot_console.run_command('optee_rpmb read_pvalue test_variable 11')
+ assert response == 'Read 11 bytes, value = test_value'
\ No newline at end of file
--
2.34.1
next prev parent reply other threads:[~2024-03-02 22:01 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-02 22:01 [PATCH v2 0/5] TEE: minor cleanup Igor Opaniuk
2024-03-02 22:01 ` [PATCH v2 1/5] tee: optee: fix description in Kconfig Igor Opaniuk
2024-03-02 22:01 ` [PATCH v2 2/5] tee: sandbox: fix spelling errors Igor Opaniuk
2024-03-02 22:01 ` [PATCH v2 3/5] cmd: optee_rpmb: build cmd for sandbox Igor Opaniuk
2024-03-02 22:01 ` Igor Opaniuk [this message]
2024-03-02 22:01 ` [PATCH v2 5/5] tee: remove common.h inclusion Igor Opaniuk
2024-03-04 11:16 ` [PATCH v2 0/5] TEE: minor cleanup Ilias Apalodimas
2024-03-04 15:50 ` Igor Opaniuk
2024-03-04 16:08 ` Tom Rini
2024-03-04 16:08 ` Heinrich Schuchardt
2024-03-04 17:46 ` Igor Opaniuk
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=20240302220108.720637-5-igor.opaniuk@gmail.com \
--to=igor.opaniuk@gmail.com \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/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