コード例 #1
0
            public void Interceptors_can_be_added_removed_and_dispatched_to_concurrently()
            {
                var interceptors = new ConcurrentStack<InterceptorForThreads>();
                var dispatcher = new InternalDispatcher<InterceptorForThreads>();

                const int interceptorCount = 20;
                const int dispatchCount = 10;

                // Add in parallel
                ExecuteInParallel(
                    () =>
                        {
                            var interceptor = new InterceptorForThreads();
                            interceptors.Push(interceptor);
                            dispatcher.Add(interceptor);
                        }, interceptorCount);

                Assert.Equal(interceptorCount, interceptors.Count);

                // Dispatch in parallel
                var calledInterceptors = new ConcurrentStack<InterceptorForThreads>();
                ExecuteInParallel(() => dispatcher.Dispatch(calledInterceptors.Push), dispatchCount);

                Assert.Equal(dispatchCount * interceptorCount, calledInterceptors.Count);
                interceptors.Each(i => Assert.Equal(dispatchCount, calledInterceptors.Count(c => c == i)));

                var toRemove = new ConcurrentStack<InterceptorForThreads>(interceptors);

                // Add, remove, and dispatch in parallel
                ExecuteInParallel(
                    () =>
                        {
                            dispatcher.Dispatch(i => { });
                            InterceptorForThreads interceptor;
                            toRemove.TryPop(out interceptor);
                            dispatcher.Remove(interceptor);
                            dispatcher.Add(interceptor);
                        }, interceptorCount);

                // Dispatch in parallel
                calledInterceptors = new ConcurrentStack<InterceptorForThreads>();
                ExecuteInParallel(() => dispatcher.Dispatch(calledInterceptors.Push), dispatchCount);

                Assert.Equal(dispatchCount * interceptorCount, calledInterceptors.Count);
                interceptors.Each(i => Assert.Equal(dispatchCount, calledInterceptors.Count(c => c == i)));
            }
コード例 #2
0
            public void Interceptors_for_only_the_matching_interface_type_can_be_added_and_removed()
            {
                var mockInterceptor1 = new Mock<FakeInterceptor1>();
                var mockInterceptor2 = new Mock<FakeInterceptor2>();

                var dispatcher = new InternalDispatcher<FakeInterceptor1>();

                dispatcher.Add(mockInterceptor1.Object);
                dispatcher.Add(mockInterceptor2.Object);

                dispatcher.Dispatch(i => i.CallMe());

                mockInterceptor1.Verify(m => m.CallMe(), Times.Once());
                mockInterceptor2.Verify(m => m.CallMe(), Times.Never());

                dispatcher.Remove(mockInterceptor1.Object);
                dispatcher.Remove(mockInterceptor2.Object);

                dispatcher.Dispatch(i => i.CallMe());

                mockInterceptor1.Verify(m => m.CallMe(), Times.Once());
                mockInterceptor2.Verify(m => m.CallMe(), Times.Never());
            }
コード例 #3
0
            public void Simple_Dispatch_dispatches_to_all_registered_interceptors()
            {
                var mockInterceptors = CreateMockInterceptors();
                var dispatcher = new InternalDispatcher<FakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                dispatcher.Dispatch(i => i.CallMe());

                mockInterceptors.Each(i => i.Verify(m => m.CallMe(), Times.Once()));
            }
コード例 #4
0
            public void Async_Dispatch_creates_faulted_task_if_Executed_interceptor_throws_exception()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>();
                var mockInterceptors = CreateMockInterceptors(
                    c => { },
                    c => { throw new Exception("Ba-da-bing!"); });

                var operation = new Task<string>(() => "0");

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                var interceptTask = dispatcher.DispatchAsync(
                    new object(),
                    (t, c, tc) => operation,
                    interceptionContext,
                    (i, t, c) => i.CallMeFirst(c),
                    (i, t, c) => i.CallMe(c),
                    CancellationToken.None);

                operation.Start();

                Assert.Equal(
                    "Ba-da-bing!",
                    Assert.Throws<AggregateException>(() => interceptTask.Wait()).InnerException.Message);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.First().Verify(m => m.CallMe(interceptionContext), Times.Once());
                mockInterceptors.Skip(1).Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Never()));
            }
コード例 #5
0
            public void Async_Dispatch_dispatches_to_all_registered_interceptors_even_if_task_is_canceled()
            {
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                var cancellationTokenSource = new CancellationTokenSource();
                var cancellationToken = cancellationTokenSource.Token;
                var operation = new Task<string>(() => "0", cancellationToken);

                var interceptionContext = new DbCommandInterceptionContext<string>().AsAsync();

                var interceptTask = dispatcher.DispatchAsync(
                    new object(),
                    (t, c, tc) => operation,
                    interceptionContext,
                    (i, t, c) => i.CallMeFirst(c),
                    (i, t, c) => i.CallMe(c),
                    CancellationToken.None);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(It.IsAny<DbCommandInterceptionContext<string>>()), Times.Never()));

                cancellationTokenSource.Cancel();
                Assert.Throws<AggregateException>(() => interceptTask.Wait());

                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #6
0
            public void Async_Dispatch_can_prevent_exception_from_being_thrown_and_return_result_instead()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>().AsAsync();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.OriginalResult);
                            Assert.Equal("Bang!", c.OriginalException.Message);
                            c.Exception = null;
                            c.Result = "N";
                            Assert.False(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                var operation = new Task<string>(() => { throw new Exception("Bang!"); });

                var interceptTask = dispatcher.DispatchAsync(
                    new object(),
                    (t, c, tc) => operation,
                    interceptionContext,
                    (i, t, c) => i.CallMeFirst(c),
                    (i, t, c) => i.CallMe(c),
                    CancellationToken.None);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(It.IsAny<DbCommandInterceptionContext<string>>()), Times.Never()));

                operation.Start();
                interceptTask.Wait();

                Assert.Equal("N", interceptTask.Result);

                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #7
0
            public void Simple_Dispatch_dispatches_to_all_registered_interceptors()
            {
                var mockInterceptors = CreateMockInterceptors(c => { }, c => { });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                dispatcher.Dispatch(i => i.CallMe(new DbCommandInterceptionContext<string>()));

                mockInterceptors.Each(i => i.Verify(m => m.CallMe(It.IsAny<DbCommandInterceptionContext<string>>()), Times.Once()));
            }
 public Task RunOnDispatcherThreadAsync(Action action, CancellationToken cancellationToken)
 => InternalDispatcher.RunOnDispatcherThreadAsync(action, cancellationToken);
コード例 #9
0
            public void Operation_Dispatch_is_aborted_if_Executed_interceptor_throws_exception()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>();
                var mockInterceptors = CreateMockInterceptors(
                    c => { },
                    c => { throw new Exception("Ba-da-bing!"); });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                Assert.Equal(
                    "Ba-da-bing!",
                    Assert.Throws<Exception>(
                        () => dispatcher.Dispatch(
                            new object(),
                            (t, c) => "N",
                            interceptionContext,
                            (i, t, c) => i.CallMeFirst(c),
                            (i, t, c) => i.CallMe(c))).Message);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.First().Verify(m => m.CallMe(interceptionContext), Times.Once());
                mockInterceptors.Skip(1).Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Never()));
            }
コード例 #10
0
            public void Operation_Dispatch_can_prevent_exception_from_being_thrown_and_return_result_instead()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.OriginalResult);
                            Assert.Equal("Bang!", c.OriginalException.Message);
                            c.Exception = null;
                            c.Result = "N";
                            Assert.False(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                Assert.Equal(
                    "N",
                    dispatcher.Dispatch<Object, DbCommandInterceptionContext<string>, string>(
                        new object(),
                        (t, c) => { throw new Exception("Bang!"); },
                        interceptionContext,
                        (i, t, c) => i.CallMeFirst(c),
                        (i, t, c) => i.CallMe(c)));

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #11
0
            public void Operation_Dispatch_can_change_exception_thrown()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.NotEmpty(c.Exception.Message);
                            Assert.Equal("Bang!", c.OriginalException.Message);
                            c.Exception = new Exception("Bing!");
                            Assert.False(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                var exception = Assert.Throws<Exception>(
                    () => dispatcher.Dispatch<Object, DbCommandInterceptionContext<string>, string>(
                        new object(),
                        (t, c) => { throw new Exception("Bang!"); },
                        interceptionContext,
                        (i, t, c) => i.CallMeFirst(c),
                        (i, t, c) => i.CallMe(c)));

                Assert.Equal("Bing!", exception.Message);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #12
0
            public void Execution_of_operation_can_be_suppressed_explicitly_with_everything_else_still_happening()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.OriginalException);
                            Assert.Null(c.OriginalException);
                            c.SuppressExecution();
                            Assert.True(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.OriginalException);
                            Assert.Null(c.OriginalException);
                            Assert.True(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                Assert.Null(
                    dispatcher.Dispatch<Object, DbCommandInterceptionContext<string>, string>(
                        new object(),
                        (t, c) => { throw new Exception("Bang!"); },
                        interceptionContext,
                        (i, t, c) => i.CallMeFirst(interceptionContext),
                        (i, t, c) => i.CallMe(interceptionContext)));

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #13
0
            public void Operation_Dispatch_dispatches_to_all_registered_interceptors_and_aggregates_results_of_operations()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.False(c.IsAsync);
                            Assert.NotEmpty(c.Result);
                            Assert.Equal("0", c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                Assert.Equal(
                    "0123",
                    dispatcher.Dispatch(
                        new object(),
                        (t, c) => "0",
                        interceptionContext,
                        (i, t, c) => i.CallMeFirst(interceptionContext),
                        (i, t, c) => interceptionContext.Result = interceptionContext.Result + i.CallMe(interceptionContext)));

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #14
0
            public void Result_Dispatch_dispatches_to_all_registered_interceptors_and_aggregates_result()
            {
                var mockInterceptors = CreateMockInterceptors(c => { }, c => { });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                Assert.Equal("0123", dispatcher.Dispatch("0", (r, i) => r + i.CallMe(new DbCommandInterceptionContext<string>())));

                mockInterceptors.Each(i => i.Verify(m => m.CallMe(It.IsAny<DbCommandInterceptionContext<string>>()), Times.Once()));
            }
コード例 #15
0
            public void Operation_Dispatch_dispatches_to_all_registered_interceptors_and_aggregates_results_of_operations()
            {
                var mockInterceptors = CreateMockInterceptors();
                var dispatcher = new InternalDispatcher<FakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                Assert.Equal("0123", dispatcher.Dispatch(() => "0", i => i.CallMeFirst(), (r, i) => r + i.CallMe()));

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(), Times.Once()));
            }
コード例 #16
0
            public void Async_Dispatch_dispatches_to_all_registered_interceptors_and_aggregates_results_of_operations()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>().AsAsync();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.NotEmpty(c.Result);
                            Assert.Equal("0", c.OriginalResult);
                            Assert.Null(c.Exception);
                            Assert.Null(c.OriginalException);
                            Assert.False(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                var operation = new Task<string>(() => "0");

                var interceptTask = dispatcher.DispatchAsync(
                    new object(),
                    (t, c, ct) => operation,
                    interceptionContext,
                    (i, t, c) => i.CallMeFirst(c),
                    (i, t, c) => c.Result = c.Result + i.CallMe(c),
                    CancellationToken.None);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(It.IsAny<DbCommandInterceptionContext<string>>()), Times.Never()));

                operation.Start();
                interceptTask.Wait();

                Assert.Equal("0123", interceptTask.Result);

                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));
            }
コード例 #17
0
            public void Execution_of_async_operation_can_be_suppressed_explicitly_with_everything_else_still_happening()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>().AsAsync();
                var mockInterceptors = CreateMockInterceptors(
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.OriginalException);
                            Assert.Null(c.OriginalException);
                            c.SuppressExecution();
                            Assert.True(c.IsExecutionSuppressed);
                        },
                    c =>
                        {
                            Assert.True(c.IsAsync);
                            Assert.Null(c.Result);
                            Assert.Null(c.OriginalResult);
                            Assert.Null(c.OriginalException);
                            Assert.Null(c.OriginalException);
                            Assert.True(c.IsExecutionSuppressed);
                        });

                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                mockInterceptors.Each(i => dispatcher.Add(i.Object));

                var operation = new Task<string>(() => "0");

                var interceptTask = dispatcher.DispatchAsync(
                    new object(),
                    (t, c, tc) => operation,
                    interceptionContext,
                    (i, t, c) => i.CallMeFirst(c),
                    (i, t, c) => i.CallMe(c),
                    CancellationToken.None);

                mockInterceptors.Each(i => i.Verify(m => m.CallMeFirst(interceptionContext), Times.Once()));
                mockInterceptors.Each(i => i.Verify(m => m.CallMe(interceptionContext), Times.Once()));

                interceptTask.Wait();

                Assert.Null(interceptTask.Result);
            }
 public override void AssertDispatcherThread([CallerMemberName] string caller = null) => InternalDispatcher.AssertDispatcherThread(caller);
コード例 #19
0
            public void Async_Dispatch_executes_operation_and_returns_result_if_no_dispatchers_registered()
            {
                var interceptionContext = new DbCommandInterceptionContext<string>().AsAsync();
                var dispatcher = new InternalDispatcher<IFakeInterceptor1>();
                var operation = new Task<string>(() => "0");

                var interceptTask = dispatcher.DispatchAsync(
                    new object(),
                    (t, c, tc) => operation,
                    interceptionContext,
                    (i, t, c) => i.CallMeFirst(c),
                    (i, t, c) => c.Result = c.Result + i.CallMe(c),
                    CancellationToken.None);

                operation.Start();
                interceptTask.Wait();

                Assert.Equal("0", operation.Result);
                Assert.Equal("0", interceptTask.Result);
            }
 public Task <TResult> RunOnDispatcherThreadAsync <TResult>(Func <TResult> action, CancellationToken cancellationToken)
 => InternalDispatcher.RunOnDispatcherThreadAsync(action, cancellationToken);
コード例 #21
0
 public DelegateApplication(System.Windows.Application application)
 {
     _application          = application;
     Dispatcher            = new InternalDispatcher(_application.Dispatcher);
     _application.Startup += (_, _) => OnStartup();
 }