|
1 |
| -use std::{fs, io, path::PathBuf}; |
| 1 | +use std::{fs, io::{self, Write}, path::PathBuf}; |
2 | 2 |
|
3 | 3 | use dirs::config_dir;
|
4 | 4 |
|
5 | 5 | use crate::models::{Config, ConfigParsingError};
|
6 | 6 |
|
7 |
| -/// Get path to config file |
| 7 | +/// Get path to config directory |
8 | 8 | fn get_config_dir() -> PathBuf {
|
9 | 9 | config_dir().unwrap_or_default()
|
10 | 10 | }
|
11 | 11 |
|
| 12 | +/// Get path to config file |
| 13 | +pub fn get_config_file_path() -> PathBuf { |
| 14 | + get_config_dir().join("envfetch.toml") |
| 15 | +} |
| 16 | + |
12 | 17 | /// Read config file
|
13 |
| -pub fn read_config() -> Result<Config, ConfigParsingError> { |
14 |
| - let path = get_config_dir().join("envfetch.toml"); |
| 18 | +pub fn read_config_from_file(path: PathBuf) -> Result<Config, ConfigParsingError> { |
15 | 19 | if !path.exists() {
|
16 | 20 | return Err(ConfigParsingError::FileDoesntExists);
|
17 | 21 | }
|
18 | 22 |
|
19 | 23 | let content =
|
20 | 24 | fs::read_to_string(path).map_err(|err| ConfigParsingError::FSError(err.to_string()))?;
|
21 | 25 |
|
| 26 | + read_config(content) |
| 27 | +} |
| 28 | + |
| 29 | +/// Read config file |
| 30 | +fn read_config(content: String) -> Result<Config, ConfigParsingError> { |
22 | 31 | toml::from_str::<Config>(&content)
|
23 | 32 | .map_err(|err| ConfigParsingError::ParsingError(err.to_string()))
|
24 | 33 | }
|
25 | 34 |
|
26 | 35 | /// Initialize config file
|
27 |
| -pub fn init_config() -> io::Result<()> { |
28 |
| - let default = include_str!("../assets/default_config.toml"); |
| 36 | +pub fn init_config<W: Write>(path: PathBuf, mut buffer: W) -> io::Result<()> { |
| 37 | + let default = default_config(); |
29 | 38 |
|
30 |
| - let file = get_config_dir().join("envfetch.toml"); |
| 39 | + fs::write(&path, default) |
| 40 | + .map(|_| writeln!(buffer, "Successfully initialized config at {}", path.display()).expect("Failed to write to buffer")) |
| 41 | +} |
31 | 42 |
|
32 |
| - fs::write(&file, default) |
33 |
| - .map(|_| eprintln!("Successfully initialized config at {}", file.display())) |
| 43 | +/// Get default config ile content |
| 44 | +fn default_config() -> &'static str { |
| 45 | + include_str!("../assets/default_config.toml") |
34 | 46 | }
|
35 | 47 |
|
36 | 48 | #[cfg(test)]
|
37 | 49 | mod tests {
|
38 |
| - use crate::config::get_config_dir; |
| 50 | + use super::*; |
| 51 | + use assert_fs::prelude::*; |
39 | 52 | use dirs::config_dir;
|
40 | 53 |
|
41 | 54 | #[test]
|
42 | 55 | fn test_get_config_dir() {
|
43 | 56 | assert_eq!(get_config_dir(), config_dir().unwrap_or_default());
|
44 | 57 | }
|
| 58 | + |
| 59 | + #[test] |
| 60 | + fn test_get_config_file() { |
| 61 | + assert_eq!(get_config_file_path(), config_dir().unwrap_or_default().join("envfetch.toml")); |
| 62 | + } |
| 63 | + |
| 64 | + #[test] |
| 65 | + fn test_default_config() { |
| 66 | + assert_eq!(default_config(), include_str!("../assets/default_config.toml")); |
| 67 | + } |
| 68 | + |
| 69 | + #[test] |
| 70 | + fn test_read_config_default() { |
| 71 | + let result = read_config(default_config().to_owned()).unwrap(); |
| 72 | + assert_eq!(result, Config { |
| 73 | + print_format: None |
| 74 | + }) |
| 75 | + } |
| 76 | + |
| 77 | + #[test] |
| 78 | + fn test_read_config_from_existent_file() { |
| 79 | + let file = assert_fs::NamedTempFile::new("envfetch.toml").unwrap(); |
| 80 | + file.write_str(default_config()).unwrap(); |
| 81 | + let result = read_config_from_file(file.path().to_path_buf()).unwrap(); |
| 82 | + assert_eq!(result, Config { |
| 83 | + print_format: None |
| 84 | + }) |
| 85 | + } |
| 86 | + |
| 87 | + #[test] |
| 88 | + fn test_read_config_from_unexistent_file() { |
| 89 | + let file = assert_fs::NamedTempFile::new("envfetch.toml").unwrap(); |
| 90 | + let path = file.path().to_path_buf(); |
| 91 | + file.close().unwrap(); |
| 92 | + let result = read_config_from_file(path); |
| 93 | + assert_eq!(result, Err(ConfigParsingError::FileDoesntExists)) |
| 94 | + } |
| 95 | + |
| 96 | + #[test] |
| 97 | + fn test_init_config() { |
| 98 | + let file = assert_fs::NamedTempFile::new("envfetch.toml").unwrap(); |
| 99 | + let mut buffer = vec![]; |
| 100 | + init_config(file.path().to_path_buf(), &mut buffer).unwrap(); |
| 101 | + assert!(String::from_utf8(buffer).unwrap().contains(&format!("Successfully initialized config at {}", file.display()))); |
| 102 | + } |
45 | 103 | }
|
0 commit comments