sprnet-924
This commit is contained in:
@@ -0,0 +1,93 @@
|
||||
#region License
|
||||
|
||||
/*
|
||||
* Copyright <20> 2002-2008 the original author or authors.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#endregion
|
||||
|
||||
#region Imports
|
||||
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
using Spring.Aop.Support;
|
||||
using Spring.Objects;
|
||||
|
||||
#endregion
|
||||
|
||||
namespace Spring.Aop.Framework.AutoProxy
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <author>Erich Eichinger</author>
|
||||
[TestFixture]
|
||||
public class PointcutFilteringAutoProxyCreatorTests
|
||||
{
|
||||
[Test]
|
||||
public void CreatesProxyOnlyIfPointcutAndObjectNameMatch()
|
||||
{
|
||||
// is match
|
||||
PointcutFilteringAutoProxyCreator apc = new PointcutFilteringAutoProxyCreator();
|
||||
apc.ObjectNames = new string[] { "test*" } ;;
|
||||
apc.Pointcut = new SdkRegularExpressionMethodPointcut(".*\\.GetHashCode");
|
||||
object result = apc.PostProcessAfterInitialization( new TestObject(), "testObject" );
|
||||
Assert.IsTrue(AopUtils.IsAopProxy(result));
|
||||
|
||||
apc = new PointcutFilteringAutoProxyCreator();
|
||||
apc.ObjectNames = new string[] { "test*" } ;;
|
||||
apc.Pointcut = new SdkRegularExpressionMethodPointcut(".*\\.GetHashCODE");
|
||||
result = apc.PostProcessAfterInitialization( new TestObject(), "testObject" );
|
||||
Assert.IsFalse(AopUtils.IsAopProxy(result));
|
||||
|
||||
apc = new PointcutFilteringAutoProxyCreator();
|
||||
apc.ObjectNames = new string[] { "tesT*" } ;;
|
||||
apc.Pointcut = new SdkRegularExpressionMethodPointcut(".*\\.GetHashCode");
|
||||
result = apc.PostProcessAfterInitialization( new TestObject(), "testObject" );
|
||||
Assert.IsFalse(AopUtils.IsAopProxy(result));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void CreatesProxyOnPointcutMatch()
|
||||
{
|
||||
PointcutFilteringAutoProxyCreator apc = new PointcutFilteringAutoProxyCreator();
|
||||
apc.ObjectNames = null;
|
||||
apc.Pointcut = new SdkRegularExpressionMethodPointcut(".*\\.GetHashCode");
|
||||
object result = apc.PostProcessAfterInitialization( new TestObject(), "testObject" );
|
||||
Assert.IsTrue(AopUtils.IsAopProxy(result));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void CreatesProxyOnNameMatch()
|
||||
{
|
||||
PointcutFilteringAutoProxyCreator apc = new PointcutFilteringAutoProxyCreator();
|
||||
apc.ObjectNames = new string[] { "test*" } ;
|
||||
apc.Pointcut = null;
|
||||
object result = apc.PostProcessAfterInitialization( new TestObject(), "testObject" );
|
||||
Assert.IsTrue(AopUtils.IsAopProxy(result));
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ExpectedException(typeof(ArgumentException))]
|
||||
public void ThrowsArgumentExceptionIfNoCriteriaSpecified()
|
||||
{
|
||||
PointcutFilteringAutoProxyCreator apc = new PointcutFilteringAutoProxyCreator();
|
||||
apc.ObjectNames = new string[] {} ;
|
||||
apc.Pointcut = null;
|
||||
object result = apc.PostProcessAfterInitialization( new TestObject(), "testObject" );
|
||||
Assert.IsTrue(AopUtils.IsAopProxy(result));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
|
||||
<PropertyGroup>
|
||||
<ProjectType>Local</ProjectType>
|
||||
<ProductVersion>9.0.21022</ProductVersion>
|
||||
<ProductVersion>9.0.30729</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{2111596A-0327-4C9D-8919-294FBD988A23}</ProjectGuid>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
@@ -131,6 +131,7 @@
|
||||
<Compile Include="Aop\Framework\AutoProxy\OrderedLogicalThreadContextCheckAdvisor.cs" />
|
||||
<Compile Include="Aop\Framework\AbstractMethodInvocationTests.cs" />
|
||||
<Compile Include="Aop\Framework\AutoProxy\CreatesTestObject.cs" />
|
||||
<Compile Include="Aop\Framework\AutoProxy\PointcutFilteringAutoProxyCreatorTests.cs" />
|
||||
<Compile Include="Aop\Framework\DynamicMethodInvocationTests.cs" />
|
||||
<Compile Include="Aop\Framework\CountingAfterReturningAdvice.cs" />
|
||||
<Compile Include="Aop\Framework\CountingBeforeAdvice.cs">
|
||||
|
||||
Reference in New Issue
Block a user