2021-05-31 08:06:09 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2018-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2019-01-21 06:08:24 -05:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <esp_system.h>
|
|
|
|
#include <esp_http_client.h>
|
|
|
|
|
|
|
|
#include "unity.h"
|
|
|
|
#include "test_utils.h"
|
|
|
|
|
2019-04-08 12:15:04 -04:00
|
|
|
#define HOST "httpbin.org"
|
|
|
|
#define USERNAME "user"
|
|
|
|
#define PASSWORD "challenge"
|
|
|
|
|
2019-04-12 08:14:58 -04:00
|
|
|
TEST_CASE("Test in common case: Only URL and hostname are specified.", "[ESP HTTP CLIENT]")
|
2019-01-21 06:08:24 -05:00
|
|
|
{
|
|
|
|
esp_http_client_config_t config_incorrect = {0};
|
|
|
|
|
|
|
|
test_case_uses_tcpip();
|
|
|
|
|
|
|
|
esp_http_client_handle_t client = esp_http_client_init(&config_incorrect);
|
|
|
|
TEST_ASSERT(client == NULL);
|
|
|
|
|
|
|
|
esp_http_client_config_t config_with_url = {
|
|
|
|
.url = "http://httpbin.org/get",
|
|
|
|
};
|
|
|
|
client = esp_http_client_init(&config_with_url);
|
|
|
|
TEST_ASSERT(client != NULL);
|
|
|
|
TEST_ASSERT(esp_http_client_cleanup(client) == ESP_OK);
|
|
|
|
|
|
|
|
|
|
|
|
esp_http_client_config_t config_with_hostname_path = {
|
2019-04-08 12:15:04 -04:00
|
|
|
.host = HOST,
|
2019-01-21 06:08:24 -05:00
|
|
|
.path = "/get",
|
|
|
|
};
|
|
|
|
client = esp_http_client_init(&config_with_hostname_path);
|
|
|
|
TEST_ASSERT(client != NULL);
|
|
|
|
TEST_ASSERT(esp_http_client_cleanup(client) == ESP_OK);
|
|
|
|
}
|
2019-04-08 12:15:04 -04:00
|
|
|
|
2019-04-12 08:14:58 -04:00
|
|
|
TEST_CASE("Get username and password after initialization.", "[ESP HTTP CLIENT]")
|
2019-04-08 12:15:04 -04:00
|
|
|
{
|
|
|
|
esp_http_client_config_t config_with_auth = {
|
|
|
|
.host = HOST,
|
|
|
|
.path = "/",
|
|
|
|
.username = USERNAME,
|
|
|
|
.password = PASSWORD
|
|
|
|
};
|
|
|
|
char *value = NULL;
|
|
|
|
esp_http_client_handle_t client = esp_http_client_init(&config_with_auth);
|
|
|
|
TEST_ASSERT_NOT_NULL(client);
|
|
|
|
// Test with username
|
|
|
|
esp_err_t r = esp_http_client_get_username(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
|
|
|
TEST_ASSERT_EQUAL_STRING(USERNAME, value);
|
|
|
|
// Test with password
|
|
|
|
value = NULL;
|
|
|
|
r = esp_http_client_get_password(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
|
|
|
TEST_ASSERT_EQUAL_STRING(PASSWORD, value);
|
|
|
|
esp_http_client_cleanup(client);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case to test that, the esp_http_client_set_url won't drop username and password
|
|
|
|
* when pass a path "/abc" for url.
|
|
|
|
**/
|
2019-04-12 08:14:58 -04:00
|
|
|
TEST_CASE("Username is unmodified when we change to new path", "[ESP HTTP CLIENT]")
|
2019-04-08 12:15:04 -04:00
|
|
|
{
|
|
|
|
esp_http_client_config_t config_with_auth = {
|
|
|
|
.host = HOST,
|
|
|
|
.path = "/",
|
|
|
|
.username = USERNAME,
|
|
|
|
.password = PASSWORD
|
|
|
|
};
|
|
|
|
char *value = NULL;
|
|
|
|
esp_http_client_handle_t client = esp_http_client_init(&config_with_auth);
|
|
|
|
TEST_ASSERT_NOT_NULL(client);
|
|
|
|
esp_err_t r = esp_http_client_get_username(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
|
|
|
TEST_ASSERT_EQUAL_STRING(USERNAME, value);
|
|
|
|
esp_http_client_set_url(client, "/something-else/");
|
|
|
|
r = esp_http_client_get_username(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
|
|
|
TEST_ASSERT_EQUAL_STRING(USERNAME, value);
|
|
|
|
esp_http_client_cleanup(client);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-08-05 04:57:48 -04:00
|
|
|
* Test case to test that, the esp_http_client_set_url do not reset the auth credentials
|
2020-11-10 02:40:01 -05:00
|
|
|
* Explicit APIs esp_http_client_set_username and esp_http_client_set_password are used to change
|
2019-08-05 04:57:48 -04:00
|
|
|
* the auth credentials
|
2019-04-08 12:15:04 -04:00
|
|
|
**/
|
2019-08-05 04:57:48 -04:00
|
|
|
TEST_CASE("Username and password will not reset if new absolute URL doesnot specify auth credentials.", "[ESP HTTP CLIENT]")
|
2019-04-08 12:15:04 -04:00
|
|
|
{
|
|
|
|
esp_http_client_config_t config_with_auth = {
|
|
|
|
.host = HOST,
|
|
|
|
.path = "/",
|
|
|
|
.username = USERNAME,
|
|
|
|
.password = PASSWORD
|
|
|
|
};
|
|
|
|
char *value = NULL;
|
|
|
|
esp_http_client_handle_t client = esp_http_client_init(&config_with_auth);
|
|
|
|
TEST_ASSERT_NOT_NULL(client);
|
|
|
|
esp_err_t r = esp_http_client_get_username(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
|
|
|
TEST_ASSERT_EQUAL_STRING(USERNAME, value);
|
|
|
|
esp_http_client_set_url(client, "http://" HOST "/get");
|
2019-08-05 04:57:48 -04:00
|
|
|
esp_http_client_set_username(client, value);
|
2020-12-29 23:33:51 -05:00
|
|
|
// esp_http_client_set_username sets new username and thus invalidates the original one
|
|
|
|
// which we still reference in the local variable `value` (better forget it)
|
|
|
|
value = NULL;
|
|
|
|
esp_http_client_set_password(client, USERNAME);
|
2019-08-05 04:57:48 -04:00
|
|
|
//checks if username is set or not
|
2019-04-08 12:15:04 -04:00
|
|
|
r = esp_http_client_get_username(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
2019-08-05 04:57:48 -04:00
|
|
|
//If username is set then value should not be NULL
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
|
|
|
//checks if password is set or not
|
|
|
|
r = esp_http_client_get_password(client, &value);
|
|
|
|
TEST_ASSERT_EQUAL(ESP_OK, r);
|
|
|
|
//If password is set then value should not be NULL
|
|
|
|
TEST_ASSERT_NOT_NULL(value);
|
2019-04-08 12:15:04 -04:00
|
|
|
esp_http_client_cleanup(client);
|
|
|
|
}
|
2021-12-02 01:15:43 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case to verify that, esp_http_client_init() should return NULL if configuration has url with empty hostname.
|
|
|
|
**/
|
|
|
|
TEST_CASE("esp_http_client_init() should return NULL if configured with wrong url", "[ESP HTTP CLIENT]")
|
|
|
|
{
|
|
|
|
esp_http_client_config_t config = {
|
|
|
|
.url = "//httpbin.org/post",
|
|
|
|
};
|
|
|
|
esp_http_client_handle_t client = esp_http_client_init(&config);
|
|
|
|
TEST_ASSERT_NULL(client);
|
|
|
|
esp_http_client_cleanup(client);
|
|
|
|
}
|