Skip to content

Commit

Permalink
#128 Add/Allow duplicate properties (#129)
Browse files Browse the repository at this point in the history
* feat(lib): Allow adding / appending duplicate entries

* feat(tests): Add tests for duplicate properties

* feat(tests): Add more unit tests

* chore(tests): Rename test

* fix: new feature tests on windows

* Revert "fix: new feature tests on windows"

This reverts commit a398464.

* fix: broken test on windows

* fix: broken test on windows (hopefully)

---------

Co-authored-by: Rouven Himmelstein <r.himmelstein@tarent.de>
  • Loading branch information
RouHim and Rouven Himmelstein committed Apr 12, 2024
1 parent c901b45 commit ecad660
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,20 @@ impl<'a> SectionSetter<'a> {
self
}

/// Add (append) key-value pair in this section
pub fn add<K, V>(&'a mut self, key: K, value: V) -> &'a mut SectionSetter<'a>
where
K: Into<String>,
V: Into<String>,
{
self.ini
.entry(self.section_name.clone())
.or_insert_with(Default::default)
.append(key, value);

self
}

/// Delete the first entry in this section with `key`
pub fn delete<K: AsRef<str>>(&'a mut self, key: &K) -> &'a mut SectionSetter<'a> {
for prop in self.ini.section_all_mut(self.section_name.as_ref()) {
Expand Down Expand Up @@ -2330,6 +2344,43 @@ bar = f
assert_eq!(None, iter.next());
}

#[test]
fn add_properties_api() {
// Test duplicate properties in a section
let mut ini = Ini::new();
ini.with_section(Some("foo"))
.add("a", "1")
.add("a", "2");

let sec = ini.section(Some("foo")).unwrap();
assert_eq!(sec.get("a"), Some("1"));
assert_eq!(sec.get_all("a").collect::<Vec<&str>>(), vec!["1", "2"]);

// Test add with unique keys
let mut ini = Ini::new();
ini.with_section(Some("foo"))
.add("a", "1")
.add("b", "2");

let sec = ini.section(Some("foo")).unwrap();
assert_eq!(sec.get("a"), Some("1"));
assert_eq!(sec.get("b"), Some("2"));

// Test string representation
let mut ini = Ini::new();
ini.with_section(Some("foo"))
.add("a", "1")
.add("a", "2");
let mut buf = Vec::new();
ini.write_to(&mut buf).unwrap();
let ini_str = String::from_utf8(buf).unwrap();
if cfg!(windows) {
assert_eq!(ini_str, "[foo]\r\na=1\r\na=2\r\n");
} else {
assert_eq!(ini_str, "[foo]\na=1\na=2\n");
}
}

#[test]
fn new_has_empty_general_section() {
let mut ini = Ini::new();
Expand Down

0 comments on commit ecad660

Please sign in to comment.