1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068
//! # Overview
//! This crate provides `#[test_resources]` and `#[bench_resources]` procedural macro attributes
//! that generates multiple parametrized tests using one body with different resource input parameters.
//! A test is generated for each resource matching the specific resource location pattern.
//!
//! [](https://crates.io/crates/test-generator)
//! [](https://github.com/frehberg/test-generator/blob/master/LICENSE-MIT)
//! [](https://github.com/frehberg/test-generator/blob/master/LICENSE-APACHE)
//! [](https://github.com/frehberg/test-generator/tree/master/example)
//!
//! [Documentation](https://docs.rs/test-generator/)
//!
//! [Repository](https://github.com/frehberg/test-generator/)
//!
//! # Getting Started
//!
//! First of all you have to add this dependency to your `Cargo.toml`:
//!
//! ```toml
//! [dev-dependencies]
//! test-generator = "^0.3"
//! ```
//! The test-functionality is supports stable Rust since version 1.30,
//! whereas the bench-functionality requires an API from unstable nightly release.
//!
//! ```ignore
//! #![cfg(test)]
//! extern crate test_generator;
//!
//! // Don't forget that procedural macros are imported with `use` statement,
//! // for example importing the macro 'test_resources'
//! #![cfg(test)]
//! use test_generator::test_resources;
//! ```
//!
//! # Example usage `test`:
//!
//! The `test` functionality supports the stable release of Rust-compiler since version 1.30.
//!
//! ```ignore
//! #![cfg(test)]
//! extern crate test_generator;
//!
//! use test_generator::test_resources;
//!
//! #[test_resources("res/*/input.txt")]
//! fn verify_resource(resource: &str) {
//! assert!(std::path::Path::new(resource).exists());
//! }
//! ```
//!
//! Output from `cargo test` for 3 test-input-files matching the pattern, for this example:
//!
//! ```console
//! $ cargo test
//!
//! running 3 tests
//! test tests::verify_resource_res_set1_input_txt ... ok
//! test tests::verify_resource_res_set2_input_txt ... ok
//! test tests::verify_resource_res_set3_input_txt ... ok
//!
//! test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
//! ```
//! # Example usage `bench`:
//!
//! The `bench` functionality requires the nightly release of the Rust-compiler.
//!
//! ```ignore
//! #![feature(test)] // nightly feature required for API test::Bencher
//!
//! #[macro_use]
//! extern crate test_generator;
//!
//! extern crate test; /* required for test::Bencher */
//!
//! mod bench {
//! #[bench_resources("res/*/input.txt")]
//! fn measure_resource(b: &mut test::Bencher, resource: &str) {
//! let path = std::path::Path::new(resource);
//! b.iter(|| path.exists());
//! }
//! }
//! ```
//! Output from `cargo +nightly bench` for 3 bench-input-files matching the pattern, for this example:
//!
//! ```console
//! running 3 tests
//! test bench::measure_resource_res_set1_input_txt ... bench: 2,492 ns/iter (+/- 4,027)
//! test bench::measure_resource_res_set2_input_txt ... bench: 2,345 ns/iter (+/- 2,167)
//! test bench::measure_resource_res_set3_input_txt ... bench: 2,269 ns/iter (+/- 1,527)
//!
//! test result: ok. 0 passed; 0 failed; 0 ignored; 3 measured; 0 filtered out
//! ```
//!
//! # Example
//! The [example](https://github.com/frehberg/test-generator/tree/master/example) demonstrates usage
//! and configuration of these macros, in combination with the crate
//! `build-deps` monitoring for any change of these resource files and conditional rebuild.
//!
//! # Internals
//! Let's assume the following code and 3 files matching the pattern "res/*/input.txt"
//! ```ignore
//! #[test_resources("res/*/input.txt")]
//! fn verify_resource(resource: &str) { assert!(std::path::Path::new(resource).exists()); }
//! ```
//! the generated code for this input resource will look like
//! ```
//! #[test]
//! #[allow(non_snake_case)]
//! fn verify_resource_res_set1_input_txt() { verify_resource("res/set1/input.txt".into()); }
//! #[test]
//! #[allow(non_snake_case)]
//! fn verify_resource_res_set2_input_txt() { verify_resource("res/set2/input.txt".into()); }
//! #[test]
//! #[allow(non_snake_case)]
//! fn verify_resource_res_set3_input_txt() { verify_resource("res/set3/input.txt".into()); }
//! ```
//! Note: The trailing `into()` method-call permits users to implement the `Into`-Trait for auto-conversations.
//!
extern crate glob;
extern crate proc_macro;
use proc_macro::TokenStream;
use self::glob::{glob, Paths};
use quote::quote;
use std::path::PathBuf;
use syn::parse::{Parse, ParseStream, Result};
use syn::{parse_macro_input, Expr, ExprLit, Ident, Lit, Token, ItemFn};
// Form canonical name without any punctuation/delimiter or special character
fn canonical_fn_name(s: &str) -> String {
// remove delimiters and special characters
s.replace(
&['"', ' ', '.', ':', '-', '*', '/', '\\', '\n', '\t', '\r'][..],
"_",
)
}
/// Return the concatenation of two token-streams
fn concat_ts_cnt(
accu: (u64, proc_macro2::TokenStream),
other: proc_macro2::TokenStream,
) -> (u64, proc_macro2::TokenStream) {
let (accu_cnt, accu_ts) = accu;
(accu_cnt + 1, quote! { #accu_ts #other })
}
/// MacroAttributes elements
struct MacroAttributes {
glob_pattern: Lit,
}
/// MacroAttributes parser
impl Parse for MacroAttributes {
fn parse(input: ParseStream) -> Result<Self> {
let glob_pattern: Lit = input.parse()?;
if ! input.is_empty() {
panic!("found multiple parameters, expected one");
}
Ok(MacroAttributes {
glob_pattern,
})
}
}
/// Macro generating test-functions, invoking the fn for each item matching the resource-pattern.
///
/// The resource-pattern must not expand to empty list, otherwise an error is raised.
/// The generated test-functions is aregular tests, being compiled by the rust-compiler; and being
/// executed in parallel by the test-framework.
/// ```
/// #[cfg(test)]
/// extern crate test_generator;
///
/// #[cfg(test)]
/// mod tests {
/// use test_generator::test_resources;
///
/// #[test_resources("res/*/input.txt")]
/// fn verify_resource(resource: &str) {
/// assert!(std::path::Path::new(resource).exists());
/// }
/// }
/// ```
/// Assuming the following package layout with test file `mytests.rs` and resource folder `res/`,
/// the output below will be printed on console. The functionality of `build.rs` is explained at crate
/// [build-deps](https://crates.io/crates/build-deps) and demonstrated with
/// [example](https://github.com/frehberg/test-generator/tree/master/example)
///
/// ```ignore
/// ├── build.rs
/// ├── Cargo.toml
/// ├── res
/// │ ├── set1
/// │ │ ├── expect.txt
/// │ │ └── input.txt
/// │ ├── set2
/// │ │ ├── expect.txt
/// │ │ └── input.txt
/// │ └── set3
/// │ ├── expect.txt
/// │ └── input.txt
/// ├── src
/// │ └── main.rs
/// ├── benches
/// │ └── mybenches.rs
/// └── tests
/// └── mytests.rs
/// ```
/// Producing the following test output
///
/// ```ignore
/// $ cargo test
///
/// running 3 tests
/// test tests::verify_resource_res_set1_input_txt ... ok
/// test tests::verify_resource_res_set2_input_txt ... ok
/// test tests::verify_resource_res_set3_input_txt ... ok
///
/// test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
/// ```
#[proc_macro_attribute]
pub fn test_resources(attrs: TokenStream, func: TokenStream) -> TokenStream {
let MacroAttributes { glob_pattern } = parse_macro_input!(attrs as MacroAttributes);
let pattern = match glob_pattern {
Lit::Str(l) => l.value(),
Lit::Bool(l) => panic!("expected string parameter, got '{}'", &l.value),
Lit::Byte(l) => panic!("expected string parameter, got '{}'", &l.value()),
Lit::ByteStr(_) => panic!("expected string parameter, got byte-string"),
Lit::Char(l) => panic!("expected string parameter, got '{}'", &l.value()),
Lit::Int(l) => panic!("expected string parameter, got '{}'", &l.value()),
Lit::Float(l) => panic!("expected string parameter, got '{}'", &l.value()),
_ => panic!("expected string parameter"),
};
let func_copy: proc_macro2::TokenStream = func.clone().into();
let func_ast: ItemFn = syn::parse(func)
.expect("failed to parse tokens as a function");
let func_ident = func_ast.ident;
let paths: Paths = glob(&pattern).expect(&format!("No such file or directory {}", &pattern));
// for each path generate a test-function and fold them to single tokenstream
let result = paths
.map(|path| {
let path_as_str = path
.expect("No such file or directory")
.into_os_string()
.into_string()
.expect("bad encoding");
let test_name = format!("{}_{}", func_ident.to_string(), &path_as_str);
// create function name without any delimiter or special character
let test_name = canonical_fn_name(&test_name);
// quote! requires proc_macro2 elements
let test_ident = proc_macro2::Ident::new(&test_name, proc_macro2::Span::call_site());
let item = quote! {
#[test]
#[allow(non_snake_case)]
fn # test_ident () {
# func_ident ( #path_as_str .into() );
}
};
item
})
.fold((0, func_copy), concat_ts_cnt);
// panic, the pattern did not match any file or folder
if result.0 == 0 {
panic!("no resource matching the pattern {}", &pattern);
}
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
result.1.into()
}
/// Macro generating bench-functions, invoking the fn for each item matching the resource-pattern.
///
/// The resource-pattern must not expand to empty list, otherwise an error is raised.
/// The generated test-functions is a regular bench, being compiled by the rust-compiler; and being
/// executed in sequentially by the bench-framework.
/// ```ignore
/// #![feature(test)] // nightly feature required for API test::Bencher
///
/// #[cfg(test)]
/// extern crate test; /* required for test::Bencher */
/// #[cfg(test)]
/// extern crate test_generator;
///
/// #[cfg(test)]
/// mod tests {
/// use test_generator::bench_resources;
///
/// #[bench_resources("res/*/input.txt")]
/// fn measure_resource(b: &mut test::Bencher, resource: &str) {
/// let path = std::path::Path::new(resource);
/// b.iter(|| path.exists());
/// }
/// }
/// ```
/// Assuming the following package layout with the bench file `mybenches.rs` and resource folder `res/`,
/// the output below will be printed on console. The functionality of `build.rs` is explained at crate
/// [build-deps](https://crates.io/crates/build-deps) and demonstrated with
/// [example](https://github.com/frehberg/test-generator/tree/master/example)
///
/// ```ignore
/// ├── build.rs
/// ├── Cargo.toml
/// ├── res
/// │ ├── set1
/// │ │ ├── expect.txt
/// │ │ └── input.txt
/// │ ├── set2
/// │ │ ├── expect.txt
/// │ │ └── input.txt
/// │ └── set3
/// │ ├── expect.txt
/// │ └── input.txt
/// ├── src
/// │ └── main.rs
/// ├── benches
/// │ └── mybenches.rs
/// └── tests
/// └── mytests.rs
/// ```
/// Output from `cargo +nightly bench` for 3 bench-input-files matching the pattern, for this example:
///
/// ```ignore
/// running 3 tests
/// test bench::measure_resource_res_set1_input_txt ... bench: 2,492 ns/iter (+/- 4,027)
/// test bench::measure_resource_res_set2_input_txt ... bench: 2,345 ns/iter (+/- 2,167)
/// test bench::measure_resource_res_set3_input_txt ... bench: 2,269 ns/iter (+/- 1,527)
///
/// test result: ok. 0 passed; 0 failed; 0 ignored; 3 measured; 0 filtered out
/// ```
#[proc_macro_attribute]
pub fn bench_resources(attrs: TokenStream, func: TokenStream) -> TokenStream {
let MacroAttributes { glob_pattern } = parse_macro_input!(attrs as MacroAttributes);
let pattern = match glob_pattern {
Lit::Str(l) => l.value(),
Lit::Bool(l) => panic!("expected string parameter, got '{}'", &l.value),
Lit::Byte(l) => panic!("expected string parameter, got '{}'", &l.value()),
Lit::ByteStr(_) => panic!("expected string parameter, got byte-string"),
Lit::Char(l) => panic!("expected string parameter, got '{}'", &l.value()),
Lit::Int(l) => panic!("expected string parameter, got '{}'", &l.value()),
Lit::Float(l) => panic!("expected string parameter, got '{}'", &l.value()),
_ => panic!("expected string parameter"),
};
let func_copy: proc_macro2::TokenStream = func.clone().into();
let func_ast: ItemFn = syn::parse(func)
.expect("failed to parse tokens as a function");
let func_ident = func_ast.ident;
let paths: Paths = glob(&pattern).expect(&format!("No such file or directory {}", &pattern));
// for each path generate a test-function and fold them to single tokenstream
let result = paths
.map(|path| {
let path_as_str = path
.expect("No such file or directory")
.into_os_string()
.into_string()
.expect("bad encoding");
let test_name = format!("{}_{}", func_ident.to_string(), &path_as_str);
// create function name without any delimiter or special character
let test_name = canonical_fn_name(&test_name);
// quote! requires proc_macro2 elements
let test_ident = proc_macro2::Ident::new(&test_name, proc_macro2::Span::call_site());
let item = quote! {
#[bench]
#[allow(non_snake_case)]
fn # test_ident (b: &mut test::Bencher) {
# func_ident ( b, #path_as_str .into() );
}
};
item
})
.fold((0, func_copy), concat_ts_cnt);
// panic, the pattern did not match any file or folder
if result.0 == 0 {
panic!("no resource matching the pattern {}", &pattern);
}
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
result.1.into()
}
/// **Experimental** Helper function encapsulating and unwinding each phase, namely setup, test and teardown
//fn run_utest<U, T, D, C>(setup: U, test: T, teardown: D) -> ()
// where
// U: FnOnce() -> C + std::panic::UnwindSafe,
// T: FnOnce(&C) -> () + std::panic::UnwindSafe,
// D: FnOnce(C) -> () + std::panic::UnwindSafe,
// C: std::panic::UnwindSafe + std::panic::RefUnwindSafe
//{
// let context = std::panic::catch_unwind(|| {
// setup()
// });
//
// assert!(context.is_ok());
//
// // unwrap the internal context item
// let ctx = match context {
// Ok(ctx) => ctx,
// Err(_) => unreachable!(),
// };
//
// let result = std::panic::catch_unwind(|| {
// test(&ctx)
// });
//
// let finalizer = std::panic::catch_unwind(|| {
// teardown(ctx)
// });
//
// assert!(result.is_ok());
//
// assert!(finalizer.is_ok());
//}
/// **Experimental** Executing a 3-phase unit-test: setup, test, teardown
///
/// ## Usage
/// ```
/// extern crate test_generator;
///
/// #[cfg(test)]
/// mod testsuite {
/// use test_generator::utest;
/// use std::fs::File;
///
/// struct Context { file: File }
///
/// fn setup() -> Context {
///
/// }
/// }
/// ```
///
//#[macro_export]
//macro_rules! v1_utest {
// ( $id: ident, $setup:expr, $test:expr, $teardown:expr ) => {
// #[test]
// fn $id() {
// let context = std::panic::catch_unwind(|| {
// $setup()
// });
//
// assert!(context.is_ok());
//
// // unwrap the internal context item
// let ctx = match context {
// Ok(ctx) => ctx,
// Err(_) => unreachable!(),
// };
//
// let result = std::panic::catch_unwind(|| {
// $test(&ctx)
// });
//
// let finalizer = std::panic::catch_unwind(|| {
// $teardown(ctx)
// });
//
// assert!(result.is_ok());
//
// assert!(finalizer.is_ok());
// }
// };
//}
//
// ------------------ deprecated features ------------------
//
const CONTENT_MAX_LEN: usize = 100;
/// Return the concatenation of two token-streams
fn concat_ts(
accu: proc_macro2::TokenStream,
other: proc_macro2::TokenStream,
) -> proc_macro2::TokenStream {
quote! { #accu #other }
}
/// Parser elements
struct GlobExpand {
glob_pattern: Lit,
lambda: Ident,
}
/// Parser reading the Literal and function-identifier from token-stream
impl Parse for GlobExpand {
fn parse(input: ParseStream) -> Result<Self> {
let glob_pattern: Lit = input.parse()?;
input.parse::<Token![;]>()?;
let lambda: Ident = input.parse()?;
Ok(GlobExpand {
glob_pattern,
lambda,
})
}
}
/// Prefix for each generated test-function
const PREFIX: &str = "gen_";
// Compose a new function-identifier from input
fn fn_ident_from_path(fn_ident: &Ident, path: &PathBuf) -> Ident {
let path_as_str = path
.clone()
.into_os_string()
.into_string()
.expect("bad encoding");
// prefixed name & remove delimiters and special characters
let stringified = format!("{}_{}", fn_ident.to_string(), &path_as_str);
// quote! requires proc_macro2 elements
let gen_fn_ident = proc_macro2::Ident::new(
&canonical_fn_name(&stringified),
proc_macro2::Span::call_site(),
);
gen_fn_ident
}
// Compose a new function-identifier from input
fn fn_ident_from_string(fn_ident: &Ident, name: &str) -> Ident {
// use at most CONTENT_MAX_LEN
let safe_len = std::cmp::min(name.len(), CONTENT_MAX_LEN);
let safe_name = &name[0..safe_len];
// prefixed name & remove delimiters and special characters
let stringified = format!("{}_{}", fn_ident.to_string(), safe_name);
// quote! requires proc_macro2 elements
let gen_fn_ident = proc_macro2::Ident::new(
&canonical_fn_name(&stringified),
proc_macro2::Span::call_site(),
);
gen_fn_ident
}
// Stringify the expression: arrays are enumerated, identifier-names are embedded
fn expr_stringified(expr: &Expr, int_as_hex: bool) -> String {
let stringified = match expr {
Expr::Lit(lit) => match lit {
ExprLit {
lit: litval,
attrs: _,
} => match litval {
Lit::Int(lit) => {
let val = lit.value();
if int_as_hex {
// if u8-range, use two digits, otherwise 16
if val > 255 {
// not a u8
format!("{:016x}", val)
} else {
format!("{:02x}", val as u8)
}
} else {
format!("{:010}", val)
}
}
Lit::Char(lit) => {
let val = lit.value();
format!("{}", val)
}
Lit::Str(lit) => {
let val = lit.value();
val
}
Lit::Float(lit) => {
let val = lit.value();
format!("{}", val)
}
_ => panic!(),
},
},
Expr::Array(ref array_expr) => {
let elems = &array_expr.elems;
let mut composed = String::new();
// do not
let mut cnt: usize = 0;
// concat as hex-numbers, group by 8
for expr in elems.iter() {
// after 8 elements, always insert '_', do not begin with '_'
if cnt > 0 && cnt % 8 == 0 {
composed.push_str("_");
}
cnt = cnt + 1;
let expr_str = expr_stringified(&expr, true);
composed.push_str(&expr_str);
}
composed
}
Expr::Path(ref expr_path) => {
let path = &expr_path.path;
let leading_colon = path.leading_colon.is_some();
let mut composed = String::new();
for segment in &path.segments {
if !composed.is_empty() || leading_colon {
composed.push_str("_")
}
let ident = &segment.ident;
composed.push_str(&ident.to_string());
}
composed
}
Expr::Reference(ref reference) => {
let ref_expr = &reference.expr;
expr_stringified(&ref_expr, int_as_hex)
}
_ => panic!(),
};
stringified
}
// Compose a new function-identifier from input
fn fn_ident_from_expr(fn_ident: &Ident, expr: &Expr) -> Ident {
let stringified = expr_stringified(expr, false);
fn_ident_from_string(fn_ident, &format!("{}", &stringified))
}
/// **deprecated** Function-Attribute macro expanding glob-file-pattern to a list of directories
/// and generating a test-function for each one.
///
/// ```
/// #[cfg(test)]
/// mod tests {
/// extern crate test_generator;
/// test_generator::glob_expand! { "res/*"; test_exists }
///
/// fn test_exists(filename: &str) { assert!(std::path::Path::new(filename).exists()); }
/// }
/// ```
/// The macro will expand the code for each subfolder in `"res/*"`, generating the following
/// code. This code is not visible in IDE. Every build-time, the code will be newly generated.
///
///```
/// #[cfg(test)]
/// mod tests {
/// #[test]
/// fn gen_res_set1() {
/// test_exists("res/testset1");
/// }
///
/// #[test]
/// fn gen_res_set2() {
/// test_exists("res/testset2");
/// }
/// }
///
///```
#[proc_macro]
pub fn glob_expand(item: TokenStream) -> TokenStream {
let GlobExpand {
glob_pattern,
lambda,
} = parse_macro_input!(item as GlobExpand);
let pattern = if let Lit::Str(s) = glob_pattern {
s.value()
} else {
panic!();
};
let empty_ts: proc_macro2::TokenStream = "".parse().unwrap();
let paths: Paths = glob(&pattern).expect("Failed to read testdata dir.");
/// helper, concatting two token-streams
fn concat(
accu: proc_macro2::TokenStream,
ts: proc_macro2::TokenStream,
) -> proc_macro2::TokenStream {
quote! { # accu # ts }
}
// for each path generate a test-function and fold them to single tokenstream
let result = paths
.map(|path| {
let path_as_str = path
.expect("No such file or directory")
.into_os_string()
.into_string()
.expect("bad encoding");
// remove delimiters and special characters
let canonical_name = path_as_str
.replace("\"", " ")
.replace(" ", "_")
.replace("-", "_")
.replace("*", "_")
.replace("/", "_");
// form an identifier with prefix
let mut func_name = PREFIX.to_string();
func_name.push_str(&canonical_name);
// quote! requires proc_macro2 elements
let func_ident = proc_macro2::Ident::new(&func_name, proc_macro2::Span::call_site());
let item = quote! {
# [test]
fn # func_ident () {
let f = #lambda;
f( #path_as_str );
}
};
item
})
.fold(empty_ts, concat);
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
result.into()
}
/// Parser elements
struct ExpandPaths {
fn_ident: Ident,
glob_pattern: Lit,
}
/// Parser
impl Parse for ExpandPaths {
fn parse(input: ParseStream) -> Result<Self> {
let fn_ident: Ident = input.parse()?;
input.parse::<Token![; ]>()?;
let glob_pattern: Lit = input.parse()?;
Ok(ExpandPaths {
glob_pattern,
fn_ident,
})
}
}
/// **deprecated** Generate a test-function call for each file matching the pattern
/// ```
/// extern crate test_generator;
/// #[cfg(test)]
/// mod tests {
/// test_generator::test_expand_paths! { test_exists; "res/*" }
///
/// fn test_exists(dir_name: &str) { assert!(std::path::Path::new(dir_name).exists()); }
/// }
/// ```
/// Assuming `"res/*"` expands to "res/set1", and "res/set2" the macro will expand to
///```
/// mod tests {
/// #[test]
/// fn test_exists_res_set1() {
/// test_exists("res/set1");
/// }
///
/// #[test]
/// fn test_exists_res_set2() {
/// test_exists("res/set2");
/// }
/// }
///```
#[proc_macro]
pub fn test_expand_paths(item: TokenStream) -> TokenStream {
let ExpandPaths {
fn_ident,
glob_pattern,
} = parse_macro_input!(item as ExpandPaths);
let pattern = if let Lit::Str(s) = glob_pattern {
s.value()
} else {
panic!();
};
let empty_ts: proc_macro2::TokenStream = "".parse().unwrap();
let paths: Paths = glob(&pattern).expect("Invalid 'paths' pattern.");
// for each path generate a test-function and fold them to single tokenstream
let result = paths
.map(|path| {
// check for error, shadow the name
let path = path.expect("No such file or directory");
// form a function identifier, each path is unique => no index required
let gen_fn_ident = fn_ident_from_path(&fn_ident, &path);
let path_as_str = path.into_os_string().into_string().expect("bad encoding");
let item = quote! {
# [test]
fn #gen_fn_ident () {
#fn_ident ( #path_as_str );
}
};
item
})
.fold(empty_ts, concat_ts);
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
result.into()
}
/// **deprecated** Generate a benchmark-function call for each file matching the pattern
/// ```
/// extern crate test_generator;
/// #[cfg(test)]
/// mod tests {
/// test_generator::bench_expand_paths! { bench_exists; "res/*" }
///
/// fn bench_exists(bencher: &mut test::Bencher, filename: &str) {
/// let path = std::path::Path::new(filename);
/// b.iter(|| { path.exists() });
/// }
/// }
/// ```
/// Assuming `"res/*"` expands to "res/set1", and "res/set2" the macro will expand to
///```ignore
/// #[cfg(test)]
/// mod tests {
/// #[bench]
/// fn bench_exists_res_set1(bencher: & mut test::Bencher) {
/// bench_exists(bencher, "res/set1");
/// }
///
/// #[bench]
/// fn bench_exists_res_set2(bencher: & mut test::Bencher) {
/// bench_exists(bencher, "res/set2");
/// }
/// }
///```
#[proc_macro]
pub fn bench_expand_paths(item: TokenStream) -> TokenStream {
let ExpandPaths {
fn_ident,
glob_pattern,
} = parse_macro_input!(item as ExpandPaths);
let pattern = if let Lit::Str(s) = glob_pattern {
s.value()
} else {
panic!();
};
let empty_ts: proc_macro2::TokenStream = "".parse().unwrap();
let paths: Paths = glob(&pattern).expect("Invalid 'paths' pattern.");
// for each path generate a test-function and fold them to single tokenstream
let result = paths
.map(|path| {
// check for error, shadow the name
let path = path.expect("No such file or directory");
// form a function identifier, each path is unique => no index required
let gen_fn_ident = fn_ident_from_path(&fn_ident, &path);
let path_as_str = path.into_os_string().into_string().expect("bad encoding");
let item = quote! {
# [bench]
fn #gen_fn_ident (bencher: & mut test::Bencher) {
#fn_ident (bencher, #path_as_str );
}
};
item
})
.fold(empty_ts, concat_ts);
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
result.into()
}
/// Parser elements
struct ExpandList {
fn_ident: Ident,
listing: Expr,
}
/// Parser
impl Parse for ExpandList {
fn parse(input: ParseStream) -> Result<Self> {
let fn_ident: Ident = input.parse()?;
input.parse::<Token![; ]>()?;
let listing: syn::Expr = input.parse()?;
Ok(ExpandList { fn_ident, listing })
}
}
/// **deprecated** Generate a test-function call for each list-element
/// ```
/// extern crate test_generator;
/// #[cfg(test)]
/// mod tests {
/// test_generator::test_expand_list! { test_size; [ 10, 100, 1000 ]}
///
/// fn test_size(value: &usize) { assert!( *value > 0 ); }
///
/// const VEC1: &[u8] = &[ 1, 2, 3, 4 ]; /* speaking array names */
/// const VEC2: &[u8] = &[ 5, 6, 7, 8 ];
/// test_generator::test_expand_list! { test_array_size; [ &VEC1, &VEC2 ]}
/// test_generator::test_expand_list! { test_array_size; [ [1, 2, 3, 4], [ 5, 6, 7, 8 ] ] }
///
/// fn test_array_size<T>(ar: &[T]) {
/// assert!(ar.len() > 0);
/// }
/// }
/// ```
/// Will expand to test-functions incorporating the array-elements
///```
/// #[cfg(test)]
/// mod tests {
/// #[test]
/// fn test_size_0000000010() { test_size(&10); }
/// #[test]
/// fn test_size_0000000100() { test_size(&100); }
/// #[test]
/// fn test_size_0000001000() { test_size(&1000); }
///
/// #[test]
/// fn test_array_size_VEC1() { test_array_size( &VEC1 ); }
/// #[test]
/// fn test_array_size_VEC2() { test_array_size( &VEC2 ); }
///
/// #[test]
/// fn test_array_size_01020304() { test_array_size( &[ 1, 2, 3, 4 ] ); }
/// fn test_array_size_05060708() { test_array_size( &[ 5, 6, 7, 8 ] ); }
///
/// fn test_array_size<T>(ar: &[T]) {
/// assert!(ar.len() > 0);
/// }
/// }
///```
#[proc_macro]
pub fn test_expand_list(item: TokenStream) -> TokenStream {
let ExpandList { fn_ident, listing } = parse_macro_input!(item as ExpandList);
let expr_array = if let Expr::Array(expr_array) = listing {
expr_array
} else {
panic!();
};
let empty_ts: proc_macro2::TokenStream = "".parse().unwrap();
let elems: syn::punctuated::Punctuated<Expr, _> = expr_array.elems;
let item = elems
.iter()
.map(|expr| {
let gen_fn_ident = fn_ident_from_expr(&fn_ident, expr);
let ref_symbol_ts: proc_macro2::TokenStream = match expr {
Expr::Reference(_) => "".parse().unwrap(),
_ => "&".parse().unwrap(),
};
quote! {
#[test]
fn #gen_fn_ident() {
let local = #ref_symbol_ts #expr;
#fn_ident ( local );
}
}
})
.fold(empty_ts, concat_ts);
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
item.into()
}
/// **deprecated** Generate a benchmark-function call for each list-element
/// ```
/// extern crate test_generator;
/// #[cfg(test)]
/// mod tests {
/// test_generator::bench_expand_list! { bench_size; [ 10, 100, 1000 ]}
///
/// fn bench_size(b: &mut test::Bencher, val: &usize) {
/// let input = val;
/// b.iter(|| { *input > 0 });
/// }
/// }
/// ```
/// Will expand to bench-functions incorporating the array-elements
///```
///#[cfg(test)]
///mod tests {
/// #[bench]
/// fn bench_size_0000000010(bencher: & mut test::Bencher) {
/// bench_exists(bencher, &10);
/// }
/// #[bench]
/// fn bench_size_0000000100(bencher: & mut test::Bencher) {
/// bench_exists(bencher, &100);
/// }
/// #[bench]
/// fn bench_size_0000001000(bencher: & mut test::Bencher) {
/// bench_exists(bencher, &1000);
/// }
///}
///```
#[proc_macro]
pub fn bench_expand_list(item: TokenStream) -> TokenStream {
let ExpandList { fn_ident, listing } = parse_macro_input!(item as ExpandList);
let expr_array = if let Expr::Array(expr_array) = listing {
expr_array
} else {
panic!();
};
let empty_ts: proc_macro2::TokenStream = "".parse().unwrap();
let elems: syn::punctuated::Punctuated<Expr, _> = expr_array.elems;
let item = elems
.iter()
.map(|expr| {
let gen_fn_ident = fn_ident_from_expr(&fn_ident, expr);
let ref_symbol_ts: proc_macro2::TokenStream = match expr {
Expr::Reference(_) => "".parse().unwrap(),
_ => "&".parse().unwrap(),
};
quote! {
# [bench]
fn #gen_fn_ident (bencher: & mut test::Bencher) {
let local = #ref_symbol_ts #expr;
#fn_ident (bencher, local );
}
}
})
.fold(empty_ts, concat_ts);
// transforming proc_macro2::TokenStream into proc_macro::TokenStream
item.into()
}