-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2391 Fix that the profiler.jdbc.dbcp option is not working
- Loading branch information
1 parent
1e98aaf
commit 62285cf
Showing
3 changed files
with
135 additions
and
6 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
plugins/dbcp/src/main/java/com/navercorp/pinpoint/plugin/commons/dbcp/CommonsDbcpConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright 2016 NAVER Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.navercorp.pinpoint.plugin.commons.dbcp; | ||
|
||
import com.navercorp.pinpoint.bootstrap.config.ProfilerConfig; | ||
|
||
/** | ||
* @author Taejin Koo | ||
*/ | ||
public class CommonsDbcpConfig { | ||
|
||
static final String DBCP_PLUGIN_ENABLE = "profiler.jdbc.dbcp"; | ||
static final String DBCP_PROFILE_CONNECTIONCLOSE_ENABLE = "profiler.jdbc.dbcp.connectionclose"; | ||
|
||
private final boolean pluginEnable; | ||
private final boolean profileClose; | ||
|
||
public CommonsDbcpConfig(ProfilerConfig config) { | ||
pluginEnable = config.readBoolean(DBCP_PLUGIN_ENABLE, false); | ||
profileClose = config.readBoolean(DBCP_PROFILE_CONNECTIONCLOSE_ENABLE, false); | ||
} | ||
|
||
public boolean isPluginEnable() { | ||
return pluginEnable; | ||
} | ||
|
||
public boolean isProfileClose() { | ||
return profileClose; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
.../dbcp/src/test/java/com/navercorp/pinpoint/plugin/commons/dbcp/CommonsDbcpConfigTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* Copyright 2016 NAVER Corp. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.navercorp.pinpoint.plugin.commons.dbcp; | ||
|
||
import com.navercorp.pinpoint.bootstrap.config.DefaultProfilerConfig; | ||
import com.navercorp.pinpoint.bootstrap.config.ProfilerConfig; | ||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import java.util.Properties; | ||
|
||
/** | ||
* @author Taejin Koo | ||
*/ | ||
public class CommonsDbcpConfigTest { | ||
|
||
@Test | ||
public void configTest1() throws Exception { | ||
CommonsDbcpConfig commonsDbcpConfig = createCommonsDbcpConfig("false", "false"); | ||
|
||
Assert.assertFalse(commonsDbcpConfig.isPluginEnable()); | ||
Assert.assertFalse(commonsDbcpConfig.isProfileClose()); | ||
} | ||
|
||
@Test | ||
public void configTest2() throws Exception { | ||
CommonsDbcpConfig commonsDbcpConfig = createCommonsDbcpConfig("false", "true"); | ||
|
||
Assert.assertFalse(commonsDbcpConfig.isPluginEnable()); | ||
Assert.assertTrue(commonsDbcpConfig.isProfileClose()); | ||
} | ||
|
||
@Test | ||
public void configTest3() throws Exception { | ||
CommonsDbcpConfig commonsDbcpConfig = createCommonsDbcpConfig("true", "false"); | ||
|
||
Assert.assertTrue(commonsDbcpConfig.isPluginEnable()); | ||
Assert.assertFalse(commonsDbcpConfig.isProfileClose()); | ||
} | ||
|
||
@Test | ||
public void configTest4() throws Exception { | ||
CommonsDbcpConfig commonsDbcpConfig = createCommonsDbcpConfig("true", "true"); | ||
|
||
Assert.assertTrue(commonsDbcpConfig.isPluginEnable()); | ||
Assert.assertTrue(commonsDbcpConfig.isProfileClose()); | ||
} | ||
|
||
private CommonsDbcpConfig createCommonsDbcpConfig(String pluginEnable, String profileConnectionCloseEnable) { | ||
Properties properties = new Properties(); | ||
properties.put(CommonsDbcpConfig.DBCP_PLUGIN_ENABLE, pluginEnable); | ||
properties.put(CommonsDbcpConfig.DBCP_PROFILE_CONNECTIONCLOSE_ENABLE, profileConnectionCloseEnable); | ||
|
||
ProfilerConfig profilerConfig = new DefaultProfilerConfig(properties); | ||
|
||
return new CommonsDbcpConfig(profilerConfig); | ||
} | ||
|
||
} |