unitycontainer / interception

Unity.Interception package
Apache License 2.0
22 stars 17 forks source link

ICallHandler did not intercept class with HandlerAttribute after upgrading from Unity 4 to Unity 5 #27

Open raytangRT opened 5 years ago

raytangRT commented 5 years ago

Hi,

I am trying to update the Unity from 4.0 to 5.10, and my logging interceptor did not work, can somebody give me some idea? Thanks.

My Container setup/

container.Register<ICallHandler, LogCallHandler>(nameof(LogCallHandler));
container.AddNewExtension<Interception>();

and all my interface-implementaion registrations are going through the following helper function.

 if (typeof(Service).IsInterface)
{
        injectionMembers.Add(new InterceptionBehavior<PolicyInjectionBehavior>());
        injectionMembers.Add(new Interceptor<InterfaceInterceptor>());
 }
        var lifetimeManager = registerAsSingleton ? new ContainerControlledLifetimeManager() : null;

         container.RegisterType<Service, Implementation>(name, lifetimeManager, injectionMembers.ToArray());

and my targetted class are annotated with a HandlerAttribute

ENikS commented 5 years ago

Could you provide a unit test that works in 4 and fails in 5?

raytangRT commented 5 years ago

Hi @ENikS, I have create a repo here. You may build it and run either Unity4 or Unity5 version.

You can see that in Unity5 Version, the CallHandler did not get invoked.

edit... I found something interesting, In Unity5 project, If I put the CallHandler and AddNewExtension before Services Registration, everything works fine... wired... Unity 4 Unity 5

ENikS commented 5 years ago

@raytangRT I need a Unity Test that I could add to other regression tests. Something like this

raytangRT commented 5 years ago

@ENikS I will make one once I get home tonite.

raytangRT commented 5 years ago

@ENikS Please find the attached the test case, thanks

Issue27CallHandlerNotBeingInvoke.zip

gerardog commented 4 years ago

I am surprised this was not fixed after so much time. The problem is that people migration to 5.x may inadvertently run into this issue. There is no much point into supporting quite an old syntax if it does not behaves as expected.

FWIW, I got a similar case working and I described the changes here

ENikS commented 4 years ago

Would you like to contribute the fix? I am sure people will appreciate it.