--- /dev/null
+/*
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gtest/gtest.h>
+
+#include "thread.h"
+
+class ThreadJoinerTest : public ::testing::Test
+{
+public:
+ const char *pskd = "Passkey";
+ const char *provUrl = "ProvUrl";
+ const char *vendorName = "VendorName";
+ const char *vendorModel = "VendorModel";
+ const char *vendorSwVersion = "VendorSwVersion";
+ const char *vendorData = "VendorData";
+
+ thread_instance_h instance;
+
+public:
+ static void joinerStartCallback(int result, void* user_data) {};
+
+protected:
+ void SetUp() override
+ {
+ thread_initialize();
+ instance = nullptr;
+ }
+
+ void TearDown() override
+ {
+ thread_deinitialize();
+ }
+};
+
+TEST_F(ThreadJoinerTest, JoinerStartNotInitialized)
+{
+ EXPECT_EQ(THREAD_ERROR_NONE, thread_deinitialize());
+ EXPECT_EQ(THREAD_ERROR_NOT_INITIALIZED,
+ thread_joiner_start(instance, pskd, provUrl,
+ vendorName, vendorModel, vendorSwVersion,
+ vendorData, joinerStartCallback, nullptr));
+}
+
+TEST_F(ThreadJoinerTest, JoinerStartInvalidParameter)
+{
+ EXPECT_EQ(THREAD_ERROR_INVALID_PARAMETER,
+ thread_joiner_start(instance, pskd, provUrl,
+ vendorName, vendorModel, vendorSwVersion,
+ vendorData, joinerStartCallback, nullptr));
+}
+
+TEST_F(ThreadJoinerTest, JoinerStartAttachErrorNone)
+{
+ EXPECT_EQ(THREAD_ERROR_NONE, thread_enable(&instance));
+ EXPECT_EQ(THREAD_ERROR_NONE,
+ thread_joiner_start(instance, pskd, provUrl,
+ vendorName, vendorModel, vendorSwVersion,
+ vendorData, joinerStartCallback, nullptr));
+}
\ No newline at end of file