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
use super::*;
use std::fs;
use std::fs::File;
use std::io::Write;
use std::path::Path;
use std::process::Command;
pub(crate) fn call_python3(python_commands: &String, path: &Path) -> Result<String, &'static str> {
if let Some(p) = path.parent() {
fs::create_dir_all(p).map_err(|_| "cannot create directory")?;
}
let mut contents = String::new();
contents.push_str(PYTHON_HEADER);
contents.push_str(python_commands);
let mut file = File::create(path).map_err(|_| "cannot create file")?;
file.write_all(contents.as_bytes()).map_err(|_| "cannot write file")?;
file.sync_all().map_err(|_| "cannot sync file")?;
let output = Command::new("python3")
.arg(path)
.output()
.map_err(|_| "cannot run python3")?;
let out = match String::from_utf8(output.stdout) {
Ok(v) => v,
Err(e) => format!("ERROR: cannot convert command line stdout\n{}", e),
};
let err = match String::from_utf8(output.stderr) {
Ok(v) => v,
Err(e) => format!("ERROR: cannot convert command line stderr\n{}", e),
};
let mut results = String::new();
if out.len() > 0 {
results.push_str(&out);
}
if err.len() > 0 {
results.push_str(&err)
}
Ok(results)
}
#[cfg(test)]
mod tests {
use super::*;
const OUT_DIR: &str = "/tmp/plotpy/unit_tests";
#[test]
fn call_python3_works() -> Result<(), &'static str> {
let commands = "print(\"Python says: Hello World!\")".to_string();
let path = Path::new("call_python3_works.py");
let output = call_python3(&commands, &path)?;
let data = fs::read_to_string(&path).map_err(|_| "cannot read test file")?;
let mut correct = String::from(PYTHON_HEADER);
correct.push_str(&commands);
assert_eq!(data, correct);
assert_eq!(output, "Python says: Hello World!\n");
Ok(())
}
#[test]
fn call_python3_create_dir_works() -> Result<(), &'static str> {
let commands = "print(\"Python says: Hello World!\")".to_string();
let path = Path::new(OUT_DIR).join("call_python3_works.py");
let output = call_python3(&commands, &path)?;
let data = fs::read_to_string(&path).map_err(|_| "cannot read test file")?;
let mut correct = String::from(PYTHON_HEADER);
correct.push_str(&commands);
assert_eq!(data, correct);
assert_eq!(output, "Python says: Hello World!\n");
Ok(())
}
#[test]
fn call_python3_twice_works() -> Result<(), &'static str> {
let path = Path::new(OUT_DIR).join("call_python3_twice_works.py");
let commands_first = "print(\"Python says: Hello World!\")".to_string();
let output_first = call_python3(&commands_first, &path)?;
let data_first = fs::read_to_string(&path).map_err(|_| "cannot read test file")?;
let mut correct_first = String::from(PYTHON_HEADER);
correct_first.push_str(&commands_first);
assert_eq!(data_first, correct_first);
assert_eq!(output_first, "Python says: Hello World!\n");
let commands_second = "print(\"Python says: Hello World! again\")".to_string();
let output_second = call_python3(&commands_second, &path)?;
let data_second = fs::read_to_string(&path).map_err(|_| "cannot read test file")?;
let mut correct_second = String::from(PYTHON_HEADER);
correct_second.push_str(&commands_second);
assert_eq!(data_second, correct_second);
assert_eq!(output_second, "Python says: Hello World! again\n");
Ok(())
}
}