Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test-gen logs #1236

Merged
merged 4 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions framework/meta/src/cmd/standalone/scen_test_gen/stg_main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ pub fn perform_test_gen_all(path: impl AsRef<Path>, ignore: &[String], create: b

fn perform_test_gen(contract_dir: &RelevantDirectory, create: bool) {
let contract_dir_path = &contract_dir.path;

let scenarios_dir = contract_dir_path.join(SCENARIOS_DIR_NAME);
if !scenarios_dir.is_dir() {
print_no_folder(contract_dir_path, SCENARIOS_DIR_NAME);
Expand Down Expand Up @@ -88,9 +89,11 @@ struct ProcessFileContext<'a> {
}

fn process_file(config: ProcessFileConfig, context: ProcessFileContext) {
let existing_file_path = find_test_file(context.test_dir, config.suffix);
let suffix = config.suffix;
let existing_file_path = find_test_file(context.test_dir, suffix);

if existing_file_path.is_none() && !context.create_flag {
print_no_file(suffix);
return;
}

Expand All @@ -113,8 +116,13 @@ fn process_file(config: ProcessFileConfig, context: ProcessFileContext) {
let file_name = format!("{}_{}", context.crate_name, config.suffix);
context.test_dir.join(file_name)
};
let mut file = File::create(file_path).unwrap();

let mut file = File::create(&file_path).unwrap();
write!(file, "{new_code}").unwrap();

if existing_file_path.is_none() && context.create_flag {
print_new_file(&file_path);
}
}

fn find_test_file(test_dir: &Path, suffix: &str) -> Option<PathBuf> {
Expand Down
16 changes: 16 additions & 0 deletions framework/meta/src/cmd/standalone/scen_test_gen/stg_print.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,19 @@ pub fn print_processing(test_file_path: &Path) {
.green()
);
}

pub fn print_no_file(suffix: &str) {
println!(
"{}", format!(
"No file ending in *_{suffix} found. Use the --create flag to create a new {suffix} file.",
)
.yellow()
);
}

pub fn print_new_file(file_path: &Path) {
println!(
"{}",
format!("File {} has been created", file_path.display()).green()
);
}
Loading