diff options
author | Elena Kuleshov <evn@att.com> | 2019-08-01 03:13:04 -0400 |
---|---|---|
committer | Elena Kuleshov <evn@att.com> | 2019-08-01 03:14:38 -0400 |
commit | b9163367a8760d5e4249fce287f638f1ec9dddfb (patch) | |
tree | 0876318fd0c0e4c959ffc0db6aaff06560b18d80 /common/src/test | |
parent | 15c7bc833ae91ed2590370dd001d5361149aef9a (diff) |
Handle no pservers case on lock check
Check for null return value from pservers query
Issue-ID: SO-2184
Signed-off-by: Kuleshov, Elena <evn@att.com>
Change-Id: I34c71601e694241a6d3cfefa8227200e715e2ed3
Diffstat (limited to 'common/src/test')
-rw-r--r-- | common/src/test/java/org/onap/so/client/aai/AAIValidatorTest.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/src/test/java/org/onap/so/client/aai/AAIValidatorTest.java b/common/src/test/java/org/onap/so/client/aai/AAIValidatorTest.java index 5fa2ff0295..b91d0e705a 100644 --- a/common/src/test/java/org/onap/so/client/aai/AAIValidatorTest.java +++ b/common/src/test/java/org/onap/so/client/aai/AAIValidatorTest.java @@ -91,6 +91,13 @@ public class AAIValidatorTest { } @Test + public void test_IsPhysicalServerLocked_NoServers_False() throws IOException { + when(client.getPhysicalServerByVnfId(vnfName)).thenReturn(null); + boolean locked = validator.isPhysicalServerLocked(vnfName); + assertEquals(false, locked); + } + + @Test public void test_IsVNFLocked_False() { when(client.getVnfByName(vnfName)).thenReturn(createGenericVnfs(false)); boolean locked = validator.isVNFLocked(vnfName); |