]> source.dussan.org Git - sonarqube.git/blob
20933384d78aca30e3b982a77abed7d945059f7d
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2024 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 package org.sonar.server.es.searchrequest;
21
22 import java.util.Random;
23 import java.util.Set;
24 import java.util.stream.Collectors;
25 import java.util.stream.IntStream;
26 import org.apache.commons.lang3.RandomStringUtils;
27 import org.junit.Test;
28
29 import static org.apache.commons.lang3.RandomStringUtils.randomAlphabetic;
30 import static org.assertj.core.api.Assertions.assertThat;
31 import static org.assertj.core.api.Assertions.assertThatThrownBy;
32
33 public class SimpleFieldTopAggregationDefinitionTest {
34   private static final Random RANDOM = new Random();
35
36
37   @Test
38   public void fieldName_cannot_be_null() {
39     boolean sticky = RANDOM.nextBoolean();
40
41     assertThatThrownBy(() -> new SimpleFieldTopAggregationDefinition(null, sticky))
42       .isInstanceOf(NullPointerException.class)
43       .hasMessage("fieldName can't be null");
44   }
45
46   @Test
47   public void getters() {
48     String fieldName = RandomStringUtils.randomAlphabetic(12);
49     boolean sticky = new Random().nextBoolean();
50     SimpleFieldTopAggregationDefinition underTest = new SimpleFieldTopAggregationDefinition(fieldName, sticky);
51
52     assertThat(underTest.getFilterScope().getFieldName()).isEqualTo(fieldName);
53     assertThat(underTest.isSticky()).isEqualTo(sticky);
54   }
55
56   @Test
57   public void getFilterScope_always_returns_the_same_instance() {
58     String fieldName = randomAlphabetic(12);
59     boolean sticky = RANDOM.nextBoolean();
60     SimpleFieldTopAggregationDefinition underTest = new SimpleFieldTopAggregationDefinition(fieldName, sticky);
61
62     Set<TopAggregationDefinition.FilterScope> filterScopes = IntStream.range(0, 2 + RANDOM.nextInt(200))
63       .mapToObj(i -> underTest.getFilterScope())
64       .collect(Collectors.toSet());
65
66     assertThat(filterScopes).hasSize(1);
67   }
68 }