|
| 1 | +//! generate command |
| 2 | +
|
| 3 | +use clap::{Parser, Subcommand}; |
| 4 | +use foundry_common::fs; |
| 5 | +use std::path::Path; |
| 6 | +use yansi::Paint; |
| 7 | + |
| 8 | +/// CLI arguments for `forge generate`. |
| 9 | +#[derive(Debug, Parser)] |
| 10 | +pub struct GenerateArgs { |
| 11 | + #[clap(subcommand)] |
| 12 | + pub sub: GenerateSubcommands, |
| 13 | +} |
| 14 | + |
| 15 | +#[derive(Debug, Subcommand)] |
| 16 | +pub enum GenerateSubcommands { |
| 17 | + /// Scaffolds test file for given contract. |
| 18 | + Test(GenerateTestArgs), |
| 19 | +} |
| 20 | + |
| 21 | +#[derive(Debug, Parser)] |
| 22 | +pub struct GenerateTestArgs { |
| 23 | + /// Contract name for test generation. |
| 24 | + #[clap(long, short, value_name = "CONTRACT_NAME")] |
| 25 | + pub contract_name: String, |
| 26 | +} |
| 27 | + |
| 28 | +impl GenerateTestArgs { |
| 29 | + pub fn run(self) -> eyre::Result<()> { |
| 30 | + let contract_name = format_identifier(&self.contract_name, true); |
| 31 | + let instance_name = format_identifier(&self.contract_name, false); |
| 32 | + |
| 33 | + // Create the test file content. |
| 34 | + let test_content = include_str!("../../../../assets/generated/TestTemplate.t.sol"); |
| 35 | + let test_content = test_content |
| 36 | + .replace("{contract_name}", &contract_name) |
| 37 | + .replace("{instance_name}", &instance_name); |
| 38 | + |
| 39 | + // Create the test directory if it doesn't exist. |
| 40 | + fs::create_dir_all("test")?; |
| 41 | + |
| 42 | + // Define the test file path |
| 43 | + let test_file_path = Path::new("test").join(format!("{}.t.sol", contract_name)); |
| 44 | + |
| 45 | + // Write the test content to the test file. |
| 46 | + fs::write(&test_file_path, test_content)?; |
| 47 | + |
| 48 | + println!("{} test file: {}", Paint::green("Generated"), test_file_path.to_str().unwrap()); |
| 49 | + Ok(()) |
| 50 | + } |
| 51 | +} |
| 52 | + |
| 53 | +/// Utility function to convert an identifier to pascal or camel case. |
| 54 | +fn format_identifier(input: &str, is_pascal_case: bool) -> String { |
| 55 | + let mut result = String::new(); |
| 56 | + let mut capitalize_next = is_pascal_case; |
| 57 | + |
| 58 | + for word in input.split_whitespace() { |
| 59 | + if !word.is_empty() { |
| 60 | + let (first, rest) = word.split_at(1); |
| 61 | + let formatted_word = if capitalize_next { |
| 62 | + format!("{}{}", first.to_uppercase(), rest) |
| 63 | + } else { |
| 64 | + format!("{}{}", first.to_lowercase(), rest) |
| 65 | + }; |
| 66 | + capitalize_next = true; |
| 67 | + result.push_str(&formatted_word); |
| 68 | + } |
| 69 | + } |
| 70 | + result |
| 71 | +} |
0 commit comments