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

# · Java · 93 lines · 48 code · 18 blank · 27 comment · 0 complexity · e702684c08f46830e2031f00135f9011 MD5 · raw file

  1. package org.codehaus.plexus.configuration.xml;
  2. /*
  3. * The MIT License
  4. *
  5. * Copyright (c) 2004, The Codehaus
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy of
  8. * this software and associated documentation files (the "Software"), to deal in
  9. * the Software without restriction, including without limitation the rights to
  10. * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  11. * of the Software, and to permit persons to whom the Software is furnished to do
  12. * so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in all
  15. * copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  23. * SOFTWARE.
  24. */
  25. import org.codehaus.plexus.configuration.ConfigurationTestHelper;
  26. import org.codehaus.plexus.configuration.PlexusConfiguration;
  27. import junit.framework.TestCase;
  28. /**
  29. * @author <a href="mailto:rantene@hotmail.com">Ran Tene</a>
  30. * @version $Id$
  31. */
  32. public final class XmlPlexusConfigurationTest
  33. extends TestCase
  34. {
  35. private XmlPlexusConfiguration configuration;
  36. public void setUp()
  37. {
  38. configuration = new XmlPlexusConfiguration( "a" );
  39. }
  40. public void testWithHelper()
  41. throws Exception
  42. {
  43. PlexusConfiguration c = ConfigurationTestHelper.getTestConfiguration();
  44. ConfigurationTestHelper.testConfiguration( c );
  45. }
  46. public void testGetValue()
  47. throws Exception
  48. {
  49. String orgValue = "Original String";
  50. configuration.setValue( orgValue );
  51. assertEquals( orgValue, configuration.getValue() );
  52. }
  53. public void testGetAttribute()
  54. throws Exception
  55. {
  56. String key = "key";
  57. String value = "original value";
  58. String defaultStr = "default";
  59. configuration.setAttribute( key, value );
  60. assertEquals( value, configuration.getAttribute( key, defaultStr ) );
  61. assertEquals( defaultStr, configuration.getAttribute( "newKey", defaultStr ) );
  62. }
  63. public void testGetChild()
  64. throws Exception
  65. {
  66. XmlPlexusConfiguration child = (XmlPlexusConfiguration) configuration.getChild( "child" );
  67. assertNotNull( child );
  68. child.setValue( "child value" );
  69. assertEquals( 1, configuration.getChildCount() );
  70. child = (XmlPlexusConfiguration) configuration.getChild( "child" );
  71. assertNotNull( child );
  72. assertEquals( "child value", child.getValue() );
  73. assertEquals( 1, configuration.getChildCount() );
  74. }
  75. }