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

Partial implementation of cache API #454

Open
wants to merge 7 commits into
base: cceckman/collecting-body
Choose a base branch
from
Open
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
318 changes: 311 additions & 7 deletions Cargo.lock

Large diffs are not rendered by default.

16 changes: 0 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,3 @@ bitflags = { version = "2.5.0", default-features = false }
object = { version = "0.33", default-features = false, features = ["archive"] }
wasi = { version = "0.11.0", default-features = false }
wit-bindgen-rust-macro = { version = "0.32.0", default-features = false }

[profile.release.package.viceroy-component-adapter]
opt-level = 's'
strip = 'debuginfo'

[profile.dev.package.viceroy-component-adapter]
# Make dev look like a release build since this adapter module won't work with
# a debug build that uses data segments and such.
incremental = false
opt-level = 's'
# Omit assertions, which include failure messages which require string
# initializers.
debug-assertions = false
# Omit integer overflow checks, which include failure messages which require
# string initializers.
overflow-checks = false
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ test: test-crates trap-test

.PHONY: test-crates
test-crates: fix-build
RUST_BACKTRACE=1 $(VICEROY_CARGO) test --all
# TODO: cceckman-at-fastly: When all cache APIs match Compute Platform, remove the environment flag.
RUST_BACKTRACE=1 ENABLE_EXPERIMENTAL_CACHE_API=1 $(VICEROY_CARGO) test --all

.PHONY: fix-build
fix-build:
Expand Down
24 changes: 24 additions & 0 deletions cli/tests/integration/cache.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
use {
crate::{
common::{Test, TestResult},
viceroy_test,
},
hyper::StatusCode,
};

viceroy_test!(request_works, |is_component| {
if !std::env::var("ENABLE_EXPERIMENTAL_CACHE_API").is_ok_and(|v| v == "1") {
eprintln!("WARNING: Skipping cache tests.");
eprintln!(
"Set ENABLE_EXPERIMENTAL_CACHE_API=1 to enable experimental cache API and run tests."
);
return Ok(());
}

let resp = Test::using_fixture("cache.wasm")
.adapt_component(is_component)
.against_empty()
.await?;
assert_eq!(resp.status(), StatusCode::OK);
Ok(())
});
1 change: 1 addition & 0 deletions cli/tests/integration/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ mod acl;
mod args;
mod async_io;
mod body;
mod cache;
mod client_certs;
mod common;
mod config_store_lookup;
Expand Down
Loading
Loading