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
use std::fs;
use std::io;
use std::io::Write;
use std::path;

use globwalk;
use tempfile;

use errors;
use errors::ResultChainExt;

/// A directory in the filesystem that is automatically deleted when it goes out of scope.
pub use tempfile::TempDir;

/// Extend `TempDir` to perform operations on relative paths within the temp directory via
/// `ChildPath`.
pub trait TempDirChildExt {
    /// Create a path within the temp directory.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// extern crate assert_cli;
    /// use assert_cli::temp::*;
    ///
    /// let temp = TempDir::new("TempDirChildExt_demo").unwrap();
    /// println!("{:?}", temp.path());
    /// println!("{:?}", temp.child("foo/bar.txt").path());
    /// temp.close().unwrap();
    /// ```
    fn child<P>(&self, path: P) -> ChildPath
    where
        P: AsRef<path::Path>;
}

impl TempDirChildExt for tempfile::TempDir {
    fn child<P>(&self, path: P) -> ChildPath
    where
        P: AsRef<path::Path>,
    {
        ChildPath::new(self.path().join(path.as_ref()))
    }
}

/// A path within a TempDir
pub struct ChildPath {
    path: path::PathBuf,
}

impl ChildPath {
    /// Wrap a path for use with special built extension traits.
    ///
    /// See trait implementations or `TempDirChildExt` for more details.
    pub fn new<P>(path: P) -> Self
    where
        P: Into<path::PathBuf>,
    {
        Self { path: path.into() }
    }

    /// Access the path.
    pub fn path(&self) -> &path::Path {
        &self.path
    }
}

/// Extend `ChildPath` to create empty files.
pub trait ChildPathTouchExt {
    /// Create an empty file at `ChildPath`.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// extern crate assert_cli;
    /// use assert_cli::temp::*;
    ///
    /// let temp = TempDir::new("TempDirChildExt_demo").unwrap();
    /// temp.child("foo.txt").touch().unwrap();
    /// temp.close().unwrap();
    /// ```
    fn touch(&self) -> io::Result<()>;
}

impl ChildPathTouchExt for ChildPath {
    fn touch(&self) -> io::Result<()> {
        touch(self.path())
    }
}

/// Extend `ChildPath` to write binary files.
pub trait ChildPathWriteBinExt {
    /// Write a binary file at `ChildPath`.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// extern crate assert_cli;
    /// use assert_cli::temp::*;
    ///
    /// let temp = TempDir::new("TempDirChildExt_demo").unwrap();
    /// temp.child("foo.txt").write_binary(b"To be or not to be...").unwrap();
    /// temp.close().unwrap();
    /// ```
    fn write_binary(&self, data: &[u8]) -> io::Result<()>;
}

impl ChildPathWriteBinExt for ChildPath {
    fn write_binary(&self, data: &[u8]) -> io::Result<()> {
        write_binary(self.path(), data)
    }
}

/// Extend `ChildPath` to write text files.
pub trait ChildPathWriteStrExt {
    /// Write a text file at `ChildPath`.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// extern crate assert_cli;
    /// use assert_cli::temp::*;
    ///
    /// let temp = TempDir::new("TempDirChildExt_demo").unwrap();
    /// temp.child("foo.txt").write_str("To be or not to be...").unwrap();
    /// temp.close().unwrap();
    /// ```
    fn write_str(&self, data: &str) -> io::Result<()>;
}

impl ChildPathWriteStrExt for ChildPath {
    fn write_str(&self, data: &str) -> io::Result<()> {
        write_str(self.path(), data)
    }
}

/// Extend `TempDir` to copy files into it.
pub trait TempDirCopyExt {
    /// Copy files and directories into the current path from the `source` according to the glob
    /// `patterns`.
    ///
    /// # Examples
    ///
    /// ```rust,ignore
    /// extern crate assert_cli;
    /// use assert_cli::temp::*;
    ///
    /// let temp = TempDir::new("TempDirChildExt_demo").unwrap();
    /// temp.copy_from(".", &["*.rs"]).unwrap();
    /// temp.close().unwrap();
    /// ```
    fn copy_from<P, S>(&self, source: P, patterns: &[S]) -> Result<(), errors::FixtureError>
    where
        P: AsRef<path::Path>,
        S: AsRef<str>;
}

impl TempDirCopyExt for tempfile::TempDir {
    fn copy_from<P, S>(&self, source: P, patterns: &[S]) -> Result<(), errors::FixtureError>
    where
        P: AsRef<path::Path>,
        S: AsRef<str>,
    {
        copy_from(self.path(), source.as_ref(), patterns)
    }
}

impl TempDirCopyExt for ChildPath {
    fn copy_from<P, S>(&self, source: P, patterns: &[S]) -> Result<(), errors::FixtureError>
    where
        P: AsRef<path::Path>,
        S: AsRef<str>,
    {
        copy_from(self.path(), source.as_ref(), patterns)
    }
}

fn touch(path: &path::Path) -> io::Result<()> {
    fs::File::create(path)?;
    Ok(())
}

fn write_binary(path: &path::Path, data: &[u8]) -> io::Result<()> {
    let mut file = fs::File::create(path)?;
    file.write_all(data)?;
    Ok(())
}

fn write_str(path: &path::Path, data: &str) -> io::Result<()> {
    write_binary(path, data.as_bytes())
}

fn copy_from<S>(
    target: &path::Path,
    source: &path::Path,
    patterns: &[S],
) -> Result<(), errors::FixtureError>
where
    S: AsRef<str>,
{
    for entry in globwalk::GlobWalker::from_patterns(patterns, source)
        .chain(errors::FixtureError::default())?
        .follow_links(true)
    {
        let entry = entry.chain(errors::FixtureError::default())?;
        let rel = entry
            .path()
            .strip_prefix(source)
            .expect("entries to be under `source`");
        let target_path = target.join(rel);
        if entry.file_type().is_dir() {
            fs::create_dir_all(target_path).chain(errors::FixtureError::default())?;
        } else if entry.file_type().is_file() {
            fs::copy(entry.path(), target).chain(errors::FixtureError::default())?;
        }
    }
    Ok(())
}