1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
use std::collections::HashMap;
use std::io::Cursor;
#[cfg(target_family = "unix")]
use std::os::unix::prelude::PermissionsExt;
use std::path::{Path, PathBuf};
use std::process::Stdio;
use anyhow::{anyhow, Result};
use async_compression::tokio::bufread::GzipDecoder;
#[cfg(target_family = "unix")]
use command_group::AsyncCommandGroup;
use futures::future::join_all;
use log::warn;
use tokio::fs::{create_dir_all, metadata, File};
use tokio::process::{Child, Command};
use tokio_stream::StreamExt;
use tokio_tar::Archive;
const WASMCLOUD_GITHUB_RELEASE_URL: &str =
"https://github.com/wasmCloud/wasmcloud-otp/releases/download";
#[cfg(target_family = "unix")]
pub const WASMCLOUD_HOST_BIN: &str = "bin/wasmcloud_host";
#[cfg(target_family = "windows")]
pub const WASMCLOUD_HOST_BIN: &str = "bin\\wasmcloud_host.bat";
// Any version of wasmCloud under 0.57.0 uses distillery releases and is incompatible
const MINIMUM_WASMCLOUD_VERSION: &str = "0.57.0";
/// A wrapper around the [ensure_wasmcloud_for_os_arch_pair] function that uses the
/// architecture and operating system of the current host machine.
///
/// # Arguments
///
/// * `version` - Specifies the version of the binary to download in the form of `vX.Y.Z`. Must be at least v0.57.0.
/// * `dir` - Where to unpack the wasmCloud host contents into
/// # Examples
///
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
/// use wash_lib::start::ensure_wasmcloud;
/// let res = ensure_wasmcloud("v0.57.1", "/tmp/wasmcloud/").await;
/// assert!(res.is_ok());
/// assert!(res.unwrap().to_string_lossy() == "/tmp/wasmcloud/bin/wasmcloud_host".to_string());
/// # }
/// ```
pub async fn ensure_wasmcloud<P>(version: &str, dir: P) -> Result<PathBuf>
where
P: AsRef<Path>,
{
ensure_wasmcloud_for_os_arch_pair(std::env::consts::OS, std::env::consts::ARCH, version, dir)
.await
}
/// Ensures the `wasmcloud_host` application is installed, returning the path to the executable
/// early if it exists or downloading the specified GitHub release version of the wasmCloud host
/// from <https://github.com/wasmCloud/wasmcloud-otp/releases/> and unpacking the contents for a
/// specified OS/ARCH pair to a directory. Returns the path to the Elixir executable.
///
/// # Arguments
///
/// * `os` - Specifies the operating system of the binary to download, e.g. `linux`
/// * `arch` - Specifies the architecture of the binary to download, e.g. `amd64`
/// * `version` - Specifies the version of the binary to download in the form of `vX.Y.Z`. Must be
/// at least v0.57.0.
/// * `dir` - Where to unpack the wasmCloud host contents into. This should be the root level
/// directory where to store hosts. Each host will be stored in a directory maching its version
/// (e.g. "/tmp/wasmcloud/v0.59.0")
/// # Examples
///
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
/// use wash_lib::start::ensure_wasmcloud_for_os_arch_pair;
/// let os = std::env::consts::OS;
/// let arch = std::env::consts::ARCH;
/// let res = ensure_wasmcloud_for_os_arch_pair(os, arch, "v0.57.1", "/tmp/wasmcloud/").await;
/// assert!(res.is_ok());
/// assert!(res.unwrap().to_string_lossy() == "/tmp/wasmcloud/bin/wasmcloud_host".to_string());
/// # }
/// ```
pub async fn ensure_wasmcloud_for_os_arch_pair<P>(
os: &str,
arch: &str,
version: &str,
dir: P,
) -> Result<PathBuf>
where
P: AsRef<Path>,
{
check_version(version)?;
if let Some(dir) = find_wasmcloud_binary(&dir, version).await {
// wasmCloud already exists, return early
return Ok(dir);
}
// Download wasmCloud host tarball
download_wasmcloud_for_os_arch_pair(os, arch, version, dir).await
}
/// A wrapper around the [download_wasmcloud_for_os_arch_pair] function that uses the
/// architecture and operating system of the current host machine.
///
/// # Arguments
///
/// * `version` - Specifies the version of the binary to download in the form of `vX.Y.Z`
/// * `dir` - Where to unpack the wasmCloud host contents into. This should be the root level
/// directory where to store hosts. Each host will be stored in a directory maching its version
/// # Examples
///
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
/// use wash_lib::start::download_wasmcloud;
/// let res = download_wasmcloud("v0.57.1", "/tmp/wasmcloud/").await;
/// assert!(res.is_ok());
/// assert!(res.unwrap().to_string_lossy() == "/tmp/wasmcloud/bin/wasmcloud_host".to_string());
/// # }
/// ```
pub async fn download_wasmcloud<P>(version: &str, dir: P) -> Result<PathBuf>
where
P: AsRef<Path>,
{
download_wasmcloud_for_os_arch_pair(std::env::consts::OS, std::env::consts::ARCH, version, dir)
.await
}
/// Downloads the specified GitHub release version of the wasmCloud host from
/// <https://github.com/wasmCloud/wasmcloud-otp/releases/> and unpacking the contents for a
/// specified OS/ARCH pair to a directory. Returns the path to the Elixir executable.
///
/// # Arguments
///
/// * `os` - Specifies the operating system of the binary to download, e.g. `linux`
/// * `arch` - Specifies the architecture of the binary to download, e.g. `amd64`
/// * `version` - Specifies the version of the binary to download in the form of `vX.Y.Z`
/// * `dir` - Where to unpack the wasmCloud host contents into. This should be the root level
/// directory where to store hosts. Each host will be stored in a directory maching its version
/// # Examples
///
/// ```no_run
/// # #[tokio::main]
/// # async fn main() {
/// use wash_lib::start::download_wasmcloud_for_os_arch_pair;
/// let os = std::env::consts::OS;
/// let arch = std::env::consts::ARCH;
/// let res = download_wasmcloud_for_os_arch_pair(os, arch, "v0.57.1", "/tmp/wasmcloud/").await;
/// assert!(res.is_ok());
/// assert!(res.unwrap().to_string_lossy() == "/tmp/wasmcloud/bin/wasmcloud_host".to_string());
/// # }
/// ```
pub async fn download_wasmcloud_for_os_arch_pair<P>(
os: &str,
arch: &str,
version: &str,
dir: P,
) -> Result<PathBuf>
where
P: AsRef<Path>,
{
let url = wasmcloud_url(os, arch, version);
let body = reqwest::get(url).await?.bytes().await?;
let cursor = Cursor::new(body);
let mut wasmcloud_host = Archive::new(Box::new(GzipDecoder::new(cursor)));
let mut entries = wasmcloud_host.entries()?;
let version_dir = dir.as_ref().join(version);
// Copy all of the files out of the tarball into the bin directory
while let Some(res) = entries.next().await {
let mut entry = res.map_err(|_e| {
anyhow!(
"Failed to retrieve file from archive, ensure wasmcloud_host version '{}' exists",
version
)
})?;
if let Ok(path) = entry.path() {
let file_path = version_dir.join(path);
if let Some(parent_folder) = file_path.parent() {
// If the user doesn't have permission to create files in the provided directory,
// this will bubble the error up noting permission denied
create_dir_all(parent_folder).await?;
}
if let Ok(mut wasmcloud_file) = File::create(&file_path).await {
// This isn't an `if let` to avoid a Windows lint warning
if file_path.file_name().is_some() {
// Set permissions of executable files and binaries to allow executing
#[cfg(target_family = "unix")]
{
let file_name = file_path.file_name().unwrap().to_string_lossy();
if file_path.to_string_lossy().contains("bin")
|| file_name.contains(".sh")
|| file_name.contains(".bat")
|| file_name.eq("iex")
|| file_name.eq("elixir")
|| file_name.eq("wasmcloud_host")
|| file_name.eq("mac_listener")
{
let mut perms = wasmcloud_file.metadata().await?.permissions();
perms.set_mode(0o755);
wasmcloud_file.set_permissions(perms).await?;
}
}
}
tokio::io::copy(&mut entry, &mut wasmcloud_file).await?;
}
}
}
// Return success if wasmCloud components exist, error otherwise
match find_wasmcloud_binary(&dir, version).await {
Some(path) => Ok(path),
None => Err(anyhow!(
"wasmCloud was not installed successfully, please see logs"
)),
}
}
/// Helper function to start a wasmCloud host given the path to the elixir release script
/// /// # Arguments
///
/// * `bin_path` - Path to the wasmcloud_host script to execute
/// * `stdout` - Specify where wasmCloud stdout logs should be written to. Logs can be written to stdout by the erlang process
/// * `stderr` - Specify where wasmCloud stderr logs should be written to. Logs are written to stderr that are generated by wasmCloud
/// * `env_vars` - Environment variables to pass to the host, see <https://wasmcloud.dev/reference/host-runtime/host_configure/#supported-configuration-variables> for details
pub async fn start_wasmcloud_host<P, T, S>(
bin_path: P,
stdout: T,
stderr: S,
env_vars: HashMap<String, String>,
) -> Result<Child>
where
P: AsRef<Path>,
T: Into<Stdio>,
S: Into<Stdio>,
{
// If we can connect to the local port, a wasmCloud host won't be able to listen on that port
let port = env_vars
.get("WASMCLOUD_DASHBOARD_PORT")
.cloned()
.unwrap_or_else(|| "4000".to_string());
if tokio::net::TcpStream::connect(format!("localhost:{port}"))
.await
.is_ok()
{
return Err(anyhow!(
"Could not start wasmCloud, a process is already listening on localhost:{}",
port
));
}
#[cfg(target_family = "unix")]
if let Ok(output) = Command::new(bin_path.as_ref())
.envs(&env_vars)
.arg("pid")
.output()
.await
{
// Stderr will include :nodedown if no other host is running, otherwise
// stdout will contain the PID
if !String::from_utf8_lossy(&output.stderr).contains(":nodedown") {
return Err(anyhow!(
"Another wasmCloud host is already running on this machine with PID {}",
String::from_utf8_lossy(&output.stdout)
));
}
}
// Constructing this object in one step results in a temporary value that's dropped
let mut cmd = Command::new(bin_path.as_ref());
let cmd = cmd
// wasmCloud host logs are sent to stderr as of https://github.com/wasmCloud/wasmcloud-otp/pull/418
.stderr(stderr)
.stdout(stdout)
.stdin(Stdio::null())
.envs(&env_vars)
.arg("start");
#[cfg(target_family = "unix")]
{
Ok(cmd.group_spawn()?.into_inner())
}
#[cfg(target_family = "windows")]
{
Ok(cmd.spawn()?)
}
}
/// Helper function to indicate if the wasmCloud host tarball is successfully
/// installed in a directory. Returns the path to the binary if it exists
pub async fn find_wasmcloud_binary<P>(dir: P, version: &str) -> Option<PathBuf>
where
P: AsRef<Path>,
{
let versioned_dir = dir.as_ref().join(version);
let bin_dir = versioned_dir.join("bin");
let bin_file = versioned_dir.join(WASMCLOUD_HOST_BIN);
let lib_dir = versioned_dir.join("lib");
let releases_dir = versioned_dir.join("releases");
let file_checks = vec![
metadata(versioned_dir),
metadata(bin_dir),
metadata(bin_file.clone()),
metadata(lib_dir),
metadata(releases_dir),
];
join_all(file_checks)
.await
.iter()
.all(|i| i.is_ok())
.then_some(bin_file)
}
/// Helper function to determine the wasmCloud host release path given an os/arch and version
fn wasmcloud_url(os: &str, arch: &str, version: &str) -> String {
format!("{WASMCLOUD_GITHUB_RELEASE_URL}/{version}/{arch}-{os}.tar.gz")
}
/// Helper function to ensure the version of wasmCloud is above the minimum
/// supported version (v0.57.0) that runs mix releases
fn check_version(version: &str) -> Result<()> {
let version_req = semver::VersionReq::parse(&format!(">={MINIMUM_WASMCLOUD_VERSION}"))?;
match semver::Version::parse(version.trim_start_matches('v')) {
Ok(parsed_version) if !parsed_version.pre.is_empty() => {
warn!("Using prerelease version {} of wasmCloud", version);
Ok(())
}
Ok(parsed_version) if !version_req.matches(&parsed_version) => Err(anyhow!(
"wasmCloud version {} is earlier than the minimum supported version of v{}",
version,
MINIMUM_WASMCLOUD_VERSION
)),
Ok(_ver) => Ok(()),
Err(_parse_err) => {
log::warn!(
"Failed to parse wasmCloud version as a semantic version, download may fail"
);
Ok(())
}
}
}
#[cfg(test)]
mod test {
use super::{check_version, ensure_wasmcloud, wasmcloud_url};
use crate::start::{
ensure_nats_server, ensure_wasmcloud_for_os_arch_pair, find_wasmcloud_binary,
is_nats_installed, start_nats_server, start_wasmcloud_host, NatsConfig, NATS_SERVER_BINARY,
};
use reqwest::StatusCode;
use std::{collections::HashMap, env::temp_dir};
use tokio::fs::{create_dir_all, remove_dir_all};
const WASMCLOUD_VERSION: &str = "v0.60.0";
#[tokio::test]
async fn can_request_supported_wasmcloud_urls() {
let host_tarballs = vec![
wasmcloud_url("linux", "aarch64", WASMCLOUD_VERSION),
wasmcloud_url("linux", "x86_64", WASMCLOUD_VERSION),
wasmcloud_url("macos", "aarch64", WASMCLOUD_VERSION),
wasmcloud_url("macos", "x86_64", WASMCLOUD_VERSION),
wasmcloud_url("windows", "x86_64", WASMCLOUD_VERSION),
];
for tarball_url in host_tarballs {
assert_eq!(
reqwest::get(tarball_url).await.unwrap().status(),
StatusCode::OK
);
}
}
#[cfg(target_family = "unix")]
use std::os::unix::prelude::PermissionsExt;
#[tokio::test]
async fn can_download_wasmcloud_tarball() {
let download_dir = temp_dir().join("can_download_wasmcloud_tarball");
let res =
ensure_wasmcloud_for_os_arch_pair("macos", "aarch64", WASMCLOUD_VERSION, &download_dir)
.await
.expect("Should be able to download tarball");
// Make sure we can find the binary and that it matches the path we got back from ensure
assert_eq!(
find_wasmcloud_binary(&download_dir, WASMCLOUD_VERSION)
.await
.expect("Should have found installed wasmcloud"),
res
);
// Permit execution of file-watching on macos.
#[cfg(target_family = "unix")]
{
let mut fs_dir: Option<std::path::PathBuf> = None;
let mut entries = tokio::fs::read_dir(download_dir.join(WASMCLOUD_VERSION).join("lib"))
.await
.unwrap();
while let Some(entry) = entries.next_entry().await.unwrap() {
let dir = entry.path();
let file_name = dir.file_name().unwrap().to_string_lossy();
if file_name.contains("file_system") {
fs_dir = Some(dir);
break;
}
}
let path = fs_dir.unwrap().join("priv/mac_listener");
let file = tokio::fs::File::open(path).await.unwrap();
let metadata = file.metadata().await.unwrap();
let perms = metadata.permissions();
assert_eq!(perms.mode(), 0o100755);
}
let _ = remove_dir_all(download_dir).await;
}
#[tokio::test]
async fn can_handle_missing_wasmcloud_version() {
let download_dir = temp_dir().join("can_handle_missing_wasmcloud_version");
let res = ensure_wasmcloud("v010233.123.3.4", &download_dir).await;
assert!(res.is_err());
let _ = remove_dir_all(download_dir).await;
}
#[tokio::test]
async fn can_download_different_versions() {
let download_dir = temp_dir().join("can_download_different_versions");
ensure_wasmcloud_for_os_arch_pair("macos", "aarch64", WASMCLOUD_VERSION, &download_dir)
.await
.expect("Should be able to download host");
assert!(
find_wasmcloud_binary(&download_dir, WASMCLOUD_VERSION)
.await
.is_some(),
"wasmCloud should be installed"
);
ensure_wasmcloud_for_os_arch_pair("macos", "aarch64", "v0.59.0", &download_dir)
.await
.expect("Should be able to download host");
assert!(
find_wasmcloud_binary(&download_dir, "v0.59.0")
.await
.is_some(),
"wasmCloud should be installed"
);
// Just to triple check, make sure the paths actually exist
assert!(
download_dir.join(WASMCLOUD_VERSION).exists(),
"Directory should exist"
);
assert!(
download_dir.join("v0.59.0").exists(),
"Directory should exist"
);
let _ = remove_dir_all(download_dir).await;
}
const NATS_SERVER_VERSION: &str = "v2.8.4";
const WASMCLOUD_HOST_VERSION: &str = "v0.61.0";
#[tokio::test]
async fn can_download_and_start_wasmcloud() -> anyhow::Result<()> {
#[cfg(target_family = "unix")]
let install_dir = temp_dir().join("can_download_and_start_wasmcloud");
// This is a very specific hack to download wasmCloud to the same _drive_ on Windows
// Turns out the mix release .bat file can't support executing an application that's installed
// on a different drive (e.g. running wasmCloud on the D: drive from the C: drive), which is what
// GitHub Actions does by default (runs in the D: drive, creates temp dir in the C: drive)
#[cfg(target_family = "windows")]
let install_dir = std::env::current_dir()?.join("can_download_and_start_wasmcloud");
let _ = remove_dir_all(&install_dir).await;
create_dir_all(&install_dir).await?;
assert!(find_wasmcloud_binary(&install_dir, WASMCLOUD_HOST_VERSION)
.await
.is_none());
// Install and start NATS server for this test
let nats_port = 10004;
assert!(ensure_nats_server(NATS_SERVER_VERSION, &install_dir)
.await
.is_ok());
assert!(is_nats_installed(&install_dir).await);
let config = NatsConfig::new_standalone("127.0.0.1", nats_port, None);
let mut nats_child = start_nats_server(
install_dir.join(NATS_SERVER_BINARY),
std::process::Stdio::null(),
config,
)
.await
.expect("Unable to start nats process");
let wasmcloud_binary = ensure_wasmcloud(WASMCLOUD_HOST_VERSION, &install_dir)
.await
.expect("Unable to ensure wasmcloud");
let stderr_log_path = wasmcloud_binary
.parent()
.unwrap()
.parent()
.unwrap()
.join("wasmcloud_stderr.log");
let stderr_log_file = tokio::fs::File::create(&stderr_log_path)
.await?
.into_std()
.await;
let stdout_log_path = wasmcloud_binary
.parent()
.unwrap()
.parent()
.unwrap()
.join("wasmcloud_stdout.log");
let stdout_log_file = tokio::fs::File::create(&stdout_log_path)
.await?
.into_std()
.await;
let mut host_env = HashMap::new();
host_env.insert("WASMCLOUD_RPC_PORT".to_string(), nats_port.to_string());
host_env.insert("WASMCLOUD_CTL_PORT".to_string(), nats_port.to_string());
host_env.insert("WASMCLOUD_PROV_RPC_PORT".to_string(), nats_port.to_string());
let mut host_child = start_wasmcloud_host(
&wasmcloud_binary,
stdout_log_file,
stderr_log_file,
host_env,
)
.await
.expect("Unable to start wasmcloud host");
// Give wasmCloud max 15 seconds to start up
for _ in 0..14 {
let log_contents = tokio::fs::read_to_string(&stderr_log_path).await?;
if log_contents.is_empty() {
println!("wasmCloud hasn't started up yet, waiting 1 second");
tokio::time::sleep(std::time::Duration::from_millis(1000)).await;
} else {
// Give just a little bit of time for the startup logs to flow in, re-read logs
tokio::time::sleep(std::time::Duration::from_millis(5000)).await;
let log_contents = tokio::fs::read_to_string(&stderr_log_path).await?;
assert!(log_contents
.contains("connect to control interface NATS without authentication"));
assert!(log_contents.contains("connect to lattice rpc NATS without authentication"));
assert!(log_contents.contains("Started wasmCloud OTP Host Runtime"));
break;
}
}
// Should fail because the port is already in use by another host
let mut host_env = HashMap::new();
host_env.insert("WASMCLOUD_RPC_PORT".to_string(), nats_port.to_string());
host_env.insert("WASMCLOUD_CTL_PORT".to_string(), nats_port.to_string());
host_env.insert("WASMCLOUD_PROV_RPC_PORT".to_string(), nats_port.to_string());
start_wasmcloud_host(
&wasmcloud_binary,
std::process::Stdio::null(),
std::process::Stdio::null(),
host_env,
)
.await
.expect_err("Starting a second process should error");
// Should fail because another erlang wasmcloud_host node is running
#[cfg(target_family = "unix")]
// Windows is unable to properly check running erlang nodes with `pid`
{
let mut host_env = HashMap::new();
host_env.insert("WASMCLOUD_DASHBOARD_PORT".to_string(), "4002".to_string());
host_env.insert("WASMCLOUD_RPC_PORT".to_string(), nats_port.to_string());
host_env.insert("WASMCLOUD_CTL_PORT".to_string(), nats_port.to_string());
host_env.insert("WASMCLOUD_PROV_RPC_PORT".to_string(), nats_port.to_string());
let child_res = start_wasmcloud_host(
&wasmcloud_binary,
std::process::Stdio::null(),
std::process::Stdio::null(),
host_env,
)
.await;
assert!(child_res.is_err());
}
host_child.kill().await?;
nats_child.kill().await?;
let _ = remove_dir_all(install_dir).await;
Ok(())
}
#[tokio::test]
async fn can_properly_deny_distillery_release_hosts() -> anyhow::Result<()> {
// Ensure we allow versions >= 0.57.0
assert!(check_version("v1.56.0").is_ok());
assert!(check_version("v0.57.0").is_ok());
assert!(check_version("v0.57.1").is_ok());
assert!(check_version("v0.57.2").is_ok());
assert!(check_version("v0.58.0").is_ok());
assert!(check_version("v0.100.0").is_ok());
assert!(check_version("v0.203.0").is_ok());
// Ensure we allow prerelease tags for testing
assert!(check_version("v0.60.0-rc.1").is_ok());
assert!(check_version("v0.60.0-alpha.23").is_ok());
assert!(check_version("v0.60.0-beta.0").is_ok());
// Ensure we deny versions < 0.57.0
assert!(check_version("v0.48.0").is_err());
assert!(check_version("v0.56.0").is_err());
assert!(check_version("v0.12.0").is_err());
assert!(check_version("v0.56.999").is_err());
if let Err(e) = check_version("v0.56.0") {
assert_eq!(e.to_string(), "wasmCloud version v0.56.0 is earlier than the minimum supported version of v0.57.0");
} else {
panic!("v0.56.0 should be before the minimum version")
}
// The check_version will allow bad semantic versions, rather than failing immediately
assert!(check_version("ungabunga").is_ok());
assert!(check_version("v11.1").is_ok());
Ok(())
}
}