summaryrefslogtreecommitdiff
path: root/tests/subplots/common/runcmd_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/subplots/common/runcmd_test.rs')
-rw-r--r--tests/subplots/common/runcmd_test.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/subplots/common/runcmd_test.rs b/tests/subplots/common/runcmd_test.rs
new file mode 100644
index 0000000..7759e5f
--- /dev/null
+++ b/tests/subplots/common/runcmd_test.rs
@@ -0,0 +1,25 @@
+use subplotlib::steplibrary::files::{self, Datadir};
+use subplotlib::steplibrary::runcmd::Runcmd;
+
+#[cfg(unix)]
+use std::os::unix::fs::PermissionsExt;
+
+#[step]
+#[context(Datadir)]
+fn create_script_from_embedded(
+ context: &ScenarioContext,
+ filename: &str,
+ embedded: SubplotDataFile,
+) {
+ files::create_from_embedded_with_other_name::call(context, filename, embedded)?;
+ let filename = context.with(|dd: &Datadir| dd.canonicalise_filename(filename), false)?;
+ let mut perms = std::fs::symlink_metadata(&filename)?.permissions();
+ #[cfg(unix)]
+ perms.set_mode(perms.mode() | 0o111);
+ std::fs::set_permissions(&filename, perms)?;
+}
+
+#[step]
+fn prepend_to_path(context: &mut Runcmd, dirname: &str) {
+ context.prepend_to_path(dirname);
+}