From d29d28569dfae2726e9c0d22a743addf0a4749c9 Mon Sep 17 00:00:00 2001 From: Paul Irwin Date: Sat, 11 Jan 2025 16:57:49 -0700 Subject: [PATCH] Add unit tests for DictionaryExtensions, #920 --- .../Support/TestDictionaryExtensions.cs | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/Lucene.Net.Tests/Support/TestDictionaryExtensions.cs diff --git a/src/Lucene.Net.Tests/Support/TestDictionaryExtensions.cs b/src/Lucene.Net.Tests/Support/TestDictionaryExtensions.cs new file mode 100644 index 0000000000..bbcefac977 --- /dev/null +++ b/src/Lucene.Net.Tests/Support/TestDictionaryExtensions.cs @@ -0,0 +1,70 @@ +using Lucene.Net.Attributes; +using Lucene.Net.Util; +using NUnit.Framework; +using System.Collections.Generic; + +namespace Lucene.Net.Support +{ + /* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + [TestFixture] + public class TestDictionaryExtensions : LuceneTestCase + { + [Test, LuceneNetSpecific] + public void TestPutAll() + { + var dictionary1 = new Dictionary + { + { "key1", "value1" }, + { "key2", "value2" } + }; + var dictionary2 = new Dictionary + { + { "key1", "value1.1" }, + { "key3", "value3" } + }; + + dictionary1.PutAll(dictionary2); + + Assert.AreEqual(3, dictionary1.Count); + Assert.AreEqual("value1.1", dictionary1["key1"]); + Assert.AreEqual("value2", dictionary1["key2"]); + Assert.AreEqual("value3", dictionary1["key3"]); + } + + [Test, LuceneNetSpecific] + public void TestPut() + { + var dictionary = new Dictionary + { + { "key1", "value1" }, + { "key2", "value2" } + }; + + var oldFirst = dictionary.Put("key1", "value1.1"); + var oldSecond = dictionary.Put("key3", "value3"); + + Assert.AreEqual(3, dictionary.Count); + Assert.AreEqual("value1.1", dictionary["key1"]); + Assert.AreEqual("value2", dictionary["key2"]); + Assert.AreEqual("value3", dictionary["key3"]); + Assert.AreEqual("value1", oldFirst); + Assert.IsNull(oldSecond); + } + } +}