-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
232 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Describe the Bug | ||
A clear and concise description of what the bug is. | ||
|
||
### To Reproduce | ||
Steps to reproduce the behavior: | ||
1. | ||
2. | ||
3. | ||
|
||
### Expected Behavior | ||
A clear and concise description of what you expected to happen. | ||
|
||
### Environment | ||
Please provide the following details about your environment: | ||
|
||
- **Operating System**: | ||
- **Rust Version**: (e.g., 1.64.0) | ||
- **Project Version/Commit**: (e.g., 0.1.0 or specific commit hash) | ||
- **Dependencies**: (e.g., versions of dependencies, if relevant) | ||
|
||
### Configuration (if applicable) | ||
Provide any relevant configuration details, such as: | ||
|
||
### Configuration File (e.g., `config.toml`) | ||
```toml | ||
# Your configuration here | ||
``` | ||
|
||
### Docker Setup (if applicable) | ||
Please include any Docker or container-related configuration that is relevant to the bug. | ||
|
||
### Topology (if applicable) | ||
```yaml | ||
# Your topology.yaml or equivalent file | ||
``` | ||
|
||
### Logs and Debug Information | ||
If possible, provide logs or debug information that might help in diagnosing the issue. | ||
|
||
```text | ||
# Your log output here | ||
``` | ||
|
||
### Additional Context | ||
Add any other context about the problem here, including potential workarounds or related issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Is your feature request related to a problem? Please describe. | ||
A clear and concise description of what the problem is. | ||
|
||
### Describe the solution you'd like | ||
A clear and concise description of what you want to happen. | ||
|
||
### Describe alternatives you've considered | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
### Additional Context | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
use brro_compressor::utils::error::calculate_error; | ||
use std::fs; | ||
use std::path::{Path, PathBuf}; | ||
use wavbrro::wavbrro::WavBrro; | ||
|
||
const TEST_FILE_NAME: &str = "go_gc_heap_goal_bytes.wbro"; | ||
const TEST_COMPRESSED_FILE_NAME: &str = "go_gc_heap_goal_bytes.bro"; | ||
const TEST_WBRO_PATH: &str = "tests/wbros/go_gc_heap_goal_bytes.wbro"; | ||
|
||
#[test] | ||
fn test_compressor_idw_lossless() { | ||
test_lossless_compression("idw") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_idw_lossy() { | ||
test_lossy_compression("fft") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_polynomial_lossless() { | ||
test_lossless_compression("polynomial") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_polynomial_lossy() { | ||
test_lossy_compression("fft") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_noop() { | ||
test_lossless_compression("noop") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_fft_lossy() { | ||
test_lossy_compression("fft") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_auto_lossless() { | ||
test_lossless_compression("auto") | ||
} | ||
|
||
#[test] | ||
fn test_compressor_auto_lossy() { | ||
test_lossy_compression("auto") | ||
} | ||
|
||
fn test_lossless_compression(compressor: &str) { | ||
test_compression_decompression_flow(compressor, 0, compare_samples_lossless) | ||
} | ||
|
||
fn test_lossy_compression(compressor: &str) { | ||
test_compression_decompression_flow(compressor, 5, compare_samples_with_allowed_error) | ||
} | ||
|
||
#[test] | ||
fn test_compressor_constant() { | ||
// tests/wbros/uptime.wbro constant data which can be compressed by constant compressor | ||
let test_dir = tempfile::tempdir().unwrap().into_path(); | ||
fs::copy("tests/wbros/uptime.wbro", test_dir.join("uptime.wbro")).unwrap(); | ||
|
||
run_compressor(&[ | ||
"--compressor", | ||
"noop", | ||
test_dir.join("uptime.wbro").to_str().unwrap(), | ||
]); | ||
|
||
run_compressor(&["-u", test_dir.join("uptime.bro").to_str().unwrap()]); | ||
|
||
compare_samples_lossless( | ||
&PathBuf::from("tests/wbros/uptime.wbro"), | ||
&test_dir.join("uptime.wbro"), | ||
) | ||
} | ||
|
||
/// Runs compression and decompression test for a specified compressor. | ||
/// max_error is an error level, compression speed is set as the lowest (0). | ||
/// | ||
/// It compresses tests/wbros/go_gc_duration_count.wbro file, decompresses | ||
/// got .bro file, and compares the original .wbro and the decompressed one. | ||
fn test_compression_decompression_flow( | ||
compressor: &str, | ||
allowed_error: u8, | ||
compare_fn: fn(original: &Path, processed: &Path), | ||
) { | ||
let test_dir = prepare_test_dir(); | ||
|
||
// Running data compression | ||
run_compressor(&[ | ||
"--compressor", | ||
compressor, | ||
"--error", | ||
allowed_error.to_string().as_str(), | ||
test_dir.join(TEST_FILE_NAME).to_str().unwrap(), | ||
]); | ||
|
||
// Running data decompression | ||
run_compressor(&[ | ||
"-u", | ||
test_dir.join(TEST_COMPRESSED_FILE_NAME).to_str().unwrap(), | ||
]); | ||
|
||
compare_fn( | ||
&PathBuf::from(TEST_WBRO_PATH), | ||
&test_dir.join(TEST_FILE_NAME), | ||
) | ||
} | ||
|
||
/// Prepares test directory and copies test wbro file there. | ||
fn prepare_test_dir() -> PathBuf { | ||
let test_dir = tempfile::tempdir().unwrap().into_path(); | ||
fs::copy(TEST_WBRO_PATH, test_dir.join(TEST_FILE_NAME)).unwrap(); | ||
test_dir | ||
} | ||
|
||
/// Runs compressor binary with provided arguments. | ||
fn run_compressor(args: &[&str]) { | ||
let compressor_bin = env!("CARGO_BIN_EXE_brro-compressor"); | ||
let exit_status = std::process::Command::new(compressor_bin) | ||
.args(args) | ||
.status() | ||
.unwrap(); | ||
|
||
assert!(exit_status.success()); | ||
} | ||
|
||
fn compare_samples_lossless(original: &Path, uncompressed: &Path) { | ||
let original_samples = WavBrro::from_file(original).unwrap(); | ||
let uncompressed_samples = WavBrro::from_file(uncompressed).unwrap(); | ||
assert_eq!(original_samples, uncompressed_samples); | ||
} | ||
|
||
fn compare_samples_with_allowed_error(original: &Path, uncompressed: &Path) { | ||
const MAX_ALLOWED_ERROR: f64 = 0.05; | ||
|
||
let original_samples = WavBrro::from_file(original).unwrap(); | ||
let uncompressed_samples = WavBrro::from_file(uncompressed).unwrap(); | ||
let err = calculate_error(&original_samples, &uncompressed_samples); | ||
|
||
assert!( | ||
err <= MAX_ALLOWED_ERROR, | ||
"Error: {}\nOriginal : {:?}\nUncompressed: {:?}", | ||
err, | ||
original_samples, | ||
uncompressed_samples | ||
); | ||
} |