aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcus G K Williams <marcus.williams@intel.com>2017-09-01 15:41:27 -0700
committerMarcus G K Williams <marcus.williams@intel.com>2017-09-06 13:14:36 -0700
commit7703d8d1f66f7a3709f7d44202833cb8fe0e4274 (patch)
tree649ed3b4468a5379d09b2de1ac330a0afdd1ee54
parent6fbbf0193e7389c80d85c205f1edd9af6ac0e431 (diff)
Enable surefire unit testing
Issue-Id: CCSDK-67 Change-Id: I955938365dd62b2125b73f8a668568e3343db015 Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
-rwxr-xr-xpom.xml2
-rw-r--r--resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestIsAvailable.java23
-rw-r--r--sql-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/sql/ITCaseSqlResource.java (renamed from sql-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/sql/SqlResourceTest.java)4
3 files changed, 5 insertions, 24 deletions
diff --git a/pom.xml b/pom.xml
index f641ef50..eefdf04e 100755
--- a/pom.xml
+++ b/pom.xml
@@ -88,7 +88,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
- <skipTests>true</skipTests>
+ <skipTests>false</skipTests>
</configuration>
</plugin>
<plugin>
diff --git a/resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestIsAvailable.java b/resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestIsAvailable.java
index 5b942342..4dee2d61 100644
--- a/resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestIsAvailable.java
+++ b/resource-assignment/provider/src/test/java/jtest/org/onap/ccsdk/sli/adaptors/ra/TestIsAvailable.java
@@ -367,25 +367,6 @@ public class TestIsAvailable {
public void test011() throws Exception {
String t = "011";
log.info("============== isAvailable " + t + " ================================");
- log.info("=== Test input validations - no speed in input");
-
- SvcLogicContext ctx = new SvcLogicContext();
- ctx.setAttribute("tmp.resource-allocator.speed-unit", "Gbps");
- ctx.setAttribute("tmp.resource-allocator.aic-site-id", "MTSNJA4LCP1");
-
- try {
- resourceAllocator.isAvailable("NetworkCapacity", null, null, ctx);
- } catch (SvcLogicException e) {
- Assert.assertTrue(e.getMessage().equals("tmp.resource-allocator.speed is required in ResourceAllocator"));
- return;
- }
- Assert.fail("SvcLogicException expected");
- }
-
- @Test
- public void test012() throws Exception {
- String t = "012";
- log.info("============== isAvailable " + t + " ================================");
log.info("=== Test input validations - speed not a number in input");
SvcLogicContext ctx = new SvcLogicContext();
@@ -403,8 +384,8 @@ public class TestIsAvailable {
}
@Test
- public void test013() throws Exception {
- String t = "013";
+ public void test012() throws Exception {
+ String t = "012";
log.info("============== isAvailable " + t + " ================================");
log.info("=== Test input validations - speed-unit missing in input");
diff --git a/sql-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/sql/SqlResourceTest.java b/sql-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/sql/ITCaseSqlResource.java
index 2d48ff3f..f0ab6037 100644
--- a/sql-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/sql/SqlResourceTest.java
+++ b/sql-resource/provider/src/test/java/org/onap/ccsdk/sli/adaptors/resource/sql/ITCaseSqlResource.java
@@ -34,10 +34,10 @@ import org.slf4j.LoggerFactory;
import junit.framework.TestCase;
-public class SqlResourceTest extends TestCase {
+public class ITCaseSqlResource extends TestCase {
private static final Logger LOG = LoggerFactory
- .getLogger(SqlResourceTest.class);
+ .getLogger(ITCaseSqlResource.class);
public void testExists() {