/core/camel-main/src/test/java/org/apache/camel/main/PropertyBindingSupportClassFactoryMethodTest.java

https://github.com/apache/camel · Java · 133 lines · 84 code · 30 blank · 19 comment · 0 complexity · b02a74a3fa65925453a7e17fecac051b MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. 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. package org.apache.camel.main;
  18. import java.util.Properties;
  19. import org.apache.camel.CamelContext;
  20. import org.apache.camel.impl.DefaultCamelContext;
  21. import org.apache.camel.support.PropertyBindingSupport;
  22. import org.junit.jupiter.api.Test;
  23. import static org.junit.jupiter.api.Assertions.assertEquals;
  24. /**
  25. * Unit test for PropertyBindingSupport
  26. */
  27. public class PropertyBindingSupportClassFactoryMethodTest {
  28. @Test
  29. public void testFactory() throws Exception {
  30. CamelContext context = new DefaultCamelContext();
  31. context.start();
  32. MyApp target = new MyApp();
  33. PropertyBindingSupport.build()
  34. .withCamelContext(context)
  35. .withTarget(target)
  36. .withProperty("name", "Donald")
  37. .withProperty("myDriver", "#class:" + MyDriver.class.getName() + "('localhost:2121', 'scott', 'tiger')")
  38. .withRemoveParameters(false).bind();
  39. assertEquals("Donald", target.getName());
  40. assertEquals("localhost:2121", target.getMyDriver().getUrl());
  41. assertEquals("scott", target.getMyDriver().getUsername());
  42. assertEquals("tiger", target.getMyDriver().getPassword());
  43. context.stop();
  44. }
  45. @Test
  46. public void testFactoryPropertyPlaceholder() throws Exception {
  47. CamelContext context = new DefaultCamelContext();
  48. Properties prop = new Properties();
  49. prop.put("myUsername", "scott");
  50. prop.put("myPassword", "tiger");
  51. prop.put("myUrl", "localhost:2121");
  52. context.getPropertiesComponent().setInitialProperties(prop);
  53. context.start();
  54. MyApp target = new MyApp();
  55. PropertyBindingSupport.build()
  56. .withCamelContext(context)
  57. .withTarget(target)
  58. .withProperty("name", "Donald")
  59. .withProperty("myDriver",
  60. "#class:" + MyDriver.class.getName() + "('{{myUrl}}', '{{myUsername}}', '{{myPassword}}')")
  61. .withRemoveParameters(false).bind();
  62. assertEquals("Donald", target.getName());
  63. assertEquals("localhost:2121", target.getMyDriver().getUrl());
  64. assertEquals("scott", target.getMyDriver().getUsername());
  65. assertEquals("tiger", target.getMyDriver().getPassword());
  66. context.stop();
  67. }
  68. public static class MyApp {
  69. private String name;
  70. private MyDriver myDriver;
  71. public String getName() {
  72. return name;
  73. }
  74. public void setName(String name) {
  75. this.name = name;
  76. }
  77. public MyDriver getMyDriver() {
  78. return myDriver;
  79. }
  80. public void setMyDriver(MyDriver myDriver) {
  81. this.myDriver = myDriver;
  82. }
  83. }
  84. public static class MyDriver {
  85. private String url;
  86. private String username;
  87. private String password;
  88. public MyDriver(String url, String username, String password) {
  89. this.url = url;
  90. this.username = username;
  91. this.password = password;
  92. }
  93. public String getUrl() {
  94. return url;
  95. }
  96. public String getUsername() {
  97. return username;
  98. }
  99. public String getPassword() {
  100. return password;
  101. }
  102. }
  103. }