diff options
Diffstat (limited to 'appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/src/test')
-rw-r--r-- | appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/src/test/java/org/onap/appc/dao/util/AppcDatabaseConnectionPoolTest.java | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/src/test/java/org/onap/appc/dao/util/AppcDatabaseConnectionPoolTest.java b/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/src/test/java/org/onap/appc/dao/util/AppcDatabaseConnectionPoolTest.java index faee99d84..c3eada847 100644 --- a/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/src/test/java/org/onap/appc/dao/util/AppcDatabaseConnectionPoolTest.java +++ b/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/src/test/java/org/onap/appc/dao/util/AppcDatabaseConnectionPoolTest.java @@ -9,15 +9,15 @@ * 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. - * + * * ECOMP is a trademark and service mark of AT&T Intellectual Property. * ============LICENSE_END========================================================= */ @@ -81,6 +81,41 @@ public class AppcDatabaseConnectionPoolTest { } @Test + public void testDBURL() { + String dbString; + + dbString = PropertyPattern.DBURL.getPattern(); + dbString = String.format(dbString, "test"); + Assert.assertEquals("org.onap.appc.db.url.test", dbString); + } + + @Test + public void testUSERNAME() { + String dbString; + + dbString = PropertyPattern.USERNAME.getPattern(); + dbString = String.format(dbString, "test"); + Assert.assertEquals("org.onap.appc.db.user.test", dbString); + } + + @Test + public void testPASSWORD() { + String dbString; + + dbString = PropertyPattern.PASSWORD.getPattern(); + dbString = String.format(dbString, "test"); + Assert.assertEquals("org.onap.appc.db.pass.test", dbString); + } + + @Test + public void testDRIVER() { + String dbString; + + dbString = PropertyPattern.DRIVER.getPattern(); + Assert.assertEquals("org.onap.appc.db.jdbc.driver", dbString); + } + + @Test public void testArgumentConstructor() { AppcDatabaseConnectionPool appcDatabaseConnectionPool = new AppcDatabaseConnectionPool(dbUrl, username, password, driver); |