Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Error on duplicate key when deserializing Mapping #301

Merged
merged 1 commit into from Aug 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 36 additions & 7 deletions src/mapping.rs
Expand Up @@ -5,7 +5,7 @@ use indexmap::IndexMap;
use serde::{Deserialize, Deserializer, Serialize};
use std::cmp::Ordering;
use std::collections::hash_map::DefaultHasher;
use std::fmt;
use std::fmt::{self, Display};
use std::hash::{Hash, Hasher};
use std::iter::FromIterator;
use std::mem;
Expand Down Expand Up @@ -726,18 +726,47 @@ impl<'de> Deserialize<'de> for Mapping {
}

#[inline]
fn visit_map<V>(self, mut visitor: V) -> Result<Self::Value, V::Error>
fn visit_map<A>(self, mut data: A) -> Result<Self::Value, A::Error>
where
V: serde::de::MapAccess<'de>,
A: serde::de::MapAccess<'de>,
{
let mut values = Mapping::new();
while let Some((k, v)) = visitor.next_entry()? {
values.insert(k, v);
let mut mapping = Mapping::new();

while let Some(key) = data.next_key()? {
match mapping.entry(key) {
Entry::Occupied(entry) => {
return Err(serde::de::Error::custom(DuplicateKeyError { entry }));
}
Entry::Vacant(entry) => {
let value = data.next_value()?;
entry.insert(value);
}
}
}
Ok(values)

Ok(mapping)
}
}

deserializer.deserialize_map(Visitor)
}
}

struct DuplicateKeyError<'a> {
entry: OccupiedEntry<'a>,
}

impl<'a> Display for DuplicateKeyError<'a> {
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
formatter.write_str("duplicate entry ")?;
match self.entry.key() {
Value::Null => formatter.write_str("with null key"),
Value::Bool(boolean) => write!(formatter, "with key `{}`", boolean),
Value::Number(number) => write!(formatter, "with key {}", number),
Value::String(string) => write!(formatter, "with key {:?}", string),
Value::Sequence(_) | Value::Mapping(_) | Value::Tagged(_) => {
formatter.write_str("in YAML map")
}
}
}
}
35 changes: 35 additions & 0 deletions tests/test_error.rs
Expand Up @@ -432,3 +432,38 @@ fn test_billion_laughs() {
let expected = "repetition limit exceeded";
test_error::<BTreeMap<String, X>>(yaml, expected);
}

#[test]
fn test_duplicate_keys() {
let yaml = indoc! {"
---
thing: true
thing: false
"};
let expected = "duplicate entry with key \"thing\" at line 2 column 1";
test_error::<Value>(yaml, expected);

let yaml = indoc! {"
---
null: true
~: false
"};
let expected = "duplicate entry with null key at line 2 column 1";
test_error::<Value>(yaml, expected);

let yaml = indoc! {"
---
99: true
99: false
"};
let expected = "duplicate entry with key 99 at line 2 column 1";
test_error::<Value>(yaml, expected);

let yaml = indoc! {"
---
{}: true
{}: false
"};
let expected = "duplicate entry in YAML map at line 2 column 1";
test_error::<Value>(yaml, expected);
}