/* * SonarQube * Copyright (C) 2009-2025 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.ce; import com.google.common.collect.ImmutableSet; import java.util.Arrays; import java.util.Random; import java.util.concurrent.TimeUnit; import java.util.concurrent.locks.Lock; import java.util.stream.Collectors; import java.util.stream.IntStream; import org.junit.Test; import org.sonar.ce.taskprocessor.CeWorker; import org.sonar.ce.taskprocessor.CeWorkerFactory; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.assertj.core.api.Assertions.fail; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; public class StandaloneCeDistributedInformationTest { @Test public void broadcastWorkerUUIDs_must_retrieve_from_ceworkerfactory() { CeWorkerFactory ceWorkerFactory = mock(CeWorkerFactory.class); StandaloneCeDistributedInformation ceCluster = new StandaloneCeDistributedInformation(ceWorkerFactory); ceCluster.broadcastWorkerUUIDs(); verify(ceWorkerFactory).getWorkers(); } @Test public void getWorkerUUIDs_must_be_retrieved_from_ceworkerfactory() { CeWorkerFactory ceWorkerFactory = mock(CeWorkerFactory.class); CeWorker[] ceWorkers = IntStream.range(0, new Random().nextInt(10)) .mapToObj(i -> { CeWorker ceWorker = mock(CeWorker.class); when(ceWorker.getUUID()).thenReturn("uuid_" + i); return ceWorker; }) .toArray(CeWorker[]::new); when(ceWorkerFactory.getWorkers()).thenReturn(ImmutableSet.copyOf(ceWorkers)); StandaloneCeDistributedInformation ceCluster = new StandaloneCeDistributedInformation(ceWorkerFactory); ceCluster.broadcastWorkerUUIDs(); assertThat(ceCluster.getWorkerUUIDs()).isEqualTo(Arrays.stream(ceWorkers).map(CeWorker::getUUID).collect(Collectors.toSet())); } @Test public void getWorkerUUIDs_throws_ISE_if_broadcastWorkerUUIDs_has_not_been_called_before() { CeWorkerFactory ceWorkerFactory = mock(CeWorkerFactory.class); StandaloneCeDistributedInformation ceCluster = new StandaloneCeDistributedInformation(ceWorkerFactory); assertThatThrownBy(ceCluster::getWorkerUUIDs) .isInstanceOf(IllegalStateException.class) .hasMessage("Invalid call, broadcastWorkerUUIDs() must be called first."); } @Test public void acquireCleanJobLock_returns_a_non_current_lock() { StandaloneCeDistributedInformation underTest = new StandaloneCeDistributedInformation(mock(CeWorkerFactory.class)); Lock lock = underTest.acquireCleanJobLock(); IntStream.range(0, 5 + Math.abs(new Random().nextInt(50))) .forEach(i -> { try { assertThat(lock.tryLock()).isTrue(); assertThat(lock.tryLock(1, TimeUnit.MINUTES)).isTrue(); lock.lock(); lock.lockInterruptibly(); lock.unlock(); } catch (InterruptedException e) { fail("no InterruptedException should be thrown"); } try { lock.newCondition(); fail("a UnsupportedOperationException should have been thrown"); } catch (UnsupportedOperationException e) { assertThat(e.getMessage()).isEqualTo("newCondition not supported"); } }); } }