2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
use std ::env ;
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
use std ::fs ::File ;
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
use std ::io ::Write ;
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
use std ::path ::Path ;
2023-04-23 01:45:18 +00:00
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
use walkdir ::WalkDir ;
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
fn main ( ) {
let out_dir = env ::var ( " OUT_DIR " ) . unwrap ( ) ;
let destination = Path ::new ( & out_dir ) . join ( " tests.rs " ) ;
let mut test_file = File ::create ( & destination ) . unwrap ( ) ;
write_header ( & mut test_file ) ;
let test_files = WalkDir ::new ( " org_mode_samples " )
. into_iter ( )
. filter ( | e | match e {
Ok ( dir_entry ) = > {
dir_entry . file_type ( ) . is_file ( )
& & Path ::new ( dir_entry . file_name ( ) )
. extension ( )
. map ( | ext | ext . to_ascii_lowercase ( ) = = " org " )
. unwrap_or ( false )
}
Err ( _ ) = > true ,
2023-04-19 18:40:10 +00:00
} )
. collect ::< Result < Vec < _ > , _ > > ( )
. unwrap ( ) ;
2023-04-19 02:38:18 +00:00
for test in test_files {
write_test ( & mut test_file , & test ) ;
}
}
2023-08-30 03:16:38 +00:00
#[ cfg(not(feature = " compare " )) ]
fn main ( ) { }
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
fn write_test ( test_file : & mut File , test : & walkdir ::DirEntry ) {
2023-04-19 18:40:10 +00:00
let test_name = test
. path ( )
. strip_prefix ( " org_mode_samples/ " )
. expect ( " Paths should be under org_mode_samples/ " )
. to_string_lossy ( )
. to_lowercase ( )
. strip_suffix ( " .org " )
. expect ( " Should have .org extension " )
. replace ( " / " , " _ " ) ;
2023-08-21 04:14:10 +00:00
let test_name = format! ( " autogen_ {} " , test_name ) ;
2023-04-19 02:38:18 +00:00
2023-04-21 22:42:31 +00:00
if let Some ( _reason ) = is_expect_fail ( test_name . as_str ( ) ) {
2023-04-19 18:40:10 +00:00
write! ( test_file , " #[ignore] \n " ) . unwrap ( ) ;
}
2023-04-19 02:38:18 +00:00
write! (
test_file ,
include_str! ( " ./tests/test_template " ) ,
name = test_name ,
path = test . path ( ) . display ( )
)
. unwrap ( ) ;
}
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 02:38:18 +00:00
fn write_header ( test_file : & mut File ) {
write! (
test_file ,
r #"
2023-07-14 04:25:17 +00:00
#[ feature(exit_status_error) ]
2023-04-19 02:38:18 +00:00
use organic ::compare_document ;
2023-09-03 19:44:18 +00:00
use organic ::parser ::parse ;
2023-09-02 16:15:57 +00:00
use organic ::emacs_parse_anonymous_org_document ;
2023-09-11 19:05:18 +00:00
use organic ::parser ::sexp ::sexp ;
2023-04-19 02:38:18 +00:00
" #
)
. unwrap ( ) ;
}
2023-04-19 18:40:10 +00:00
2023-08-30 03:16:38 +00:00
#[ cfg(feature = " compare " ) ]
2023-04-19 18:40:10 +00:00
fn is_expect_fail ( name : & str ) -> Option < & str > {
match name {
2023-08-21 04:14:10 +00:00
" autogen_greater_element_drawer_drawer_with_headline_inside " = > Some ( " Apparently lines with :end: become their own paragraph. This odd behavior needs to be investigated more. " ) ,
" autogen_element_container_priority_footnote_definition_dynamic_block " = > Some ( " Apparently broken begin lines become their own paragraph. " ) ,
2023-04-19 18:40:10 +00:00
_ = > None ,
}
}