From: hyunuk.tak Date: Wed, 15 Jun 2022 00:11:34 +0000 (+0900) Subject: Add new CAPIs and unittest to get/set configure for onmesh X-Git-Tag: accepted/tizen/unified/20220914.164046~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d49256180c2f3498eea7bb2e2f6942a75e45d72;p=platform%2Fcore%2Fapi%2Fthread.git Add new CAPIs and unittest to get/set configure for onmesh Change-Id: I161557579fc7a609b83e3a0d24e14c279a0e4dcf Signed-off-by: hyunuk.tak --- diff --git a/include/thread.h b/include/thread.h index 2949a0e..98b68ec 100644 --- a/include/thread.h +++ b/include/thread.h @@ -825,6 +825,44 @@ int thread_onmesh_prefix_set_dhcp(thread_onmesh_prefix_info_h onmesh_prefix, int thread_onmesh_prefix_get_dhcp(thread_onmesh_prefix_info_h onmesh_prefix, bool *dhcp); +/** + * @ingroup CAPI_NETWORK_THREAD_BORDERROUTER_MODULE + * @brief Set configure to on-mesh prefix info + * @since_tizen 7.0 + * + * @return 0 on success, otherwise a negative error value. + * @retval #THREAD_ERROR_NONE Successful + * @retval #THREAD_ERROR_NOT_INITIALIZED Not initialized + * @retval #THREAD_ERROR_OPERATION_FAILED Operation failed + * @retval #THREAD_ERROR_NOT_SUPPORTED Not supported + * + * @pre thread API must be initialized with thread_initialize(). + * + * @see thread_onmesh_prefix_create() + * @see thread_onmesh_prefix_destroy() + */ +int thread_onmesh_prefix_set_configure(thread_onmesh_prefix_info_h onmesh_prefix, + bool configure); + +/** + * @ingroup CAPI_NETWORK_THREAD_BORDERROUTER_MODULE + * @brief Get configure to on-mesh prefix info + * @since_tizen 7.0 + * + * @return 0 on success, otherwise a negative error value. + * @retval #THREAD_ERROR_NONE Successful + * @retval #THREAD_ERROR_NOT_INITIALIZED Not initialized + * @retval #THREAD_ERROR_OPERATION_FAILED Operation failed + * @retval #THREAD_ERROR_NOT_SUPPORTED Not supported + * + * @pre thread API must be initialized with thread_initialize(). + * + * @see thread_onmesh_prefix_create() + * @see thread_onmesh_prefix_destroy() + */ +int thread_onmesh_prefix_get_configure(thread_onmesh_prefix_info_h onmesh_prefix, + bool *configure); + /** * @ingroup CAPI_NETWORK_THREAD_BORDERROUTER_MODULE * @brief Add an on-mesh prefix to the network diff --git a/src/thread-br.c b/src/thread-br.c index eda713e..9afbdda 100644 --- a/src/thread-br.c +++ b/src/thread-br.c @@ -662,6 +662,38 @@ int thread_onmesh_prefix_get_dhcp(thread_onmesh_prefix_info_h onmesh_prefix, return THREAD_ERROR_NONE; } +int thread_onmesh_prefix_set_configure(thread_onmesh_prefix_info_h onmesh_prefix, + bool configure) +{ + FUNC_ENTRY; + THREAD_CHECK_SUPPORTED_FEATURE(THREAD_FEATURE_COMMON); + THREAD_CHECK_INIT_STATUS(); + THREAD_VALIDATE_INPUT_PARAMETER(onmesh_prefix); + + thread_onmesh_prefix_info_s *onmesh_prefix_info = + (thread_onmesh_prefix_info_s *)onmesh_prefix; + onmesh_prefix_info->configure = configure; + + FUNC_EXIT; + return THREAD_ERROR_NONE; +} + +int thread_onmesh_prefix_get_configure(thread_onmesh_prefix_info_h onmesh_prefix, + bool *configure) +{ + FUNC_ENTRY; + THREAD_CHECK_SUPPORTED_FEATURE(THREAD_FEATURE_COMMON); + THREAD_CHECK_INIT_STATUS(); + THREAD_VALIDATE_INPUT_PARAMETER(onmesh_prefix); + + thread_onmesh_prefix_info_s *onmesh_prefix_info = + (thread_onmesh_prefix_info_s *)onmesh_prefix; + *configure = onmesh_prefix_info->configure; + + FUNC_EXIT; + return THREAD_ERROR_NONE; +} + int thread_br_add_onmesh_prefix(thread_instance_h instance, const uint8_t *ipv6_prefix, int ipv6_prefix_len, int8_t preference, bool preferred, bool slaac, bool dhcp, bool configure, bool default_route, diff --git a/tests/unittest/thread-unittest-br.cpp b/tests/unittest/thread-unittest-br.cpp index 70c10ea..3e73ec6 100644 --- a/tests/unittest/thread-unittest-br.cpp +++ b/tests/unittest/thread-unittest-br.cpp @@ -458,6 +458,26 @@ TEST_F(ThreadBRTest, BRGetOnmeshDhcpErrorNone) thread_onmesh_prefix_get_dhcp(onmeshPrefix, &dhcp)); } +TEST_F(ThreadBRTest, BRSetOnmeshConfigureErrorNone) +{ + EXPECT_EQ(THREAD_ERROR_NONE, thread_enable(&instance)); + EXPECT_EQ(THREAD_ERROR_NONE, + thread_onmesh_prefix_create(instance, &onmeshPrefix)); + EXPECT_EQ(THREAD_ERROR_NONE, + thread_onmesh_prefix_set_configure(onmeshPrefix, configure)); +} + +TEST_F(ThreadBRTest, BRGetOnmeshConfigureErrorNone) +{ + EXPECT_EQ(THREAD_ERROR_NONE, thread_enable(&instance)); + EXPECT_EQ(THREAD_ERROR_NONE, + thread_onmesh_prefix_create(instance, &onmeshPrefix)); + EXPECT_EQ(THREAD_ERROR_NONE, + thread_onmesh_prefix_set_configure(onmeshPrefix, configure)); + EXPECT_EQ(THREAD_ERROR_NONE, + thread_onmesh_prefix_get_configure(onmeshPrefix, &configure)); +} + TEST_F(ThreadBRTest, BRAddOnmeshPrefixNotEnabled) { EXPECT_EQ(THREAD_ERROR_NONE, thread_enable(&instance));