modified parse url funcation and added more url tests

Signed-off-by: Raghad Dahi <raghaddahi27@gmail.com>
This commit is contained in:
Raghad Dahi 2025-03-12 05:25:55 +02:00
parent 6eab4f9537
commit 8766e8974a
2 changed files with 38 additions and 1 deletions

View file

@ -105,6 +105,20 @@ UNIT_TEST(Url_Invalid)
TEST(!Url("").IsValid(), ());
TEST(!Url(":/").IsValid(), ());
TEST(!Url("//").IsValid(), ());
TEST(!Url("http://").IsValid(), ());
// Ensure URLs with invalid hosts (e.g., special characters) are invalid.
TEST(!Url("https://@&€:1;asf").IsValid(), ());
//Ensure URLs with invalid schemes (e.g., ftp) are invalid.
TEST(!Url("ftp://example.com").IsValid(), ());
//Ensure URLs with invalid host formats (e.g., starting with a hyphen) are invalid.
TEST(!Url("http://-example.com").IsValid(), ());
// Ensure URLs with invalid host formats (e.g., double dots) are invalid.
TEST(!Url("http://example..com").IsValid(), ());
}
UNIT_TEST(Url_Valid)
@ -189,4 +203,4 @@ UNIT_TEST(UrlApi_Smoke)
TEST(url.GetParamValue("m"), ());
}
} // namespace url_tests
} // namespace url_tests

View file

@ -4,6 +4,7 @@
#include "base/assert.hpp"
#include "base/string_utils.hpp"
#include <regex>
namespace url
{
@ -30,6 +31,10 @@ bool Url::Parse(std::string const & url)
if (start == string::npos || start == 0)
return false;
m_scheme = url.substr(0, start);
//validate scheme
if(m_scheme != "http" && m_scheme != "https")
return false;
// Skip slashes.
start = url.find_first_not_of('/', start + 1);
@ -46,6 +51,12 @@ bool Url::Parse(std::string const & url)
else
m_host = url.substr(start, end - start);
//validate host
std::regex hostRegex("^([a-zA-Z0-9.-]+)(:[0-9]+)?$");
if (!std::regex_match(m_host, hostRegex))
{
return false;
}
// Get path.
if (url[end] == '/')
{
@ -64,6 +75,12 @@ bool Url::Parse(std::string const & url)
m_path = url.substr(start, end - start);
}
//validate path
if (m_path.empty())
{
return false;
}
// Parse query/fragment for keys and values.
for (start = end + 1; start < url.size();)
{
@ -88,6 +105,12 @@ bool Url::Parse(std::string const & url)
key = UrlDecode(url.substr(start, end - start));
}
// Validate key and value.
if (key.empty() || value.empty())
{
return false; // Invalid key or value
}
m_params.emplace_back(key, value);
}