]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
test: env: Add test for verifying env attrs
authorJoe Hershberger <joe.hershberger@ni.com>
Wed, 20 May 2015 19:27:37 +0000 (14:27 -0500)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 20:43:17 +0000 (22:43 +0200)
Add a test of the env_attr_lookup() function.

Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
test/env/Makefile
test/env/attr.c [new file with mode: 0644]

index 59b38e99ae8718bdfb9695e8f476b059d1dac06a..5168bcb32872e30402a782afe1d85f9300aff71e 100644 (file)
@@ -5,3 +5,4 @@
 #
 
 obj-y += cmd_ut_env.o
+obj-y += attr.o
diff --git a/test/env/attr.c b/test/env/attr.c
new file mode 100644 (file)
index 0000000..d9be825
--- /dev/null
@@ -0,0 +1,62 @@
+/*
+ * (C) Copyright 2015
+ * Joe Hershberger, National Instruments, joe.hershberger@ni.com
+ *
+ * SPDX-License-Identifier:    GPL-2.0
+ */
+
+#include <common.h>
+#include <command.h>
+#include <env_attr.h>
+#include <test/env.h>
+#include <test/ut.h>
+
+static int env_test_attrs_lookup(struct unit_test_state *uts)
+{
+       char attrs[32];
+
+       ut_assertok(env_attr_lookup("foo:bar", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup(",foo:bar", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup(",foo:bar,", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup(" foo:bar", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup("foo : bar", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup(" foo: bar ", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup("foo:bar ", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_assertok(env_attr_lookup(",foo:bar,goo:baz", "foo", attrs));
+       ut_asserteq_str("bar", attrs);
+
+       ut_asserteq(-ENOENT, env_attr_lookup(",,", "foo", attrs));
+
+       ut_asserteq(-ENOENT, env_attr_lookup("goo:baz", "foo", attrs));
+
+       ut_assertok(env_attr_lookup("foo:bar,foo:bat,foo:baz", "foo", attrs));
+       ut_asserteq_str("baz", attrs);
+
+       ut_assertok(env_attr_lookup(
+               " foo : bar , foo : bat , foot : baz ", "foo", attrs));
+       ut_asserteq_str("bat", attrs);
+
+       ut_assertok(env_attr_lookup(
+               " foo : bar , foo : bat , ufoo : baz ", "foo", attrs));
+       ut_asserteq_str("bat", attrs);
+
+       ut_asserteq(-EINVAL, env_attr_lookup(NULL, "foo", attrs));
+       ut_asserteq(-EINVAL, env_attr_lookup("foo:bar", "foo", NULL));
+
+       return 0;
+}
+ENV_TEST(env_test_attrs_lookup, 0);