-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #571 from stakx/forward-non-intercepted-methods-to…
…-target Forward non-intercepted methods on class proxies to target
- Loading branch information
Showing
9 changed files
with
204 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
src/Castle.Core.Tests/DynamicProxy.Tests/BugsReported/GitHubIssue536.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright 2004-2021 Castle Project - http://www.castleproject.org/ | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
namespace Castle.DynamicProxy.Tests.BugsReported | ||
{ | ||
using System; | ||
using System.Reflection; | ||
using System.Threading.Tasks; | ||
|
||
using NUnit.Framework; | ||
|
||
[TestFixture] | ||
public class GitHubIssue536 : BasePEVerifyTestCase | ||
{ | ||
[Test] | ||
public void DynamicProxy_NonIntercepted_Property_Leaked() | ||
{ | ||
var instance = new TestClassForCache(); | ||
var toProxy = instance.GetType(); | ||
|
||
var proxyGenerationOptions = new ProxyGenerationOptions(new TestCacheProxyGenerationHook()); | ||
|
||
var generator = new ProxyGenerator(); | ||
var proxy = generator.CreateClassProxyWithTarget(toProxy, | ||
instance, | ||
proxyGenerationOptions); | ||
|
||
var accessor = (ITestCacheInterface)proxy; | ||
accessor.InstanceProperty = 1; | ||
|
||
Assert.AreEqual(accessor.InstanceProperty, instance.InstanceProperty); | ||
} | ||
|
||
public class TestCacheProxyGenerationHook : AllMethodsHook | ||
{ | ||
public override bool ShouldInterceptMethod(Type type, MethodInfo methodInfo) | ||
{ | ||
return false; | ||
} | ||
} | ||
|
||
public interface ITestCacheInterface | ||
{ | ||
int InstanceProperty { get; set; } | ||
} | ||
|
||
public class TestClassForCache : ITestCacheInterface | ||
{ | ||
public virtual int InstanceProperty { get; set; } | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
src/Castle.Core.Tests/DynamicProxy.Tests/Classes/HasVirtualStringAutoProperty.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright 2004-2019 Castle Project - http://www.castleproject.org/ | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
namespace Castle.DynamicProxy.Tests.Classes | ||
{ | ||
public class HasVirtualStringAutoProperty | ||
{ | ||
public virtual string Property { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
src/Castle.Core.Tests/DynamicProxy.Tests/ProxySomeMethodsHook.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright 2004-2019 Castle Project - http://www.castleproject.org/ | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
namespace Castle.DynamicProxy.Tests | ||
{ | ||
using System; | ||
using System.Reflection; | ||
|
||
#if FEATURE_SERIALIZATION | ||
[Serializable] | ||
#endif | ||
public class ProxySomeMethodsHook : IProxyGenerationHook | ||
{ | ||
private readonly Func<Type, MethodInfo, bool> shouldInterceptMethod; | ||
|
||
public ProxySomeMethodsHook(Func<Type, MethodInfo, bool> shouldInterceptMethod) | ||
{ | ||
this.shouldInterceptMethod = shouldInterceptMethod; | ||
} | ||
|
||
public bool ShouldInterceptMethod(Type type, MethodInfo methodInfo) | ||
{ | ||
return shouldInterceptMethod(type, methodInfo); | ||
} | ||
|
||
void IProxyGenerationHook.MethodsInspected() { } | ||
|
||
void IProxyGenerationHook.NonProxyableMemberNotification(Type type, MemberInfo memberInfo) { } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters