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
use crate::{
commander::{Commander, Error as CommanderError},
config::{Config, CARGO_TOML, TRDELNIK_TOML},
};
use fehler::throws;
use std::{
env, io,
path::{Path, PathBuf},
};
use thiserror::Error;
use tokio::fs;
use toml::{value::Table, Value};
const TESTS_WORKSPACE: &str = "trdelnik-tests";
const TESTS_DIRECTORY: &str = "tests";
const TESTS_FILE_NAME: &str = "test.rs";
#[derive(Error, Debug)]
pub enum Error {
#[error("cannot parse Cargo.toml")]
CannotParseCargoToml,
#[error("{0:?}")]
Io(#[from] io::Error),
#[error("{0:?}")]
Toml(#[from] toml::de::Error),
#[error("{0:?}")]
Commander(#[from] CommanderError),
}
pub struct TestGenerator;
impl Default for TestGenerator {
fn default() -> Self {
Self::new()
}
}
impl TestGenerator {
pub fn new() -> Self {
Self
}
#[throws]
pub async fn generate(&self) {
let root = Config::discover_root().expect("failed to find the root folder");
let root_path = root.to_str().unwrap().to_string();
let commander = Commander::with_root(root_path);
commander.create_program_client_crate().await?;
self.generate_test_files(&root).await?;
self.update_workspace(&root).await?;
self.build_program_client(&commander).await?;
}
#[throws]
async fn build_program_client(&self, commander: &Commander) {
commander.build_programs().await?;
commander.generate_program_client_deps().await?;
commander.generate_program_client_lib_rs().await?;
}
#[throws]
async fn generate_test_files(&self, root: &Path) {
let workspace_path = root.join(TESTS_WORKSPACE);
self.create_directory(&workspace_path, TESTS_WORKSPACE)
.await?;
let tests_path = workspace_path.join(TESTS_DIRECTORY);
self.create_directory(&tests_path, TESTS_DIRECTORY).await?;
let test_path = tests_path.join(TESTS_FILE_NAME);
let test_content = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/templates/trdelnik-tests/test.rs"
));
self.create_file(&test_path, TESTS_FILE_NAME, test_content)
.await?;
let cargo_toml_path = workspace_path.join(CARGO_TOML);
let cargo_toml_content = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/templates/trdelnik-tests/Cargo.toml.tmpl"
));
self.create_file(&cargo_toml_path, CARGO_TOML, cargo_toml_content)
.await?;
self.add_program_dev_deps(root, &cargo_toml_path).await?;
let trdelnik_toml_path = root.join(TRDELNIK_TOML);
let trdelnik_toml_content = include_str!(concat!(
env!("CARGO_MANIFEST_DIR"),
"/src/templates/Trdelnik.toml.tmpl"
));
self.create_file(&trdelnik_toml_path, TRDELNIK_TOML, trdelnik_toml_content)
.await?;
}
async fn create_file<'a>(
&self,
path: &'a PathBuf,
name: &str,
content: &str,
) -> Result<&'a PathBuf, Error> {
match path.exists() {
true => println!("Skipping creating the {} file", name),
false => {
println!("Creating the {} file ...", name);
fs::write(path, content).await?;
}
};
Ok(path)
}
async fn create_directory<'a>(
&self,
path: &'a PathBuf,
name: &str,
) -> Result<&'a PathBuf, Error> {
match path.exists() {
true => println!("Skipping creating the {} directory", name),
false => {
println!("Creating the {} directory ...", name);
fs::create_dir(path).await?;
}
};
Ok(path)
}
#[throws]
async fn update_workspace(&self, root: &PathBuf) {
let cargo = Path::new(&root).join(CARGO_TOML);
let mut content: Value = fs::read_to_string(&cargo).await?.parse()?;
let test_workspace_value = Value::String(String::from(TESTS_WORKSPACE));
let members = content
.as_table_mut()
.ok_or(Error::CannotParseCargoToml)?
.entry("workspace")
.or_insert(Value::Table(Table::default()))
.as_table_mut()
.ok_or(Error::CannotParseCargoToml)?
.entry("members")
.or_insert(Value::Array(vec![test_workspace_value.clone()]))
.as_array_mut()
.ok_or(Error::CannotParseCargoToml)?;
match members.iter().find(|&x| x.eq(&test_workspace_value)) {
Some(_) => println!("Skipping updating project workspace"),
None => {
members.push(test_workspace_value);
println!("Project workspace successfully updated");
}
};
fs::write(cargo, content.to_string()).await?;
}
#[throws]
async fn add_program_dev_deps(&self, root: &Path, cargo_toml_path: &Path) {
let programs = self.get_programs(root).await?;
if !programs.is_empty() {
println!("Adding programs to Cargo.toml ...");
let mut content: Value = fs::read_to_string(cargo_toml_path).await?.parse()?;
let dev_deps = content
.get_mut("dev-dependencies")
.and_then(Value::as_table_mut)
.ok_or(Error::CannotParseCargoToml)?;
for dep in programs {
if let Value::Table(table) = dep {
let (name, value) = table.into_iter().next().unwrap();
dev_deps.entry(name).or_insert(value);
}
}
fs::write(cargo_toml_path, content.to_string()).await?;
}
}
async fn get_programs(&self, root: &Path) -> Result<Vec<Value>, Error> {
let programs = root.join("programs");
if !programs.exists() {
println!("Programs folder does not exist. Skipping adding dev dependencies.");
return Ok(Vec::new());
}
println!("Searching for programs ...");
let mut program_names: Vec<Value> = vec![];
let programs = std::fs::read_dir(programs)?;
for program in programs {
let file = program?;
let file_name = file.file_name();
if file.path().is_dir() {
let path = file.path().join(CARGO_TOML);
if path.exists() {
let name = file_name.to_str().unwrap();
let dependency = self.get_program_dep(&path, name).await?;
program_names.push(dependency);
}
}
}
Ok(program_names)
}
#[throws]
async fn get_program_dep<'a>(&self, dir: &Path, dir_name: &'a str) -> Value {
let content: Value = fs::read_to_string(&dir).await?.parse()?;
let name = content
.get("package")
.and_then(Value::as_table)
.and_then(|table| table.get("name"))
.and_then(Value::as_str)
.ok_or(Error::CannotParseCargoToml)?;
format!("{} = {{ path = \"../programs/{}\" }}", name, dir_name)
.parse()
.unwrap()
}
}