aboutsummaryrefslogtreecommitdiffstats
path: root/music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java
diff options
context:
space:
mode:
authorGadicherla, Shiva <sg592n@att.com>2020-01-24 21:54:17 +0000
committerGadicherla, Shiva <sg592n@att.com>2020-01-30 19:38:39 +0000
commit950bed75318edc958d763eaee1d0c7a493e3dbd2 (patch)
tree4dfffef4092034e38fed7216c3d7d0470cdd2eb5 /music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java
parentc2efe177fb1f418734e7d3d7ece32e7ddd97a640 (diff)
JUnit test case coverage for Condition.java, JsonLock.java, MusicLockState.java, MusicCore.java
Issue-ID: MUSIC-521 Signed-off-by: Gadicherla, Shiva <shiva.gadicherla@att.com> Change-Id: I02aa0986b89883514ae2a001ec00006f0f28c3e8
Diffstat (limited to 'music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java')
-rw-r--r--music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java b/music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java
new file mode 100644
index 00000000..75db75e5
--- /dev/null
+++ b/music-core/src/test/java/org/onap/music/datastore/jsonobjects/JsonLockTest.java
@@ -0,0 +1,50 @@
+/*******************************************************************************
+ * ============LICENSE_START==========================================
+ * org.onap.music
+ * ===================================================================
+ * Copyright (c) 2019 AT&T Intellectual Property
+ * ===================================================================
+ * 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.
+ *
+ * ============LICENSE_END=============================================
+ * ====================================================================
+ *******************************************************************************/
+
+package org.onap.music.datastore.jsonobjects;
+
+import static org.junit.Assert.assertEquals;
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.music.lockingservice.cassandra.LockType;
+
+public class JsonLockTest {
+
+ JsonLock jsonLock;
+
+ @Before
+ public void setup() {
+ jsonLock = new JsonLock();
+ }
+
+ @Test
+ public void testSetLockType() {
+ jsonLock.setLockType(LockType.READ);
+ assertEquals(LockType.READ, jsonLock.getLocktype());
+
+ jsonLock.setLockType(LockType.WRITE);
+ assertEquals(LockType.WRITE, jsonLock.getLocktype());
+
+ jsonLock.setLockType(LockType.PROMOTING);
+ assertEquals(LockType.PROMOTING, jsonLock.getLocktype());
+ }
+}