Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow both tcp addresses and http urls as inputs #1

Merged
merged 3 commits into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ log = { version = "0.4.20", features = ["kv_unstable"] }
structopt = "0.3"
env_logger = "0.11.3"
thiserror = "1.0.59"
url = "2.5.0"

[dev-dependencies]
assert_cmd = "2.0.12"
3 changes: 2 additions & 1 deletion examples/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use wait_for_rs::WaitService;

fn main() {
let urls = ["google.com:443".to_string(), "github.com:443".to_string()].to_vec();
// let urls = ["google.com:443".to_string(), "github.com:443".to_string()].to_vec();
let urls = ["google.com:443".to_string()].to_vec();
let timeout = 10;

let wait_service = WaitService::new(urls, timeout).unwrap();
Expand Down
10 changes: 10 additions & 0 deletions src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::net::AddrParseError;

use thiserror::Error;

/// Custom error type for the WaitService.
Expand All @@ -11,6 +13,14 @@ pub enum WaitServiceError {
#[error("Urls are empty")]
UrlsEmpty,

/// Url parse error.
#[error("{}", _0)]
Url(#[from] url::ParseError),

/// Address parse error.
#[error("{}", _0)]
Address(#[from] AddrParseError),

/// IO error.
#[error("{}", _0)]
Io(#[from] std::io::Error),
Expand Down
73 changes: 69 additions & 4 deletions src/wait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ use std::{
thread::{sleep, spawn},
time::{Duration, Instant},
};
use url::Url;

/// The default interval in milliseconds between pings for the same url
const DEFAULT_INTERVAL: u64 = 500;
/// The default connection timeout in seconds
const DEAFULT_CONNECTION_TIMEOUT: u64 = 1;
/// The default port for https to use when port is not provided
const DEFAULT_HTTPS_PORT: u16 = 443;
/// The default port for http to use when port is not provided
const DEFAULT_HTTP_PORT: u16 = 80;

pub struct WaitService {
addresses: HashMap<SocketAddr, String>,
Expand Down Expand Up @@ -64,12 +69,72 @@ impl WaitService {
}

fn resolve_address(url: &str) -> Result<SocketAddr> {
match url.to_socket_addrs() {
Ok(mut addr) => {
return Ok(addr.next().unwrap());
// Try parsing the input as a URL
if let Ok(parsed_url) = Url::parse(url) {
if parsed_url.has_host() {
// Check if the URL includes a port
let port = match parsed_url.port() {
Some(port) => port,
None => get_default_port(&parsed_url)?,
};

let host = parsed_url
.host_str()
.ok_or(WaitServiceError::UrlNotParsed)?;

// Construct the address
let addr = socket_addr_from_host_and_port(&host, port)?;

return Ok(addr);
} else {
// If there is no host then it is only domain
let addr = socket_addr_from_domain(url)?;
return Ok(addr);
}
Err(e) => return Err(WaitServiceError::Io(e)),
}
let addr = socket_addr_from_tcp(url)?;

return Ok(addr);
}

/// Default port based on scheme
fn get_default_port(url: &Url) -> Result<u16> {
match url.scheme() {
"https" => Ok(DEFAULT_HTTPS_PORT),
"http" => Ok(DEFAULT_HTTP_PORT),
_ => return Err(WaitServiceError::UrlNotParsed),
}
}

/// Construct a `SocketAddr` from a host and a port
fn socket_addr_from_host_and_port(host: &str, port: u16) -> Result<SocketAddr> {
let addr = (host, port)
.to_socket_addrs()
.map_err(|e| WaitServiceError::Io(e))?
.next()
.ok_or(WaitServiceError::UrlNotParsed)?;

Ok(addr)
}

/// Construct a `SocketAddr` from a url
fn socket_addr_from_domain(url: &str) -> Result<SocketAddr> {
let addr = url
.to_socket_addrs()
.map_err(|e| WaitServiceError::Io(e))?
.next()
.ok_or(WaitServiceError::UrlNotParsed)?;

Ok(addr)
}

/// Construct a `SocketAddr` from a tcp address
fn socket_addr_from_tcp(address: &str) -> Result<SocketAddr> {
let addr = address
.parse::<SocketAddr>()
.map_err(|e| WaitServiceError::Address(e))?;

Ok(addr)
}

fn wait_for_tcp_socket(
Expand Down
13 changes: 13 additions & 0 deletions tests/wait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,16 @@ fn multiple_addresses_with_timeout_works() {
drop(server1);
drop(server2);
}

#[test]
fn one_address_one_https_works() {
let server1 = utils::TestServer::new(4000, Duration::from_millis(10));

Command::cargo_bin("wait-for-rs")
.unwrap()
.args(&["--urls", "127.0.0.1:4000", "https://google.com"])
.assert()
.success();

drop(server1);
}
Loading