From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0FD4B45B0C; Fri, 11 Oct 2024 05:34:19 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B370040DF5; Fri, 11 Oct 2024 05:33:46 +0200 (CEST) Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by mails.dpdk.org (Postfix) with ESMTP id 2F56A40689 for ; Fri, 11 Oct 2024 05:33:35 +0200 (CEST) Received: from mail.maildlp.com (unknown [172.19.163.48]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4XPsdb3y47zCtC0; Fri, 11 Oct 2024 11:32:51 +0800 (CST) Received: from dggpeml500024.china.huawei.com (unknown [7.185.36.10]) by mail.maildlp.com (Postfix) with ESMTPS id 2CA0A180064; Fri, 11 Oct 2024 11:33:30 +0800 (CST) Received: from localhost.localdomain (10.50.165.33) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.1.2507.39; Fri, 11 Oct 2024 11:33:29 +0800 From: Chengwen Feng To: , CC: , Subject: [PATCH v2 2/7] app/test: extract basic token count testcase for kvargs Date: Fri, 11 Oct 2024 03:34:11 +0000 Message-ID: <20241011033416.10593-3-fengchengwen@huawei.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20241011033416.10593-1-fengchengwen@huawei.com> References: <20231103095325.47843-1-fengchengwen@huawei.com> <20241011033416.10593-1-fengchengwen@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.50.165.33] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To dggpeml500024.china.huawei.com (7.185.36.10) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The test_valid_kvargs() function is too long to understand, extract the basic token count tests as one stand-alone testcase. Signed-off-by: Chengwen Feng Acked-by: Stephen Hemminger --- app/test/test_kvargs.c | 120 ++++++++++++++++------------------------- 1 file changed, 45 insertions(+), 75 deletions(-) diff --git a/app/test/test_kvargs.c b/app/test/test_kvargs.c index 1c46fbcaab..a9808a6f87 100644 --- a/app/test/test_kvargs.c +++ b/app/test/test_kvargs.c @@ -35,25 +35,6 @@ static int check_handler(const char *key, const char *value, return 0; } -/* test parsing. */ -static int test_kvargs_parsing(const char *args, unsigned int n) -{ - struct rte_kvargs *kvlist; - - kvlist = rte_kvargs_parse(args, NULL); - if (kvlist == NULL) { - printf("rte_kvargs_parse() error: %s\n", args); - return -1; - } - if (kvlist->count != n) { - printf("invalid count value %d: %s\n", kvlist->count, args); - rte_kvargs_free(kvlist); - return -1; - } - rte_kvargs_free(kvlist); - return 0; -} - /* test a valid case */ static int test_valid_kvargs(void) { @@ -61,29 +42,6 @@ static int test_valid_kvargs(void) const char *args; const char *valid_keys_list[] = { "foo", "check", NULL }; const char **valid_keys; - static const struct { - unsigned int expected; - const char *input; - } valid_inputs[] = { - { 2, "foo=1,foo=" }, - { 2, "foo=1,foo=" }, - { 2, "foo=1,foo" }, - { 2, "foo=1,=2" }, - { 1, "foo=[1,2" }, - { 1, ",=" }, - { 1, "foo=[" }, - }; - unsigned int i; - - /* empty args is valid */ - args = ""; - valid_keys = NULL; - kvlist = rte_kvargs_parse(args, valid_keys); - if (kvlist == NULL) { - printf("rte_kvargs_parse() error"); - goto fail; - } - rte_kvargs_free(kvlist); /* first test without valid_keys */ args = "foo=1234,check=value0,check=value1"; @@ -127,14 +85,6 @@ static int test_valid_kvargs(void) rte_kvargs_free(kvlist); goto fail; } - /* count all entries */ - count = rte_kvargs_count(kvlist, NULL); - if (count != 3) { - printf("invalid count value %d after rte_kvargs_count(NULL)\n", - count); - rte_kvargs_free(kvlist); - goto fail; - } /* count all entries with key="nonexistent_key" */ count = rte_kvargs_count(kvlist, "nonexistent_key"); if (count != 0) { @@ -189,19 +139,6 @@ static int test_valid_kvargs(void) } rte_kvargs_free(kvlist); - /* test using empty string (it is valid) */ - args = ""; - kvlist = rte_kvargs_parse(args, NULL); - if (kvlist == NULL) { - printf("rte_kvargs_parse() error\n"); - goto fail; - } - if (rte_kvargs_count(kvlist, NULL) != 0) { - printf("invalid count value\n"); - goto fail; - } - rte_kvargs_free(kvlist); - /* test using empty elements (it is valid) */ args = "foo=1,,check=value2,,"; kvlist = rte_kvargs_parse(args, NULL); @@ -209,10 +146,6 @@ static int test_valid_kvargs(void) printf("rte_kvargs_parse() error\n"); goto fail; } - if (rte_kvargs_count(kvlist, NULL) != 2) { - printf("invalid count value\n"); - goto fail; - } if (rte_kvargs_count(kvlist, "foo") != 1) { printf("invalid count value for 'foo'\n"); goto fail; @@ -223,14 +156,6 @@ static int test_valid_kvargs(void) } rte_kvargs_free(kvlist); - valid_keys = NULL; - - for (i = 0; i < RTE_DIM(valid_inputs); ++i) { - args = valid_inputs[i].input; - if (test_kvargs_parsing(args, valid_inputs[i].expected)) - goto fail; - } - return 0; fail: @@ -245,6 +170,50 @@ static int test_valid_kvargs(void) return -1; } +static int +test_basic_token_count(void) +{ + static const struct { + unsigned int expected; + const char *input; + } valid_inputs[] = { + { 3, "foo=1,check=1,check=2" }, + { 3, "foo=1,check,check=2" }, + { 2, "foo=1,foo=" }, + { 2, "foo=1,foo=" }, + { 2, "foo=1,foo" }, + { 2, "foo=1,=2" }, + { 2, "foo=1,,foo=2,," }, + { 1, "foo=[1,2" }, + { 1, ",=" }, + { 1, "foo=[" }, + { 0, "" }, + }; + struct rte_kvargs *kvlist; + unsigned int count; + const char *args; + unsigned int i; + + for (i = 0; i < RTE_DIM(valid_inputs); i++) { + args = valid_inputs[i].input; + kvlist = rte_kvargs_parse(args, NULL); + if (kvlist == NULL) { + printf("rte_kvargs_parse() error: %s\n", args); + return -1; + } + count = rte_kvargs_count(kvlist, NULL); + if (count != valid_inputs[i].expected) { + printf("invalid count value %u (expected %u): %s\n", + count, valid_inputs[i].expected, args); + rte_kvargs_free(kvlist); + return -1; + } + rte_kvargs_free(kvlist); + } + + return 0; +} + /* test several error cases */ static int test_invalid_kvargs(void) { @@ -286,6 +255,7 @@ static struct unit_test_suite kvargs_test_suite = { .teardown = NULL, .unit_test_cases = { TEST_CASE(test_valid_kvargs), + TEST_CASE(test_basic_token_count), TEST_CASE(test_invalid_kvargs), TEST_CASES_END() /**< NULL terminate unit test array */ } -- 2.17.1