Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers coap_security_handlertest.cpp Source File

coap_security_handlertest.cpp

00001 /*
00002  * Copyright (c) 2015-2017, Arm Limited and affiliates.
00003  * SPDX-License-Identifier: Apache-2.0
00004  *
00005  * Licensed under the Apache License, Version 2.0 (the "License");
00006  * you may not use this file except in compliance with the License.
00007  * You may obtain a copy of the License at
00008  *
00009  *     http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 #include "CppUTest/TestHarness.h"
00018 #include "test_coap_security_handler.h"
00019 #include "mbedtls_stub.h"
00020 #include "nsdynmemLIB_stub.h"
00021 
00022 TEST_GROUP(coap_security_handler)
00023 {
00024     void setup() {
00025         nsdynmemlib_stub.returnCounter = 0;
00026         mbedtls_stub.useCounter = false;
00027     }
00028 
00029     void teardown() {
00030     }
00031 };
00032 
00033 TEST(coap_security_handler, test_thread_security_create)
00034 {
00035     CHECK(test_thread_security_create());
00036 }
00037 
00038 TEST(coap_security_handler, test_thread_security_destroy)
00039 {
00040     CHECK(test_thread_security_destroy());
00041 }
00042 
00043 TEST(coap_security_handler, test_coap_security_handler_connect)
00044 {
00045     CHECK(test_coap_security_handler_connect());
00046 }
00047 
00048 TEST(coap_security_handler, test_coap_security_handler_continue_connecting)
00049 {
00050     CHECK(test_coap_security_handler_continue_connecting());
00051 }
00052 
00053 TEST(coap_security_handler, test_coap_security_handler_send_message)
00054 {
00055     CHECK(test_coap_security_handler_send_message());
00056 }
00057 
00058 TEST(coap_security_handler, test_thread_security_send_close_alert)
00059 {
00060     CHECK(test_thread_security_send_close_alert());
00061 }
00062 
00063 TEST(coap_security_handler, test_coap_security_handler_read)
00064 {
00065     CHECK(test_coap_security_handler_read());
00066 }