Clover Coverage Report - Impex Parent 1.0.21-SNAPSHOT (Aggregated)
Coverage timestamp: Tue Feb 8 2011 11:33:53 EST
14   47   3   4.67
0   31   0.21   3
3     1  
1    
 
  PropertyPlaceholderHelperTest       Line # 11 14 0% 3 17 0% 0.0
 
No Tests
 
1    package org.kuali.db;
2   
3    import static org.junit.Assert.assertEquals;
4   
5    import java.io.IOException;
6    import java.util.Properties;
7   
8    import org.junit.Test;
9    import org.springframework.util.PropertyPlaceholderHelper;
10   
 
11    public class PropertyPlaceholderHelperTest {
12   
 
13  0 toggle @Test
14    public void replacePlaceholders() {
15  0 Properties properties = new Properties();
16  0 properties.put("schema", "KSEMBEDDED");
17  0 String value = "DROP USER ${schema} CASCADE;";
18  0 PropertyPlaceholderHelper helper = new PropertyPlaceholderHelper("${", "}");
19  0 value = helper.replacePlaceholders(value, properties);
20  0 assertEquals(value, "DROP USER KSEMBEDDED CASCADE;");
21    }
22   
 
23  0 toggle @Test
24    public void nestedProperties() {
25  0 Properties properties = new Properties();
26  0 properties.put("db.vendor", "derby");
27  0 properties.put("datasource.url.oracle", "jdbc:oracle:thin:@localhost:1521:XE");
28  0 properties.put("datasource.url.derby", "jdbc:derby://localhost:1527/derby/rice-db;create=true");
29  0 properties.put("datasource.url", "${datasource.url.${db.vendor}}");
30  0 PropertyPlaceholderHelper helper = new PropertyPlaceholderHelper("${", "}");
31  0 String value = "${datasource.url}";
32  0 value = helper.replacePlaceholders(value, properties);
33    // System.out.println(value);
34    }
35   
 
36  0 toggle @Test
37    public void configContext() throws IOException {
38    //JAXBConfigImpl config = new JAXBConfigImpl("classpath:standalone-config.xml", ConfigContext.getCurrentContextConfig());
39    //config.setSystemOverride(true);
40    //config.parseConfig();
41    //ConfigContext.init(config);
42    //Properties properties = config.getProperties();
43    //System.out.println(properties.getProperty("environment"));
44    //System.out.println(properties.getProperty("s"));
45    }
46   
47    }