/plexus-containers-1.5.5/plexus-container-default/src/test/java/org/codehaus/plexus/configuration/DefaultPlexusConfigurationTest.java

# · Java · 128 lines · 80 code · 26 blank · 22 comment · 0 complexity · 9730151cb677a6ff04bc2e2ebe8778e1 MD5 · raw file

  1. package org.codehaus.plexus.configuration;
  2. /*
  3. * Copyright 2001-2006 Codehaus Foundation.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. import junit.framework.TestCase;
  18. /**
  19. * @author <a href="mailto:rantene@hotmail.com">Ran Tene</a>
  20. * @version $Id: DefaultPlexusConfigurationTest.java 7854 2008-11-18 22:33:53Z bentmann $
  21. */
  22. public final class DefaultPlexusConfigurationTest
  23. extends TestCase
  24. {
  25. private DefaultPlexusConfiguration configuration;
  26. public void setUp()
  27. {
  28. configuration = new DefaultPlexusConfiguration( "a" );
  29. }
  30. public void testWithHelper()
  31. throws Exception
  32. {
  33. PlexusConfiguration c = ConfigurationTestHelper.getTestConfiguration();
  34. ConfigurationTestHelper.testConfiguration( c );
  35. }
  36. public void testGetValue()
  37. throws Exception
  38. {
  39. String orgValue = "Original String";
  40. configuration.setValue( orgValue );
  41. assertEquals( orgValue, configuration.getValue() );
  42. }
  43. public void testGetAttribute()
  44. throws Exception
  45. {
  46. String key = "key";
  47. String value = "original value";
  48. String defaultStr = "default";
  49. configuration.setAttribute( key, value );
  50. assertEquals( value, configuration.getAttribute( key, defaultStr ) );
  51. assertEquals( defaultStr, configuration.getAttribute( "newKey", defaultStr ) );
  52. }
  53. public void testGetChild()
  54. throws Exception
  55. {
  56. DefaultPlexusConfiguration child = (DefaultPlexusConfiguration) configuration.getChild( "child" );
  57. assertNotNull( child );
  58. child.setValue( "child value" );
  59. assertEquals( 1, configuration.getChildCount() );
  60. child = (DefaultPlexusConfiguration) configuration.getChild( "child" );
  61. assertNotNull( child );
  62. assertEquals( "child value", child.getValue() );
  63. assertEquals( 1, configuration.getChildCount() );
  64. }
  65. public void testToString()
  66. throws Exception
  67. {
  68. // TODO: this currently works since getTestConfiguration() invokes PlexusTools.buildConfiguration()
  69. // and it returns XmlPlexusConfiguration actually.
  70. PlexusConfiguration c = ConfigurationTestHelper.getTestConfiguration();
  71. assertEquals( "<string string=\"string\">string</string>\n", c.getChild( "string" ).toString() );
  72. // TODO: uncomment once maven can test the latest plexus-utils
  73. assertEquals( "<singleton attribute=\"attribute\"/>\n", c.getChild( "singleton" ).toString() );
  74. }
  75. public void testProgrammaticConfigurationCreation()
  76. throws Exception
  77. {
  78. String viewRoot = "/path/to/viewRoot";
  79. PlexusConfiguration c = new DefaultPlexusConfiguration( "configuration" ).addChild( "viewRoot", viewRoot );
  80. assertEquals( viewRoot, c.getChild( "viewRoot" ).getValue() );
  81. }
  82. public void testChildOrdering()
  83. throws Exception
  84. {
  85. PlexusConfiguration child0 = new DefaultPlexusConfiguration( "child" );
  86. PlexusConfiguration child1 = new DefaultPlexusConfiguration( "child" );
  87. PlexusConfiguration child2 = new DefaultPlexusConfiguration( "special-child" );
  88. PlexusConfiguration child3 = new DefaultPlexusConfiguration( "child" );
  89. PlexusConfiguration child4 = new DefaultPlexusConfiguration( "child" );
  90. configuration.addChild( child0 );
  91. configuration.addChild( child1 );
  92. configuration.addChild( child2 );
  93. configuration.addChild( child3 );
  94. configuration.addChild( child4 );
  95. assertEquals( 5, configuration.getChildCount() );
  96. assertSame( child0, configuration.getChild( 0 ) );
  97. assertSame( child1, configuration.getChild( 1 ) );
  98. assertSame( child2, configuration.getChild( 2 ) );
  99. assertSame( child3, configuration.getChild( 3 ) );
  100. assertSame( child4, configuration.getChild( 4 ) );
  101. }
  102. }