public void Given_ValidTimedServiceCommandClass_Then_TimeCommandInstanceCreatedSuccessfully()
        {
            var mockConfigureHelper = new Mock<IConfigurationHelper>();
            mockConfigureHelper.Setup<TimedServicesConfig>(mch => mch.GetSection<TimedServicesConfig>()).Returns(new TimedServicesConfig()); // empty config is fine cos I only need the time service as a shell.

            var mockLogger = new Mock<ILogger>();
            var mockLoggerFactory = new Mock<ILoggerFactory>();
            mockLoggerFactory.Setup(mlf => mlf.ProduceLogger(It.IsAny<string>())).Returns(mockLogger.Object);

            var timedServiceTestWrapper = new TimedServiceTestWrapper(mockConfigureHelper.Object, mockLoggerFactory.Object);

            var commandConfig = new TimedServiceCommandConfig{
                Name = "Test",
                Type = "TimedService.UnitTests.TimedServiceCommands.Test, TimedService.UnitTests",
                RunAt = DateTime.Today.AddHours(11) // 11 am today.
            };

            var expected = (new TimedServiceCommands.Test()).GetType();

            // Act
            var actual = timedServiceTestWrapper.GetTimedCommandInstance(commandConfig).GetType();

            // Assert
            Assert.Equal(expected, actual);

            //"TimedService.TimedServiceCommands.TestTimedService, TimedService"
        }
Esempio n. 2
0
        public ITimedServiceCommand GetTimedCommandInstance(TimedServiceCommandConfig commandConfig)
        {
            var commandInstance = Activator.CreateInstance(Type.GetType(commandConfig.Type)) as ITimedServiceCommand;
            if (commandConfig == null)
                throw new Exception(string.Format("Unable to create ITimedServiceCommand for type: {0}, please confirm type.", commandConfig.Name));

            return commandInstance;
        }