4afa5d0d29
1. Fix the WiFi/BT coexist bug 2. Fix WPA2 enterprise example crash bug 3. Add size and version check for crypto type struct 4. Add MD5 check for crypto type header file
28 lines
726 B
C
28 lines
726 B
C
/*
|
|
Tests for the Wi-Fi
|
|
*/
|
|
#include "unity.h"
|
|
#include "esp_log.h"
|
|
#include "esp_wifi_internal.h"
|
|
|
|
static const char* TAG = "test_header_files_md5";
|
|
|
|
TEST_CASE("wifi os adapter MD5","[wifi]")
|
|
{
|
|
const char *test_wifi_os_funcs_md5 = WIFI_OS_ADAPTER_MD5;
|
|
|
|
ESP_LOGI(TAG, "test wifi os adapter MD5...");
|
|
TEST_ESP_OK(esp_wifi_internal_osi_funcs_md5_check(test_wifi_os_funcs_md5));
|
|
|
|
ESP_LOGI(TAG, "test passed...");
|
|
}
|
|
|
|
TEST_CASE("wifi crypto types MD5","[wifi]")
|
|
{
|
|
const char *test_wifi_crypto_funcs_md5 = WIFI_CRYPTO_MD5;
|
|
|
|
ESP_LOGI(TAG, "test wifi crypto adapter MD5...");
|
|
TEST_ESP_OK(esp_wifi_internal_crypto_funcs_md5_check(test_wifi_crypto_funcs_md5));
|
|
|
|
ESP_LOGI(TAG, "test passed...");
|
|
}
|