Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ReadOnlyDictionaryTests.cs « Collections « Internal « Microsoft « ComponentModelUnitTest « Tests « System.ComponentModel.Composition « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bad8b1953706ae213bede162a76616548ee46eb3 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// -----------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// -----------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Generic;
using System.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace Microsoft.Internal.Collections
{
    [TestClass]
    public class ReadOnlyDictionaryTests
    {
        [TestMethod]
        public void Constructor_NullAsDictionaryArgument_ShouldCreateEmptyDictionary()
        {
            var dictionary = new ReadOnlyDictionary<string, object>(null);

            EnumerableAssert.IsEmpty(dictionary);
        }

        [TestMethod]
        public void Constructor_WritableDictionaryAsDictionaryArgument_ShouldPopulateCollection()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = new ReadOnlyDictionary<string, object>(dictionary);

            EnumerableAssert.AreEqual(dictionary, readOnlyDictionary);
        }

        [TestMethod]
        public void Add1_ShouldThrowNotSupported()
        {
            var dictionary = GetReadOnlyDictionaryWithData();

            ExceptionAssert.Throws<NotSupportedException>(() =>
            {
                dictionary.Add(new KeyValuePair<string, object>("Key", "Value"));
            });
        }

        [TestMethod]
        public void Add2_ShouldThrowNotSupported()
        {
            var dictionary = GetReadOnlyDictionaryWithData();

            ExceptionAssert.Throws<NotSupportedException>(() =>
            {
                dictionary.Add("Key", "Value");
            });
        }

        [TestMethod]
        public void Clear_ShouldThrowNotSupported()
        {
            var dictionary = GetReadOnlyDictionaryWithData();

            ExceptionAssert.Throws<NotSupportedException>(() =>
            {
                dictionary.Clear();
            });
        }

        [TestMethod]
        public void Remove1_ShouldThrowNotSupported()
        {
            var dictionary = GetReadOnlyDictionaryWithData();

            ExceptionAssert.Throws<NotSupportedException>(() =>
            {
                dictionary.Remove("Value");
            });
        }

        [TestMethod]
        public void Remove2_ShouldThrowNotSupported()
        {
            var dictionary = GetReadOnlyDictionaryWithData();

            ExceptionAssert.Throws<NotSupportedException>(() =>
            {
                dictionary.Remove(new KeyValuePair<string, object>("Key", "Value"));
            });
        }

        [TestMethod]
        public void ItemSet_ShouldThrowNotSupported()
        {
            var dictionary = GetReadOnlyDictionaryWithData();

            ExceptionAssert.Throws<NotSupportedException>(() =>
            {
                dictionary["Key"] = "Value";
            });
        }

        [TestMethod]
        public void Keys_ShouldReturnWrappedDictionaryKeys()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);

            EnumerableAssert.AreEqual(readOnlyDictionary.Keys, dictionary.Keys);
        }

        [TestMethod]
        public void Values_ShouldReturnWrappedDictionaryValues()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);

            EnumerableAssert.AreEqual(readOnlyDictionary.Values, readOnlyDictionary.Values);
        }

        [TestMethod]
        public void IsReadOnly_ShouldAlwaysBeTrue()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);
            
            Assert.IsFalse(dictionary.IsReadOnly);
            Assert.IsTrue(readOnlyDictionary.IsReadOnly);
        }

        [TestMethod]
        public void Count_ShouldReturnWrappedDictionaryCount()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);

            Assert.AreEqual(dictionary.Count, readOnlyDictionary.Count);
        }

        [TestMethod]
        public void ContainsKey()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);

            Assert.IsTrue(readOnlyDictionary.ContainsKey("Key1"));
            Assert.IsFalse(readOnlyDictionary.ContainsKey("InvalidKey"));
        }

        [TestMethod]
        public void Contains()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);

            Assert.IsTrue(readOnlyDictionary.Contains(new KeyValuePair<string,object>("Key1", "Value1")));
            Assert.IsFalse(readOnlyDictionary.Contains(new KeyValuePair<string,object>("InvalidKey", "Value1")));
            Assert.IsFalse(readOnlyDictionary.Contains(new KeyValuePair<string,object>("Key1", "InvalidValue")));
        }

        [TestMethod]
        public void CopyTo()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);
            KeyValuePair<string, object>[] destination = new KeyValuePair<string, object> [readOnlyDictionary.Count];
            readOnlyDictionary.CopyTo(destination, 0);
            EnumerableAssert.AreEqual(readOnlyDictionary, destination);
        }

        [TestMethod]
        public void GetEnumerator()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);
            IEnumerable<KeyValuePair<string, object>> genericEnumerable = readOnlyDictionary;
            EnumerableAssert.AreEqual(genericEnumerable, dictionary);
            IEnumerable weakEnumerable = (IEnumerable)readOnlyDictionary;
            EnumerableAssert.AreEqual(weakEnumerable, dictionary);
        }

        [TestMethod]
        public void Item()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);
            Assert.AreEqual("Value1", readOnlyDictionary["Key1"], "Expecting to read wrapped value");
        }

        [TestMethod]
        public void TryGetValue()
        {
            var dictionary = GetWritableDictionaryWithData();
            var readOnlyDictionary = GetReadOnlyDictionary(dictionary);
            object result;
            bool ret = readOnlyDictionary.TryGetValue("Key1", out result);
            Assert.IsTrue(ret, "Expecting TryGetExportedValue to return true for wrapped key");
            Assert.AreEqual("Value1", result, "Expecting TryGetExportedValue to return wrapped value");
        }

        private static IDictionary<String, object> GetReadOnlyDictionaryWithData()
        {
            return GetReadOnlyDictionary(GetWritableDictionaryWithData());
        }

        private static IDictionary<TKey, TValue> GetReadOnlyDictionary<TKey, TValue>(IDictionary<TKey, TValue> dictionary)
        {
            return new ReadOnlyDictionary<TKey, TValue>(dictionary);
        }

        private static IDictionary<String, object> GetWritableDictionaryWithData()
        {
            IDictionary<String, object> dictionary = new Dictionary<String, object>();
            dictionary.Add("Key1", "Value1");
            dictionary.Add("Key2", 42);
            return dictionary;
        }
    }
}