build.rs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. let out_dir = env::var("OUT_DIR")?;
  44. let manifest_dir = env::var("CARGO_MANIFEST_DIR")?;
  45. let dest = Path::new(&out_dir).join("exp_tests.rs");
  46. let mut test_file = File::create(&dest)?;
  47. writeln!(test_file, "{}", TEST_PREFIX)?;
  48. for exp in std::fs::read_dir("tests")? {
  49. let exp = exp?.path().canonicalize()?;
  50. let fname = exp.file_name().ok_or("bad file name")?.to_string_lossy();
  51. if let Some(prefix) = fname.strip_suffix(".matzo") {
  52. let test = TEST_TEMPLATE
  53. .replace("%FILE%", &fname)
  54. .replace("%PREFIX%", prefix)
  55. .replace("%ROOT%", &manifest_dir);
  56. writeln!(test_file, "{}", test)?;
  57. }
  58. }
  59. Ok(())
  60. }