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
|
//! Tests for sccache args.
//!
//! Any copyright is dedicated to the Public Domain.
//! http://creativecommons.org/publicdomain/zero/1.0/
use anyhow::{Context, Result};
use assert_cmd::prelude::*;
use once_cell::sync::Lazy;
use predicates::prelude::*;
use serial_test::serial;
use std::path::PathBuf;
use std::process::{Command, Stdio};
#[macro_use]
extern crate log;
static SCCACHE_BIN: Lazy<PathBuf> = Lazy::new(|| assert_cmd::cargo::cargo_bin("sccache"));
fn stop_sccache() -> Result<()> {
trace!("sccache --stop-server");
Command::new(SCCACHE_BIN.as_os_str())
.arg("--stop-server")
.stdout(Stdio::null())
.stderr(Stdio::null())
.status()
.context("Failed to stop sccache server")?;
Ok(())
}
#[test]
#[serial]
#[cfg(feature = "gcs")]
fn test_gcp_arg_check() -> Result<()> {
trace!("sccache with log");
stop_sccache()?;
let mut cmd = Command::new(SCCACHE_BIN.as_os_str());
cmd.arg("--start-server")
.env("SCCACHE_LOG", "debug")
.env("SCCACHE_GCS_KEY_PATH", "foo.json");
cmd.assert().failure().stderr(predicate::str::contains(
"If setting GCS credentials, SCCACHE_GCS_BUCKET",
));
stop_sccache()?;
let mut cmd = Command::new(SCCACHE_BIN.as_os_str());
cmd.arg("--start-server")
.env("SCCACHE_LOG", "debug")
.env("SCCACHE_GCS_OAUTH_URL", "http://127.0.0.1");
cmd.assert().failure().stderr(predicate::str::contains(
"If setting GCS credentials, SCCACHE_GCS_BUCKET",
));
stop_sccache()?;
let mut cmd = Command::new(SCCACHE_BIN.as_os_str());
cmd.arg("--start-server")
.env("SCCACHE_LOG", "debug")
.env("SCCACHE_GCS_BUCKET", "b")
.env("SCCACHE_GCS_CREDENTIALS_URL", "not_valid_url//127.0.0.1")
.env("SCCACHE_GCS_KEY_PATH", "foo.json");
// This is just a warning
cmd.assert()
.failure()
.stderr(predicate::str::contains("gcs credential url is invalid"));
Ok(())
}
#[test]
#[serial]
#[cfg(feature = "s3")]
fn test_s3_invalid_args() -> Result<()> {
stop_sccache()?;
let mut cmd = Command::new(SCCACHE_BIN.as_os_str());
cmd.arg("--start-server")
.env("SCCACHE_LOG", "debug")
.env("SCCACHE_BUCKET", "test")
.env("AWS_ACCESS_KEY_ID", "invalid_ak")
.env("AWS_SECRET_ACCESS_KEY", "invalid_sk");
cmd.assert()
.failure()
.stderr(predicate::str::contains("cache storage failed to read"));
Ok(())
}
|