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

# · Java · 106 lines · 62 code · 23 blank · 21 comment · 0 complexity · d07e7254c9230ca3a1d674322be364ac MD5 · raw file

  1. package org.codehaus.plexus.configuration.xml;
  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. import org.codehaus.plexus.configuration.ConfigurationTestHelper;
  19. import org.codehaus.plexus.configuration.PlexusConfiguration;
  20. /**
  21. * @author <a href="mailto:rantene@hotmail.com">Ran Tene</a>
  22. * @version $Id: XmlPlexusConfigurationTest.java 7187 2008-01-26 20:55:42Z cstamas $
  23. */
  24. public final class XmlPlexusConfigurationTest
  25. extends TestCase
  26. {
  27. private XmlPlexusConfiguration configuration;
  28. public void setUp()
  29. {
  30. configuration = new XmlPlexusConfiguration( "a" );
  31. }
  32. public void testWithHelper()
  33. throws Exception
  34. {
  35. PlexusConfiguration c = ConfigurationTestHelper.getTestConfiguration();
  36. ConfigurationTestHelper.testConfiguration( c );
  37. }
  38. public void testGetValue()
  39. throws Exception
  40. {
  41. String orgValue = "Original String";
  42. configuration.setValue( orgValue );
  43. assertEquals( orgValue, configuration.getValue() );
  44. }
  45. public void testGetAttribute()
  46. throws Exception
  47. {
  48. String key = "key";
  49. String value = "original value";
  50. String defaultStr = "default";
  51. configuration.setAttribute( key, value );
  52. assertEquals( value, configuration.getAttribute( key, defaultStr ) );
  53. assertEquals( defaultStr, configuration.getAttribute( "newKey", defaultStr ) );
  54. }
  55. public void testGetChild()
  56. throws Exception
  57. {
  58. PlexusConfiguration child = (XmlPlexusConfiguration) configuration.getChild( "child" );
  59. assertNotNull( child );
  60. child.setValue( "child value" );
  61. assertEquals( 1, configuration.getChildCount() );
  62. child = (XmlPlexusConfiguration) configuration.getChild( "child" );
  63. assertNotNull( child );
  64. assertEquals( "child value", child.getValue() );
  65. assertEquals( 1, configuration.getChildCount() );
  66. }
  67. public void testToString()
  68. throws Exception
  69. {
  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 XmlPlexusConfiguration( "configuration" )
  80. .addChild( "viewRoot", viewRoot );
  81. assertEquals( viewRoot, c.getChild( "viewRoot" ).getValue() );
  82. }
  83. }