Create ConfigurableVariableSource to allow inline variables definitions with VariablePlaceholderConfigurer (SPRNET-1426)

This commit is contained in:
bbaia
2011-04-04 10:59:56 +00:00
parent 3fe86e6d2e
commit 768f26559b
13 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
#region License
/*
* Copyright <20> 2002-2011 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
using NUnit.Framework;
using Spring.Core.IO;
namespace Spring.Objects.Factory.Config
{
/// <summary>
/// Unit tests for the ConfigurableVariableSource class.
/// </summary>
/// <author>Bruno Baia</author>
[TestFixture]
public sealed class ConfigurableVariableSourceTests
{
[Test]
public void Basic()
{
ConfigurableVariableSource vs = new ConfigurableVariableSource();
vs.Variables.Add("Key1", "Value1");
vs.Variables.Add("Key2", "Value2");
// existing vars
Assert.IsTrue(vs.CanResolveVariable("key1")); // case insensitive
Assert.AreEqual("Value1", vs.ResolveVariable("key1")); // case insensitive
Assert.IsTrue(vs.CanResolveVariable("Key2"));
Assert.AreEqual("Value2", vs.ResolveVariable("Key2"));
// non-existant variable
Assert.IsFalse(vs.CanResolveVariable("Key3"));
Assert.IsNull(vs.ResolveVariable("Key3"));
}
}
}

View File

@@ -1132,6 +1132,11 @@
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ConfigurableVariableSourceTests.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ConstructorArgumentValuesTests.cs"
SubType = "Code"

View File

@@ -1362,6 +1362,11 @@
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ConfigurableVariableSourceTests.cs"
SubType = "Code"
BuildAction = "Compile"
/>
<File
RelPath = "Objects\Factory\Config\ConstructorArgumentValuesTests.cs"
SubType = "Code"

View File

@@ -309,6 +309,7 @@
<Compile Include="Objects\Factory\Config\CommandLineArgsVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConfigSectionVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConnectionStringsVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConfigurableVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\DelegateObjectFactoryConfigurerTests.cs" />
<Compile Include="Objects\Factory\Config\ObjectDefinitionVisitorTests.cs" />
<Compile Include="Objects\Factory\Config\ResourceHandlerConfigurerTests.cs" />

View File

@@ -320,6 +320,7 @@
<Compile Include="Objects\Factory\Config\CommandLineArgsVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConfigSectionVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConnectionStringsVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConfigurableVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\DelegateObjectFactoryConfigurerTests.cs" />
<Compile Include="Objects\Factory\Config\DictionaryVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ObjectDefinitionVisitorTests.cs" />

View File

@@ -329,6 +329,7 @@
<Compile Include="Objects\Factory\Config\CommandLineArgsVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConfigSectionVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConnectionStringsVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ConfigurableVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\DelegateObjectFactoryConfigurerTests.cs" />
<Compile Include="Objects\Factory\Config\DictionaryVariableSourceTests.cs" />
<Compile Include="Objects\Factory\Config\ObjectDefinitionVisitorTests.cs" />