26382a7ac6
CI / Clippy (push) Failing after 15m13s
CI / Test (ubuntu-latest) (push) Failing after 16m1s
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (no embeddings / no ORT) (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Cookbook (Node) (push) Has been cancelled
CI / Pi Extension (Node) (push) Has been cancelled
CI / Rust SDK (lean-ctx-client) (push) Has been cancelled
CI / Embed SDK (lean-ctx-sdk) (push) Has been cancelled
CI / Python SDK (leanctx) (push) Has been cancelled
CI / Hermes Plugin (Python) (push) Has been cancelled
CI / SDK Conformance Matrix (push) Has been cancelled
CI / Coverage (push) Has been cancelled
CI / cargo-deny (push) Has been cancelled
CI / Adversarial Safety (push) Has been cancelled
CI / Benchmarks (push) Has been cancelled
CI / Output-Quality Gate (eval A/B) (push) Has been cancelled
CI / Documentation (push) Has been cancelled
CI / CI Green (push) Has been cancelled
JetBrains Plugin / Actionlint (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (rust) (push) Has been cancelled
JetBrains Plugin / Validation (push) Has been cancelled
JetBrains Plugin / Build (push) Has been cancelled
JetBrains Plugin / Test (push) Has been cancelled
Security Check / Security Scan (push) Has been cancelled
53 lines
1.2 KiB
Rust
53 lines
1.2 KiB
Rust
use std::path::Path;
|
|
|
|
#[test]
|
|
fn graph_export_writes_single_file_html() {
|
|
let tmp = tempfile::tempdir().expect("tempdir");
|
|
let root = tmp.path();
|
|
std::fs::create_dir_all(root.join("src")).expect("mkdir src");
|
|
|
|
std::fs::write(
|
|
root.join("Cargo.toml"),
|
|
r#"[package]
|
|
name = "tmp_graph_export_contract"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
"#,
|
|
)
|
|
.expect("write Cargo.toml");
|
|
|
|
std::fs::write(
|
|
root.join("src/lib.rs"),
|
|
r#"
|
|
pub fn hello() -> &'static str {
|
|
"hello"
|
|
}
|
|
"#,
|
|
)
|
|
.expect("write lib.rs");
|
|
|
|
std::fs::write(
|
|
root.join("src/main.rs"),
|
|
r#"
|
|
use tmp_graph_export_contract::hello;
|
|
fn main() {
|
|
println!("{}", hello());
|
|
}
|
|
"#,
|
|
)
|
|
.expect("write main.rs");
|
|
|
|
let out = root.join("graph.html");
|
|
lean_ctx::core::graph_export::export_graph_html(
|
|
root.to_string_lossy().as_ref(),
|
|
Path::new(&out),
|
|
100,
|
|
)
|
|
.expect("export");
|
|
|
|
let html = std::fs::read_to_string(&out).expect("read html");
|
|
assert!(html.contains(r#"<script id="graph-data" type="application/json">"#));
|
|
assert!(html.contains("lib.rs"));
|
|
assert!(html.contains("main.rs"));
|
|
}
|