2  * ========================LICENSE_START=================================
 
   4  * ======================================================================
 
   5  * Copyright (C) 2019-2020 Nordix Foundation. All rights reserved.
 
   6  * ======================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ========================LICENSE_END===================================
 
  21 package org.onap.ccsdk.oran.a1policymanagementservice.repository;
 
  23 import static org.assertj.core.api.Assertions.assertThat;
 
  25 import java.io.IOException;
 
  27 import org.junit.jupiter.api.Test;
 
  28 import org.junit.jupiter.api.extension.ExtendWith;
 
  29 import org.mockito.junit.jupiter.MockitoExtension;
 
  30 import org.onap.ccsdk.oran.a1policymanagementservice.exceptions.ServiceException;
 
  31 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Lock.LockType;
 
  33 import reactor.core.publisher.Mono;
 
  34 import reactor.test.StepVerifier;
 
  36 @ExtendWith(MockitoExtension.class)
 
  39     @SuppressWarnings("squid:S2925") // "Thread.sleep" should not be used in tests.
 
  40     private void sleep() {
 
  43         } catch (InterruptedException e) {
 
  48     private void asynchUnlock(Lock lock) {
 
  49         Thread thread = new Thread(() -> {
 
  51             lock.unlockBlocking();
 
  57     void testLock() throws IOException, ServiceException {
 
  58         Lock lock = new Lock();
 
  59         lock.lockBlocking(LockType.SHARED);
 
  60         lock.unlockBlocking();
 
  62         lock.lockBlocking(LockType.EXCLUSIVE);
 
  65         lock.lockBlocking(LockType.SHARED);
 
  66         lock.unlockBlocking();
 
  68         assertThat(lock.getLockCounter()).isZero();
 
  72     void testReactiveLock() {
 
  73         Lock lock = new Lock();
 
  75         Mono<Lock> seq = lock.lock(LockType.EXCLUSIVE) //
 
  76                 .flatMap(l -> lock.lock(LockType.EXCLUSIVE)) //
 
  77                 .flatMap(l -> lock.unlock());
 
  80         StepVerifier.create(seq) //
 
  81                 .expectSubscription() //
 
  85         assertThat(lock.getLockCounter()).isZero();