build.rs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. use std::env;
  2. use std::fs::File;
  3. use std::io::Write;
  4. use std::path::Path;
  5. const TEST_PREFIX: &str = "
  6. #[cfg(test)]
  7. use pretty_assertions::assert_eq;
  8. use crate::{grammar,lexer};
  9. use std::io::Write;
  10. // to let us use pretty_assertions with strings, we write a newtype
  11. // that delegates Debug to Display
  12. #[derive(PartialEq, Eq)]
  13. struct StringWrapper<'a> {
  14. wrapped: &'a str,
  15. }
  16. impl<'a> core::fmt::Debug for StringWrapper<'a> {
  17. fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
  18. core::fmt::Display::fmt(self.wrapped, f)
  19. }
  20. }
  21. fn assert_eq(x: &str, y: &str) {
  22. assert_eq!(StringWrapper {wrapped: x}, StringWrapper {wrapped: y});
  23. }
  24. ";
  25. const TEST_TEMPLATE: &str = "
  26. #[test]
  27. fn test_%PREFIX%() {
  28. let source = include_str!(\"%ROOT%/tests/%PREFIX%.matzo\");
  29. let lexer = lexer::tokens(source);
  30. let ast = grammar::StmtsParser::new().parse(lexer);
  31. assert!(ast.is_ok());
  32. let ast = ast.unwrap();
  33. let mut buf = Vec::new();
  34. writeln!(buf, \"{:#?}\", ast).unwrap();
  35. assert_eq(
  36. std::str::from_utf8(&buf).unwrap().trim(),
  37. include_str!(\"%ROOT%/tests/%PREFIX%.parsed\").trim(),
  38. );
  39. }
  40. ";
  41. fn main() -> Result<(), Box<dyn std::error::Error>> {
  42. lalrpop::process_root()?;
  43. vergen::vergen(vergen::Config::default())?;
  44. let out_dir = env::var("OUT_DIR")?;
  45. let manifest_dir = env::var("CARGO_MANIFEST_DIR")?;
  46. let dest = Path::new(&out_dir).join("exp_tests.rs");
  47. let mut test_file = File::create(&dest)?;
  48. writeln!(test_file, "{}", TEST_PREFIX)?;
  49. for exp in std::fs::read_dir("tests")? {
  50. let exp = exp?.path().canonicalize()?;
  51. let fname = exp.file_name().ok_or("bad file name")?.to_string_lossy();
  52. if let Some(prefix) = fname.strip_suffix(".matzo") {
  53. let test = TEST_TEMPLATE
  54. .replace("%FILE%", &fname)
  55. .replace("%PREFIX%", prefix)
  56. .replace("%ROOT%", &manifest_dir);
  57. writeln!(test_file, "{}", test)?;
  58. }
  59. }
  60. Ok(())
  61. }