Skip to content

Commit

Permalink
feat: add e2e-test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew2003 committed Dec 13, 2024
1 parent eafbda6 commit 6ac70bd
Show file tree
Hide file tree
Showing 14 changed files with 683 additions and 388 deletions.
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ members = [
"crates/core",
"crates/public",
"crates/worker",
"e2e-tests",
]

[workspace.dependencies]
irelia_adapter = { path = "crates/adapter" }
irelia_common = { path = "crates/common" }
irelia_core = { path = "crates/core" }


anyhow = { version = "1.0.87" }
aptos-sdk = { git = "https://github.com/aptos-labs/aptos-core", branch = "mainnet" }
aptos-testcontainer = { version = "0.1.2", features = ["testing"] }
Expand All @@ -37,22 +37,23 @@ opentelemetry = { version = "0.26.0" }
opentelemetry-otlp = { version = "0.26.0" }
opentelemetry-semantic-conventions = { version = "0.26.0" }
opentelemetry_sdk = { version = "0.26.0" }
rand = { version = "0.8.5" }
rand_core = { version = "0.5.1" }
readonly = { version = "0.2.12" }
redis-async = { version = "0.17.2" }
regex = { version = "1.11.0" }
reqwest = { version = "0.12.9" }
reqwest = { version = "0.12.9", features = ["json"] }
scopeguard = { version = "1.2.0" }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = { version = "1.0.128" }
sqlx = { version = "*" }
stone-cli = { git = "https://github.com/zksecurity/stone-cli.git", branch = "main" }
tempfile = { version = "3.13.0" }
test-log = { version = "0.2.16" }
testcontainers-modules = { version = "0.11.4" }
thiserror = { version = "1.0.64" }
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread"] }
tokio = { version = "1.39.3", features = ["full"] }
tokio-postgres = { version = "0.7.12" }
toml = { version = "0.8.19" }
tower-http = { version = "0.6.1" }
tracing = { version = "0.1.40" }
tracing-bunyan-formatter = { version = "0.3.9" }
Expand Down
3 changes: 0 additions & 3 deletions crates/public/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,11 @@ deadpool-diesel = { workspace = true, features = ["postgres", "serde"] }
diesel_migrations = { workspace = true }
opentelemetry = { workspace = true }
readonly = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
stone-cli = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tokio-postgres = { workspace = true }
toml = { workspace = true }
tower-http = { workspace = true, features = ["timeout", "trace"] }
tracing = { workspace = true }
uuid = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion crates/public/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ pub mod json_response;
pub mod options;
pub mod router;
pub mod services;
pub mod tests;
pub mod utils;
4 changes: 0 additions & 4 deletions crates/public/src/tests/mod.rs

This file was deleted.

135 changes: 0 additions & 135 deletions crates/public/src/tests/test_add_job.rs

This file was deleted.

Loading

0 comments on commit 6ac70bd

Please sign in to comment.