2024-05-30 14:50:34 -04:00
|
|
|
#![cfg(test)]
|
|
|
|
|
|
|
|
use std::{collections::HashMap, fs};
|
|
|
|
|
|
|
|
use crate::manip::*;
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn limit_add() {
|
|
|
|
let mut at = LimitIndices::default();
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
at.add_limit(Limit::Block, 123)
|
|
|
|
.add_limit(Limit::Silence, 456);
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let test_at = LimitIndices {
|
2024-05-30 14:50:34 -04:00
|
|
|
block: 123,
|
|
|
|
silence: 456,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(at, test_at);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn limit_combine() {
|
|
|
|
let mut at = LimitIndices::default();
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
at.add_limit(Limit::Block, 123)
|
|
|
|
.add_limit(Limit::Block, 333)
|
|
|
|
.add_limit(Limit::Silence, 123);
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let test_at = LimitIndices {
|
2024-05-30 14:50:34 -04:00
|
|
|
block: 456,
|
|
|
|
silence: 123,
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(at, test_at);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn limitlist_from_map() {
|
|
|
|
let src1 = LimitList::from(HashMap::from([
|
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
|
|
|
(String::from("example.net"), Limit::Block),
|
2024-05-30 14:50:34 -04:00
|
|
|
]));
|
|
|
|
|
|
|
|
assert_eq!(
|
2024-05-31 03:13:02 -04:00
|
|
|
src1.limits,
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
|
|
|
(String::from("example.net"), Limit::Block),
|
2024-05-30 14:50:34 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(src1.trust, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn limitlist_from_map_and_trust() {
|
|
|
|
let src2 = LimitList::build(
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
|
|
|
(String::from("example.net"), Limit::Block),
|
2024-05-30 14:50:34 -04:00
|
|
|
]),
|
|
|
|
123,
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
2024-05-31 03:13:02 -04:00
|
|
|
src2.limits,
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
|
|
|
(String::from("example.net"), Limit::Block),
|
2024-05-30 14:50:34 -04:00
|
|
|
])
|
|
|
|
);
|
|
|
|
assert_eq!(src2.trust, 123);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn limitlist_from_file() {
|
|
|
|
let mut src = LimitList::default();
|
|
|
|
src.import_file("test/example_blocklist.txt", Limit::Block)
|
|
|
|
.import_file("test/example_mutelist.txt", Limit::Silence);
|
|
|
|
|
|
|
|
let test_src = LimitList::from(HashMap::from([
|
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Block),
|
|
|
|
(String::from("example.net"), Limit::Silence),
|
2024-05-30 14:50:34 -04:00
|
|
|
]));
|
|
|
|
|
|
|
|
assert_eq!(test_src, src);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn mergedlist_from_limitlist() {
|
|
|
|
let mut ml = MergedLimitList::default();
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let src1 = LimitList::from(HashMap::from([
|
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
|
|
|
(String::from("example.net"), Limit::Block),
|
2024-05-30 14:50:34 -04:00
|
|
|
]));
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let mut src2 = LimitList::default();
|
|
|
|
src2.import_file("test/example_blocklist.txt", Limit::Block)
|
|
|
|
.import_file("test/example_mutelist.txt", Limit::Silence);
|
|
|
|
|
|
|
|
ml.add_limit_list(src1).add_limit_list(src2);
|
|
|
|
|
|
|
|
let test_ml = MergedLimitList {
|
|
|
|
map: HashMap::from([
|
|
|
|
(String::from("example.com"), LimitIndices::from((200, 0))),
|
2024-06-02 02:24:54 -04:00
|
|
|
(String::from("example.org"), LimitIndices::from((100, 100))),
|
|
|
|
(String::from("example.net"), LimitIndices::from((100, 100))),
|
2024-05-31 03:13:02 -04:00
|
|
|
]),
|
|
|
|
max: 200,
|
|
|
|
};
|
2024-05-30 14:50:34 -04:00
|
|
|
|
|
|
|
assert_eq!(ml, test_ml);
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let src3 = LimitList::build(
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
2024-05-30 14:50:34 -04:00
|
|
|
]),
|
|
|
|
200,
|
|
|
|
);
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let src4 = LimitList::build(
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.net"), Limit::Silence),
|
2024-05-30 14:50:34 -04:00
|
|
|
]),
|
|
|
|
50,
|
|
|
|
);
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
ml.add_limit_list(src3).add_limit_list(src4);
|
|
|
|
|
|
|
|
let test_ml = MergedLimitList {
|
|
|
|
map: HashMap::from([
|
|
|
|
(String::from("example.com"), LimitIndices::from((450, 0))),
|
2024-06-02 02:24:54 -04:00
|
|
|
(String::from("example.org"), LimitIndices::from((100, 300))),
|
|
|
|
(String::from("example.net"), LimitIndices::from((100, 150))),
|
2024-05-31 03:13:02 -04:00
|
|
|
]),
|
|
|
|
max: 450,
|
|
|
|
};
|
2024-05-30 14:50:34 -04:00
|
|
|
|
|
|
|
assert_eq!(ml, test_ml);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-05-31 03:13:02 -04:00
|
|
|
fn mergedlist_export_txt() {
|
|
|
|
let mut ml = MergedLimitList::default();
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let src1 = LimitList::from(HashMap::from([
|
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
|
|
|
(String::from("example.net"), Limit::Block),
|
2024-05-30 14:50:34 -04:00
|
|
|
]));
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let mut src2 = LimitList::default();
|
|
|
|
src2.import_file("test/example_blocklist.txt", Limit::Block)
|
|
|
|
.import_file("test/example_mutelist.txt", Limit::Silence);
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let src3 = LimitList::build(
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.org"), Limit::Silence),
|
2024-05-30 14:50:34 -04:00
|
|
|
]),
|
|
|
|
200,
|
|
|
|
);
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
let src4 = LimitList::build(
|
2024-05-30 14:50:34 -04:00
|
|
|
HashMap::from([
|
2024-05-31 03:13:02 -04:00
|
|
|
(String::from("example.com"), Limit::Block),
|
|
|
|
(String::from("example.net"), Limit::Silence),
|
2024-05-30 14:50:34 -04:00
|
|
|
]),
|
|
|
|
50,
|
|
|
|
);
|
|
|
|
|
2024-05-31 03:13:02 -04:00
|
|
|
ml.add_limit_list(src1)
|
|
|
|
.add_limit_list(src2)
|
|
|
|
.add_limit_list(src3)
|
|
|
|
.add_limit_list(src4);
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-30 18:48:17 -04:00
|
|
|
let _ = ml.export_file("test/test_blocks.txt", "test/test_mutes.txt", (200, 150));
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-30 18:48:17 -04:00
|
|
|
let file_blocks: String = fs::read_to_string("test/test_blocks.txt").unwrap();
|
|
|
|
let file_mutes: String = fs::read_to_string("test/test_mutes.txt").unwrap();
|
2024-05-30 14:50:34 -04:00
|
|
|
|
2024-05-30 18:48:17 -04:00
|
|
|
assert_eq!(file_blocks, "example.com\n");
|
|
|
|
assert_eq!(file_mutes, "example.net\nexample.org\n");
|
2024-05-30 14:50:34 -04:00
|
|
|
}
|