mirror of
https://github.com/telemt/telemt.git
synced 2026-04-20 20:14:09 +03:00
Implement test for unknown_sni_action in ProxyConfig
Added test case for unknown_sni_action configuration.
This commit is contained in:
@@ -1977,6 +1977,22 @@ mod tests {
|
|||||||
cfg_accept.censorship.unknown_sni_action,
|
cfg_accept.censorship.unknown_sni_action,
|
||||||
UnknownSniAction::Accept
|
UnknownSniAction::Accept
|
||||||
);
|
);
|
||||||
|
|
||||||
|
let cfg_reject: ProxyConfig = toml::from_str(
|
||||||
|
r#"
|
||||||
|
[server]
|
||||||
|
[general]
|
||||||
|
[network]
|
||||||
|
[access]
|
||||||
|
[censorship]
|
||||||
|
unknown_sni_action = "reject_handshake"
|
||||||
|
"#,
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(
|
||||||
|
cfg_reject.censorship.unknown_sni_action,
|
||||||
|
UnknownSniAction::RejectHandshake
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|||||||
Reference in New Issue
Block a user