protocol: read CASEMAPPING from CAPAB and verify it matches echos ascii identity folding, warning on mismatch instead of silently desyncing
All checks were successful
CI / check (push) Successful in 4m31s

This commit is contained in:
Jean Chevronnet 2026-07-18 01:58:49 +00:00
parent e206f4edbb
commit 0ca06247f8
No known key found for this signature in database
3 changed files with 29 additions and 0 deletions

View file

@ -330,6 +330,13 @@ impl Protocol for InspIrcd {
vec![NetEvent::ChanModeRegistry { modes }]
}
}
// CAPAB CAPABILITIES :K=V … — a KV list; we care about CASEMAPPING.
Some(s) if s.eq_ignore_ascii_case("CAPABILITIES") => {
match rest.split_whitespace().find_map(|t| t.trim_start_matches(':').strip_prefix("CASEMAPPING=")) {
Some(name) => vec![NetEvent::Casemapping { name: name.to_string() }],
None => vec![],
}
}
_ => vec![],
},
_ => vec![NetEvent::Unknown { line: line.to_string() }],
@ -656,6 +663,15 @@ mod tests {
assert!(p.parse("CAPAB CHANMODES :ban=b").is_empty(), "other CAPAB subcommands ignored");
}
// CAPAB CAPABILITIES surfaces CASEMAPPING (echo verifies it's ascii).
#[test]
fn parses_capab_casemapping() {
let mut p = proto();
assert!(matches!(p.parse("CAPAB CAPABILITIES :NICKMAX=31 CASEMAPPING=ascii CHANMAX=65").as_slice(),
[NetEvent::Casemapping { name }] if name == "ascii"));
assert!(p.parse("CAPAB CAPABILITIES :NICKMAX=31 CHANMAX=65").is_empty(), "no CASEMAPPING token -> nothing");
}
// CAPAB CHANMODES surfaces mode arity + prefix modes, including a custom prefix
// like ojoin's Y (symbol !, rank 9000000) that the hardcoded set doesn't know.
#[test]