From d6e7b63cc580e7b3822be61fe92a493ad5e222a3 Mon Sep 17 00:00:00 2001 From: "Nelson, Thomas (arthurdent3)" Date: Thu, 9 May 2019 14:16:37 +0000 Subject: Changes Listed below: - Added build version API - Updated Keyspace active to use Properties setting - Update Libraries Netty,jbcrypt,Jackson Databind and log4j - Removed some irrelivant files - Updated some usint tests to ignore some tests(This will be updated soon) - Bugfixes - Missing Values, inform user. - Respond with proper error - Fix Locking Contention issue. - Add locking retry for atomic calls. Change-Id: Ie218dd92edb0c20e4a0efe33eeaaec84e5293c44 Issue-ID: MUSIC-393 Signed-off-by: Nelson, Thomas (arthurdent3) --- src/test/java/org/onap/music/unittests/TstRestMusicLockAPI.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/test/java/org/onap/music/unittests/TstRestMusicLockAPI.java') diff --git a/src/test/java/org/onap/music/unittests/TstRestMusicLockAPI.java b/src/test/java/org/onap/music/unittests/TstRestMusicLockAPI.java index 92c5d818..956a266d 100644 --- a/src/test/java/org/onap/music/unittests/TstRestMusicLockAPI.java +++ b/src/test/java/org/onap/music/unittests/TstRestMusicLockAPI.java @@ -350,12 +350,13 @@ public class TstRestMusicLockAPI { } @Test + @Ignore //deprecated function public void test_deleteLock() throws Exception { System.out.println("Testing delete lock"); createAndInsertIntoTable(); String lockRef = createLockReference(); - + Response response = lock.deleteLock(lockName, "1", "1", "abc66ccc-d857-4e90-b1e5-df98a3d40ce6", authorization, appName); System.out.println("Status: " + response.getStatus() + ". Entity " + response.getEntity()); @@ -363,6 +364,7 @@ public class TstRestMusicLockAPI { } @Test + @Ignore //deprecated function public void test_deleteLock_wrongAuth() throws Exception { System.out.println("Testing delete lock w/ wrong auth"); createAndInsertIntoTable(); @@ -376,6 +378,7 @@ public class TstRestMusicLockAPI { } @Test + @Ignore //deprecated function public void test_deleteLock_malformedLock() throws Exception { System.out.println("Testing delete lock w/ malformed lock"); createAndInsertIntoTable(); -- cgit 1.2.3-korg