about summary refs log tree commit diff
path: root/tvix/nix-compat/src/derivation/escape.rs
blob: 8c2c6fce075300adb0a12f5c45df223e425cb9c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use bstr::{BString, ByteSlice};

/// Escapes a byte sequence. Does not add surrounding quotes.
pub fn escape_bstr<P: AsRef<[u8]>>(s: P) -> BString {
    let mut s: Vec<u8> = s.as_ref().to_vec();

    s = s.replace(b"\\", b"\\\\");
    s = s.replace(b"\n", b"\\n");
    s = s.replace(b"\r", b"\\r");
    s = s.replace(b"\t", b"\\t");
    s = s.replace(b"\"", b"\\\"");

    s.into()
}

#[cfg(test)]
mod tests {
    use super::escape_bstr;
    use test_case::test_case;

    #[test_case(b"", b""; "empty")]
    #[test_case(b"\"", b"\\\""; "doublequote")]
    #[test_case(b":", b":"; "colon")]
    fn escape(input: &[u8], expected: &[u8]) {
        assert_eq!(expected, escape_bstr(input))
    }
}