30 lines
759 B
Rust
30 lines
759 B
Rust
use std::{path::PathBuf, process::Command};
|
|
|
|
#[test]
|
|
fn bootstrap() {
|
|
let iface_files = &["proto/status.proto", "proto/error_details.proto"];
|
|
let dirs = &["proto"];
|
|
|
|
let out_dir = PathBuf::from(std::env!("CARGO_MANIFEST_DIR"))
|
|
.join("src")
|
|
.join("generated");
|
|
|
|
tonic_build::configure()
|
|
.build_client(false)
|
|
.build_server(false)
|
|
.out_dir(&out_dir)
|
|
.file_descriptor_set_path(out_dir.join("types.bin"))
|
|
.compile(iface_files, dirs)
|
|
.unwrap();
|
|
|
|
let status = Command::new("git")
|
|
.arg("diff")
|
|
.arg("--exit-code")
|
|
.arg("--")
|
|
.arg(&out_dir)
|
|
.status()
|
|
.unwrap();
|
|
|
|
assert!(status.success(), "You should commit the protobuf files");
|
|
}
|