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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
//! # test_dir
//!
//! `TestDir` is a temporary directory builder. The target is to define a file structure for test purpose.
//! It is not recommended to use in non-test environment.
//!
//! ```
//! use std::path::PathBuf;
//! use test_dir::{TestDir,FileType,DirBuilder};
//!
//! let temp = TestDir::temp()
//!     .create("test/dir", FileType::Dir)
//!     .create("test/file", FileType::EmptyFile)
//!     .create("test/random_file", FileType::RandomFile(100))
//!     .create("otherdir/zero_file", FileType::ZeroFile(100));
//!
//! let path: PathBuf = temp.path("test/random_file");
//! assert!(path.exists());
//! ```

use rand::distributions::Alphanumeric;
use rand::{thread_rng, Rng};
use std::fs;
use std::io::prelude::*;
use std::io::BufWriter;
use std::path::{Path, PathBuf};

/// Supported file types with TestDir
#[derive(PartialEq, Debug)]
pub enum FileType {
    /// Create empty file
    EmptyFile,
    /// Create a file with random content of the given size
    RandomFile(usize),
    /// Create a file with a given len of "0"s
    ZeroFile(usize),
    //ContentFile(&dyn std::io::Read),
    /// Create a directory
    Dir,
}

/// Temporary directory
pub struct TempDir {
    path: PathBuf,
    delete: PathBuf,
}

impl TempDir {
    /// Try to create a temporary directory inside system tmp directory.
    pub fn temp() -> std::io::Result<Self> {
        let mut temp = std::env::temp_dir().to_path_buf();
        temp.push(TempDir::random_name());
        TempDir::create(temp.as_path())
    }

    /// Try to create a temporary directory inside the current directory.
    pub fn current_rnd() -> std::io::Result<Self> {
        let mut temp = std::env::current_dir()?.to_path_buf();
        temp.push(TempDir::random_name());
        TempDir::create(temp.as_path())
    }

    /// Try to create a temporary directory with a given path inside the current directory.
    pub fn current(path: &Path) -> std::io::Result<Self> {
        let mut temp = std::env::current_dir()?.to_path_buf();
        temp.push(path);
        TempDir::create(temp.as_path())
    }

    /// Get the path of the temporary directory.
    pub fn path(&self) -> PathBuf {
        self.path.clone()
    }

    // Helper functions
    fn create(path: &Path) -> std::io::Result<Self> {
        let mut p = path;
        while let Some(ppath) = p.parent() {
            if ppath.exists() {
                break;
            }
            p = ppath;
        }
        fs::create_dir_all(&path)?;
        Ok(TempDir {
            path: path.to_path_buf(),
            delete: p.to_path_buf(),
        })
    }

    fn random_name() -> String {
        // https://stackoverflow.com/a/65478580/113632
        thread_rng()
            .sample_iter(&Alphanumeric)
            .map(char::from)
            .take(8)
            .collect()
    }
}

impl Drop for TempDir {
    /// Delete the created directory tree.
    fn drop(&mut self) {
        let _ = fs::remove_dir_all(self.delete.as_path());
    }
}

/// Test directory creator 
pub struct TestDir {
    // Directory lifetime
    _tempdir: Option<TempDir>,

    root: PathBuf,

    files: Vec<PathBuf>,
    dirs: Vec<PathBuf>,
}

/// File structure builder trait
pub trait DirBuilder {
    /// Create a file or directory under the `path`
    fn create(self, path: &str, filetype: FileType) -> Self;
    /// Remove a file or directory under the `path`
    fn remove(self, path: &str) -> Self;
    /// Prefix `path` with the current context of the DirBuilder
    fn path(&self, path: &str) -> PathBuf;
    /// Return the root path to the temporary directory
    fn root(&self) -> &Path;
}

impl TestDir {
    /// Creates if possible a temporary directory
    pub fn temp() -> Self {
        if let Ok(tempdir) = TempDir::temp() {
            TestDir::new(tempdir)
        } else {
            panic!("Cannot create temp dir in system temp");
        }
    }

    /// Creates if possible a temporary directory with random name inside the current directory
    pub fn current_rnd() -> Self {
        if let Ok(tempdir) = TempDir::current_rnd() {
            TestDir::new(tempdir)
        } else {
            panic!("Cannot create temp dir in current directory")
        }
    }

    /// Creates if possible a temporary directory specified in `path` relative to the current directory
    pub fn current(path: &str) -> Self {
        let path = Path::new(path);
        if let Ok(tempdir) = TempDir::current(path) {
            TestDir::new(tempdir)
        } else {
            panic!("Cannot create dir in current directory")
        }
    }

    /// Returns all files created with DirBuilder
    pub fn get_files<'a>(&self) -> &Vec<PathBuf> {
        &self.files
    }
    
    /// Returns all directories created with DirBuilder
    pub fn get_dirs<'a>(&self) -> &Vec<PathBuf> {
        &self.dirs
    }


    /*
    fn load(&mut self, path: &Path) {

    }
    */

    // Helper functions
    fn new(tempdir: TempDir) -> Self {
        let root = tempdir.path().to_path_buf();
        Self {
            _tempdir: Some(tempdir),
            root,
            files: vec![],
            dirs: vec![],
        }
    }

    fn create_dir(&mut self, path: &Path) -> std::io::Result<()> {
        let mut build_path = self.root.clone();
        build_path.push(path);
        let result = fs::create_dir_all(build_path.as_path());
        if let Ok(_) = result {
            self.dirs.push(build_path);
        }
        result
    }

    fn create_file(&mut self, path: &Path, filetype: FileType) -> std::io::Result<()> {
        let mut build_path = self.root.clone();
        build_path.push(path);
        let file = fs::File::create(build_path.as_path());
        if file.is_err() {
            panic!("Create file {:?} - {:?}", build_path, file);
        }
        let file = file?;
        let mut buffer = BufWriter::new(file);

        match filetype {
            FileType::EmptyFile => { /* pass */ }
            FileType::ZeroFile(size) => {
                for _ in 0..size {
                    let _ = buffer.write(b"0")?;
                }
            }
            FileType::RandomFile(size) => {
                let mut numbuf: Vec<u8> = vec![];
                let mut rng = rand::thread_rng();
                for _ in 0..size {
                    numbuf.push(rng.gen());
                }
                let _ = buffer.write(numbuf.as_slice())?;
            }

            _ => { /* Dir - already created in create_dir */ }
        };
        self.files.push(build_path);
        Ok(())
    }

    fn remove_file(&mut self, path: &Path) -> std::io::Result<()> {
        let mut build_path = self.root.clone();
        build_path.push(path);
        if build_path.exists() {
            if build_path.is_dir() {
                fs::remove_dir_all(build_path)?;
            } else if build_path.is_file() {
                fs::remove_file(build_path)?;
            }
        }
        Ok(())
    }
}

impl DirBuilder for TestDir {
    /// Create a file or directory under the `path`
    fn create(mut self, path: &str, filetype: FileType) -> Self {
        let path = Path::new(path);
        if path.is_absolute() {
            panic!("Only relative paths are allowed.");
        }
        if filetype == FileType::Dir {
            let _ = self.create_dir(path).unwrap();
        } else {
            if let Some(p) = path.parent() {
                let _ = self.create_dir(p).unwrap();
            } // else { assume that current dir exists }
            let _ = self.create_file(path, filetype).unwrap();
        }
        self
    }

    /// Remove a file or directory under the `path`
    fn remove(mut self, path: &str) -> Self {
        let path = Path::new(path);
        if path.is_absolute() {
            panic!("Only relative paths are allowed.");
        }
        let remove = self.remove_file(path);
        if remove.is_err() {
            panic!("Cannot remove file: {:?}", remove);
        }
        self
    }

    /// Prefix `path` with the current context of the DirBuilder
    fn path(&self, path: &str) -> PathBuf {
        let mut root = self.root.clone();
        let path = PathBuf::from(path);
        root.push(path);

        root
    }

    /// Return the root path to the temporary directory
    fn root(&self) -> &Path {
        self.root.as_path()
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_testdir_temp_dir() {
        let path;
        {
            let dir = TestDir::temp();

            // Dir created
            assert!(dir.root().exists());

            let temp_dir = std::env::temp_dir();
            // Dir inside system temp dir
            assert!(dir.root().starts_with(temp_dir));

            path = dir.root().to_path_buf();
        }
        // Dir deleted after out of scope
        assert!(!path.exists());
    }

    #[test]
    fn test_testdir_current_rnd_dir() {
        let path;
        {
            let dir = TestDir::current_rnd();

            // Dir created
            assert!(dir.root().exists());

            let current_dir = std::env::current_dir().unwrap();
            // Dir inside system temp dir
            assert!(dir.root().starts_with(current_dir));

            path = dir.root().to_path_buf();
        }
        // Dir deleted after out of scope
        assert!(!path.exists());
    }

    #[test]
    fn test_testdir_current_dir() {
        let path;
        {
            let dir = TestDir::current("a/b/c");

            // Dir created
            assert!(dir.root().exists());

            let current_dir = std::env::current_dir().unwrap();
            // Dir inside system temp dir
            assert!(dir.root().starts_with(current_dir));

            path = dir.root().to_path_buf();
        }
        // Dir deleted after out of scope
        assert!(!path.exists());
    }

    #[test]
    fn test_testdir_path() {
        let str_path = "a/b/c/d/e";

        let dir = TestDir::temp().create(str_path, FileType::Dir);

        let mut root = dir.root().to_path_buf();
        let path = Path::new(str_path);

        root.push(path);

        assert_eq!(dir.path(str_path), root);
        assert!(dir.path(str_path).exists());
    }

    #[test]
    fn test_testdir_create() {
        let dir = TestDir::temp();

        let name = "dir";
        let dir = dir.create(name, FileType::Dir);
        assert!(dir.path(name).exists());
        assert!(dir.path(name).is_dir());

        let name = "empty";
        let dir = dir.create(name, FileType::EmptyFile);
        assert!(dir.path(name).exists());
        assert!(dir.path(name).is_file());
        assert_eq!(dir.path(name).metadata().unwrap().len(), 0);

        let name = "random";
        let len = 1024;
        let dir = dir.create(name, FileType::RandomFile(len));
        assert!(dir.path(name).exists());
        assert!(dir.path(name).is_file());
        assert_eq!(dir.path(name).metadata().unwrap().len(), len as u64);

        let name = "zero";
        let len = 1024;
        let dir = dir.create(name, FileType::ZeroFile(len));
        assert!(dir.path(name).exists());
        assert!(dir.path(name).is_file());
        assert_eq!(dir.path(name).metadata().unwrap().len(), len as u64);
    }

    #[test]
    fn test_testdir_remove() {
        let dir = TestDir::temp();

        let name = "test_file";
        let dir = dir.create(name, FileType::EmptyFile);
        assert!(dir.path(name).exists());

        let dir = dir.remove(name);
        assert!(!dir.path(name).exists());
    }
}