]> git.baikalelectronics.ru Git - uboot.git/commitdiff
test: rng: Add a UT testcase for the rng command
authorSughosh Ganu <sughosh.ganu@linaro.org>
Fri, 22 Jul 2022 16:02:09 +0000 (21:32 +0530)
committerIlias Apalodimas <ilias.apalodimas@linaro.org>
Tue, 2 Aug 2022 20:50:02 +0000 (23:50 +0300)
The 'rng' command dumps a number of random bytes on the console. Add a
set of tests for the 'rng' command. The test function performs basic
sanity testing of the command.

Since a unit test is being added for the command, enable it by default
in the sandbox platforms.

Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
cmd/Kconfig
test/dm/rng.c

index a8260aa170d073febfe96178d6b38400c6964d48..3625ff2a50b35626f8768f3d94c4ce6c90813528 100644 (file)
@@ -1964,6 +1964,7 @@ config CMD_GETTIME
 config CMD_RNG
        bool "rng command"
        depends on DM_RNG
+       default y if SANDBOX
        select HEXDUMP
        help
          Print bytes from the hardware random number generator.
index 5b34c93ed670a76f22472630281c9beb654eade3..6d1f68848d52eea6b999a31583c24151d350e290 100644 (file)
@@ -25,3 +25,32 @@ static int dm_test_rng_read(struct unit_test_state *uts)
        return 0;
 }
 DM_TEST(dm_test_rng_read, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
+
+/* Test the rng command */
+static int dm_test_rng_cmd(struct unit_test_state *uts)
+{
+       struct udevice *dev;
+
+       ut_assertok(uclass_get_device(UCLASS_RNG, 0, &dev));
+       ut_assertnonnull(dev);
+
+       ut_assertok(console_record_reset_enable());
+
+       run_command("rng", 0);
+       ut_assert_nextlinen("00000000:");
+       ut_assert_nextlinen("00000010:");
+       ut_assert_nextlinen("00000020:");
+       ut_assert_nextlinen("00000030:");
+       ut_assert_console_end();
+
+       run_command("rng 0 10", 0);
+       ut_assert_nextlinen("00000000:");
+       ut_assert_console_end();
+
+       run_command("rng 20", 0);
+       ut_assert_nextlinen("No RNG device");
+       ut_assert_console_end();
+
+       return 0;
+}
+DM_TEST(dm_test_rng_cmd, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT | UT_TESTF_CONSOLE_REC);