Gleb Klochkov / Mbed OS Climatcontroll_Main

Dependencies:   esp8266-driver

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     {
00026         nsdynmemlib_stub.returnCounter = 0;
00027         mbedtls_stub.useCounter = false;
00028     }
00029 
00030     void teardown()
00031     {
00032     }
00033 };
00034 
00035 TEST(coap_security_handler, test_thread_security_create)
00036 {
00037     CHECK(test_thread_security_create());
00038 }
00039 
00040 TEST(coap_security_handler, test_thread_security_destroy)
00041 {
00042     CHECK(test_thread_security_destroy());
00043 }
00044 
00045 TEST(coap_security_handler, test_coap_security_handler_connect)
00046 {
00047     CHECK(test_coap_security_handler_connect());
00048 }
00049 
00050 TEST(coap_security_handler, test_coap_security_handler_continue_connecting)
00051 {
00052     CHECK(test_coap_security_handler_continue_connecting());
00053 }
00054 
00055 TEST(coap_security_handler, test_coap_security_handler_send_message)
00056 {
00057     CHECK(test_coap_security_handler_send_message());
00058 }
00059 
00060 TEST(coap_security_handler, test_thread_security_send_close_alert)
00061 {
00062     CHECK(test_thread_security_send_close_alert());
00063 }
00064 
00065 TEST(coap_security_handler, test_coap_security_handler_read)
00066 {
00067     CHECK(test_coap_security_handler_read());
00068 }