using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using System; using System.Configuration; namespace SystemExtensions.DependencyInjection.Tests.Configuration { [TestClass] public class UpdateableOptionsResolverTests { private readonly UpdateableOptionsResolver updateableOptionsResolver = new(); private readonly Mock serviceProviderMock = new(); private readonly Mock optionsManagerMock = new(); [TestMethod] public void CanResolve_ILiveOptions_ReturnsTrue() { var type = typeof(IUpdateableOptions); var canResolve = this.updateableOptionsResolver.CanResolve(type); canResolve.Should().BeTrue(); } [TestMethod] public void CanResolve_AnythingElse_ReturnsFalse() { var types = new Type[] { typeof(object), typeof(string), typeof(UpdateableOptionsResolverTests), typeof(int) }; foreach (var type in types) { var canResolve = this.updateableOptionsResolver.CanResolve(type); canResolve.Should().BeFalse(); } } [TestMethod] public void Resolve_IUpdateableOptions_ReturnsIUpdateableOptions() { this.SetupServiceProvider(); var liveOptions = this.updateableOptionsResolver.Resolve(this.serviceProviderMock.Object, typeof(IUpdateableOptions)); liveOptions.Should().BeAssignableTo>(); } [TestMethod] public void Resolve_AnythingElse_Throws() { this.SetupServiceProvider(); Action action = new(() => { this.updateableOptionsResolver.Resolve(this.serviceProviderMock.Object, typeof(string)); }); action.Should().Throw(); } private void SetupServiceProvider() { this.serviceProviderMock .Setup(u => u.GetService()) .Returns(this.optionsManagerMock.Object); } } }