Skip to content

Commit 1f71e5b

Browse files
committed
fix: apparently there's a bug for the length of the map
1 parent c4776e1 commit 1f71e5b

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

src/respv2/mod.rs

+15-2
Original file line numberDiff line numberDiff line change
@@ -145,19 +145,32 @@ mod tests {
145145

146146
#[test]
147147
fn respv2_map_length_should_work() {
148-
let buf = b"%2\r\n+OK\r\n-ERR\r\n";
148+
let buf = b"%1\r\n+OK\r\n-ERR\r\n";
149149
let len = RespFrame::expect_length(buf).unwrap();
150150
assert_eq!(len, buf.len());
151151
}
152152

153153
#[test]
154154
fn respv2_map_should_work() {
155-
let mut buf = BytesMut::from("%2\r\n+OK\r\n-ERR\r\n");
155+
let mut buf = BytesMut::from("%1\r\n+OK\r\n-ERR\r\n");
156156
let frame = RespFrame::decode(&mut buf).unwrap();
157157
let items: BTreeMap<String, RespFrame> =
158158
[("OK".to_string(), RespFrame::Error("ERR".into()))]
159159
.into_iter()
160160
.collect();
161161
assert_eq!(frame, RespFrame::Map(items.into()));
162162
}
163+
164+
#[test]
165+
fn respv2_map_with_real_data_should_work() {
166+
let mut buf = BytesMut::from("%2\r\n+hello\r\n$5\r\nworld\r\n+foo\r\n$3\r\nbar\r\n");
167+
let frame = RespFrame::decode(&mut buf).unwrap();
168+
let items: BTreeMap<String, RespFrame> = [
169+
("hello".to_string(), RespFrame::BulkString("world".into())),
170+
("foo".to_string(), RespFrame::BulkString("bar".into())),
171+
]
172+
.into_iter()
173+
.collect();
174+
assert_eq!(frame, RespFrame::Map(items.into()));
175+
}
163176
}

src/respv2/parser.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ fn double(input: &mut &[u8]) -> PResult<f64> {
167167
terminated(float, CRLF).parse_next(input)
168168
}
169169

170-
// - map: "%2\r\n+foo\r\n-bar\r\n"
170+
// my understanding of map len is incorrect: https://redis.io/docs/latest/develop/reference/protocol-spec/#maps
171+
// - map: "%1\r\n+foo\r\n-bar\r\n"
171172
fn map(input: &mut &[u8]) -> PResult<RespMap> {
172173
let len: i64 = integer.parse_next(input)?;
173174
if len <= 0 {
174175
return Err(err_cut("map length must be non-negative"));
175176
}
176-
let len = len as usize / 2;
177177
let mut map = BTreeMap::new();
178178
for _ in 0..len {
179179
let key = preceded('+', parse_string).parse_next(input)?;
@@ -188,7 +188,6 @@ fn map_len(input: &mut &[u8]) -> PResult<()> {
188188
if len <= 0 {
189189
return Err(err_cut("map length must be non-negative"));
190190
}
191-
let len = len as usize / 2;
192191
for _ in 0..len {
193192
terminated(take_until(0.., CRLF), CRLF)
194193
.value(())

0 commit comments

Comments
 (0)