public void CallAllTheInterceptors()
        {
            var mocks = new MockRepository();
            var interceptor1 = mocks.StrictMock<InstanceInterceptor>();
            var interceptor2 = mocks.StrictMock<InstanceInterceptor>();
            var interceptor3 = mocks.StrictMock<InstanceInterceptor>();
            var interceptor4 = mocks.StrictMock<InstanceInterceptor>();

            Expect.Call(interceptor1.Process("0", null)).Return("1");
            Expect.Call(interceptor2.Process("1", null)).Return("2");
            Expect.Call(interceptor3.Process("2", null)).Return("3");
            Expect.Call(interceptor4.Process("3", null)).Return("4");

            mocks.ReplayAll();
            var compoundInterceptor = new CompoundInterceptor(new[]
            {
                interceptor1,
                interceptor2,
                interceptor3,
                interceptor4
            });

            Assert.AreEqual("4", compoundInterceptor.Process("0", null));
            mocks.VerifyAll();
        }
Ejemplo n.º 2
0
        public CompoundInterceptor FindInterceptor(Type type)
        {
            CompoundInterceptor interceptor;
            lock (_locker)
            {
                if (!_analyzedInterceptors.TryGetValue(type, out interceptor))
                {
                    var interceptorArray = _interceptors.FindAll(i => i.MatchesType(type)).ToArray();
                    interceptor = new CompoundInterceptor(interceptorArray);
                    _analyzedInterceptors.Add(type, interceptor);
                }
            }

            return interceptor;
        }
Ejemplo n.º 3
0
        public CompoundInterceptor FindInterceptor(Type type)
        {
            CompoundInterceptor interceptor;

            lock (_locker)
            {
                if (!_analyzedInterceptors.TryGetValue(type, out interceptor))
                {
                    var interceptorArray = _interceptors.FindAll(i => i.MatchesType(type)).ToArray();
                    interceptor = new CompoundInterceptor(interceptorArray);
                    _analyzedInterceptors.Add(type, interceptor);
                }
            }

            return(interceptor);
        }