summaryrefslogtreecommitdiff
path: root/src/SMAPI.Tests/Core/InterfaceProxyTests.cs
blob: 99c1298ffbd733284c89cb0ad3df6353502f2cfc (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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using FluentAssertions;
using NUnit.Framework;
using SMAPI.Tests.ModApiConsumer;
using SMAPI.Tests.ModApiConsumer.Interfaces;
using SMAPI.Tests.ModApiProvider;
using StardewModdingAPI.Framework.Reflection;

namespace SMAPI.Tests.Core
{
    /// <summary>Unit tests for <see cref="InterfaceProxyFactory"/>.</summary>
    [TestFixture]
    internal class InterfaceProxyTests
    {
        /*********
        ** Fields
        *********/
        /// <summary>The mod ID providing an API.</summary>
        private readonly string FromModId = "From.ModId";

        /// <summary>The mod ID consuming an API.</summary>
        private readonly string ToModId = "From.ModId";

        /// <summary>The random number generator with which to create sample values.</summary>
        private readonly Random Random = new();


        /*********
        ** Unit tests
        *********/
        /****
        ** Events
        ****/
        /// <summary>Assert that an event field can be proxied correctly.</summary>
        [Test]
        public void CanProxy_EventField()
        {
            // arrange
            var providerMod = new ProviderMod();
            object implementation = providerMod.GetModApi();
            int expectedValue = this.Random.Next();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            new ApiConsumer().UseEventField(proxy, out Func<(int timesCalled, int lastValue)> getValues);
            providerMod.RaiseEvent(expectedValue);
            (int timesCalled, int lastValue) = getValues();

            // assert
            timesCalled.Should().Be(1, "Expected the proxied event to be raised once.");
            lastValue.Should().Be(expectedValue, "The proxy received a different event argument than the implementation raised.");
        }

        /// <summary>Assert that an event property can be proxied correctly.</summary>
        [Test]
        public void CanProxy_EventProperty()
        {
            // arrange
            var providerMod = new ProviderMod();
            object implementation = providerMod.GetModApi();
            int expectedValue = this.Random.Next();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            new ApiConsumer().UseEventProperty(proxy, out Func<(int timesCalled, int lastValue)> getValues);
            providerMod.RaiseEvent(expectedValue);
            (int timesCalled, int lastValue) = getValues();

            // assert
            timesCalled.Should().Be(1, "Expected the proxied event to be raised once.");
            lastValue.Should().Be(expectedValue, "The proxy received a different event argument than the implementation raised.");
        }

        /****
        ** Properties
        ****/
        /// <summary>Assert that properties can be proxied correctly.</summary>
        /// <param name="setVia">Whether to set the properties through the <c>provider mod</c> or <c>proxy interface</c>.</param>
        [TestCase("set via provider mod")]
        [TestCase("set via proxy interface")]
        public void CanProxy_Properties(string setVia)
        {
            // arrange
            var providerMod = new ProviderMod();
            object implementation = providerMod.GetModApi();
            int expectedNumber = this.Random.Next();
            int expectedObject = this.Random.Next();
            string expectedListValue = this.GetRandomString();
            string expectedListWithInterfaceValue = this.GetRandomString();
            string expectedDictionaryKey = this.GetRandomString();
            string expectedDictionaryListValue = this.GetRandomString();
            string expectedInheritedString = this.GetRandomString();
            BindingFlags expectedEnum = BindingFlags.Instance | BindingFlags.Public;

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            switch (setVia)
            {
                case "set via provider mod":
                    providerMod.SetPropertyValues(
                        number: expectedNumber,
                        obj: expectedObject,
                        listValue: expectedListValue,
                        listWithInterfaceValue: expectedListWithInterfaceValue,
                        dictionaryKey: expectedDictionaryKey,
                        dictionaryListValue: expectedDictionaryListValue,
                        enumValue: expectedEnum,
                        inheritedValue: expectedInheritedString
                    );
                    break;

                case "set via proxy interface":
                    proxy.NumberProperty = expectedNumber;
                    proxy.ObjectProperty = expectedObject;
                    proxy.ListProperty = new() { expectedListValue };
                    proxy.ListPropertyWithInterface = new List<string> { expectedListWithInterfaceValue };
                    proxy.GenericsProperty = new Dictionary<string, IList<string>>
                    {
                        [expectedDictionaryKey] = new List<string> { expectedDictionaryListValue }
                    };
                    proxy.EnumProperty = expectedEnum;
                    proxy.InheritedProperty = expectedInheritedString;
                    break;

                default:
                    throw new InvalidOperationException($"Invalid 'set via' option '{setVia}.");
            }

            // assert number
            this
                .GetPropertyValue(implementation, nameof(proxy.NumberProperty))
                .Should().Be(expectedNumber);
            proxy.NumberProperty
                .Should().Be(expectedNumber);

            // assert object
            this
                .GetPropertyValue(implementation, nameof(proxy.ObjectProperty))
                .Should().Be(expectedObject);
            proxy.ObjectProperty
                .Should().Be(expectedObject);

            // assert list
            (this.GetPropertyValue(implementation, nameof(proxy.ListProperty)) as IList<string>)
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.BeEquivalentTo(expectedListValue);
            proxy.ListProperty
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.BeEquivalentTo(expectedListValue);

            // assert list with interface
            (this.GetPropertyValue(implementation, nameof(proxy.ListPropertyWithInterface)) as IList<string>)
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.BeEquivalentTo(expectedListWithInterfaceValue);
            proxy.ListPropertyWithInterface
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.BeEquivalentTo(expectedListWithInterfaceValue);

            // assert generics
            (this.GetPropertyValue(implementation, nameof(proxy.GenericsProperty)) as IDictionary<string, IList<string>>)
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.ContainKey(expectedDictionaryKey).WhoseValue.Should().BeEquivalentTo(expectedDictionaryListValue);
            proxy.GenericsProperty
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.ContainKey(expectedDictionaryKey).WhoseValue.Should().BeEquivalentTo(expectedDictionaryListValue);

            // assert enum
            this
                .GetPropertyValue(implementation, nameof(proxy.EnumProperty))
                .Should().Be(expectedEnum);
            proxy.EnumProperty
                .Should().Be(expectedEnum);

            // assert getter
            this
                .GetPropertyValue(implementation, nameof(proxy.GetterProperty))
                .Should().Be(42);
            proxy.GetterProperty
                .Should().Be(42);

            // assert inherited methods
            this
                .GetPropertyValue(implementation, nameof(proxy.InheritedProperty))
                .Should().Be(expectedInheritedString);
            proxy.InheritedProperty
                .Should().Be(expectedInheritedString);
        }

        /// <summary>Assert that a simple method with no return value can be proxied correctly.</summary>
        [Test]
        public void CanProxy_SimpleMethod_Void()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            proxy.GetNothing();
        }

        /// <summary>Assert that a simple int method can be proxied correctly.</summary>
        [Test]
        public void CanProxy_SimpleMethod_Int()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();
            int expectedValue = this.Random.Next();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            int actualValue = proxy.GetInt(expectedValue);

            // assert
            actualValue.Should().Be(expectedValue);
        }

        /// <summary>Assert that a simple object method can be proxied correctly.</summary>
        [Test]
        public void CanProxy_SimpleMethod_Object()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();
            object expectedValue = new();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            object actualValue = proxy.GetObject(expectedValue);

            // assert
            actualValue.Should().BeSameAs(expectedValue);
        }

        /// <summary>Assert that a simple list method can be proxied correctly.</summary>
        [Test]
        public void CanProxy_SimpleMethod_List()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();
            string expectedValue = this.GetRandomString();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            IList<string> actualValue = proxy.GetList(expectedValue);

            // assert
            actualValue.Should().BeEquivalentTo(expectedValue);
        }

        /// <summary>Assert that a simple list with interface method can be proxied correctly.</summary>
        [Test]
        public void CanProxy_SimpleMethod_ListWithInterface()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();
            string expectedValue = this.GetRandomString();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            IList<string> actualValue = proxy.GetListWithInterface(expectedValue);

            // assert
            actualValue.Should().BeEquivalentTo(expectedValue);
        }

        /// <summary>Assert that a simple method which returns generic types can be proxied correctly.</summary>
        [Test]
        public void CanProxy_SimpleMethod_GenericTypes()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();
            string expectedKey = this.GetRandomString();
            string expectedValue = this.GetRandomString();

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            IDictionary<string, IList<string>> actualValue = proxy.GetGenerics(expectedKey, expectedValue);

            // assert
            actualValue
                .Should().NotBeNull()
                .And.HaveCount(1)
                .And.ContainKey(expectedKey).WhoseValue.Should().BeEquivalentTo(expectedValue);
        }

        /// <summary>Assert that a simple lambda method can be proxied correctly.</summary>
        [Test]
        [SuppressMessage("ReSharper", "ConvertToLocalFunction")]
        public void CanProxy_SimpleMethod_Lambda()
        {
            // arrange
            object implementation = new ProviderMod().GetModApi();
            Func<string, string> expectedValue = _ => "test";

            // act
            ISimpleApi proxy = this.GetProxy(implementation);
            object actualValue = proxy.GetObject(expectedValue);

            // assert
            actualValue.Should().BeSameAs(expectedValue);
        }


        /*********
        ** Private methods
        *********/
        /// <summary>Get a property value from an instance.</summary>
        /// <param name="parent">The instance whose property to read.</param>
        /// <param name="name">The property name.</param>
        private object GetPropertyValue(object parent, string name)
        {
            if (parent is null)
                throw new ArgumentNullException(nameof(parent));

            Type type = parent.GetType();
            PropertyInfo property = type.GetProperty(name);
            if (property is null)
                throw new InvalidOperationException($"The '{type.FullName}' type has no public property named '{name}'.");

            return property.GetValue(parent);
        }

        /// <summary>Get a random test string.</summary>
        private string GetRandomString()
        {
            return this.Random.Next().ToString();
        }

        /// <summary>Get a proxy API instance.</summary>
        /// <param name="implementation">The underlying API instance.</param>
        private ISimpleApi GetProxy(object implementation)
        {
            var proxyFactory = new InterfaceProxyFactory();
            return proxyFactory.CreateProxy<ISimpleApi>(implementation, this.FromModId, this.ToModId);
        }
    }
}