summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_stream/test/rabbit_stream_SUITE_data/src/test/java/com/rabbitmq/stream/ClusterSizeTest.java
blob: 993c19b8521c3be87057a72d1de06456abe178c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// The contents of this file are subject to the Mozilla Public 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 https://www.mozilla.org/en-US/MPL/2.0/
//
// Software distributed under the License is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
// the License for the specific language governing rights and
// limitations under the License.
//
// The Original Code is RabbitMQ.
//
// The Initial Developer of the Original Code is Pivotal Software, Inc.
// Copyright (c) 2020 VMware, Inc. or its affiliates.  All rights reserved.
//

package com.rabbitmq.stream;

import static org.assertj.core.api.Assertions.assertThat;

import com.rabbitmq.stream.impl.Client;
import com.rabbitmq.stream.impl.Client.Response;
import com.rabbitmq.stream.impl.Client.StreamMetadata;
import java.util.Collections;
import java.util.UUID;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
import org.junit.jupiter.params.provider.ValueSource;

@ExtendWith(TestUtils.StreamTestInfrastructureExtension.class)
public class ClusterSizeTest {

  TestUtils.ClientFactory cf;

  @ParameterizedTest
  @ValueSource(strings = {"-1", "0"})
  void clusterSizeZeroShouldReturnError(String clusterSize) {
    Client client = cf.get(new Client.ClientParameters().port(TestUtils.streamPortNode1()));
    String s = UUID.randomUUID().toString();
    Response response =
        client.create(s, Collections.singletonMap("initial-cluster-size", clusterSize));
    assertThat(response.isOk()).isFalse();
    assertThat(response.getResponseCode()).isEqualTo(Constants.RESPONSE_CODE_PRECONDITION_FAILED);
  }

  @ParameterizedTest
  @CsvSource({"1,1", "2,2", "3,3", "5,3"})
  void clusterSizeShouldReflectOnMetadata(String requestedClusterSize, int expectedClusterSize) {
    Client client = cf.get(new Client.ClientParameters().port(TestUtils.streamPortNode1()));
    String s = UUID.randomUUID().toString();
    try {
      Response response =
          client.create(s, Collections.singletonMap("initial-cluster-size", requestedClusterSize));
      assertThat(response.isOk()).isTrue();
      StreamMetadata metadata = client.metadata(s).get(s);
      assertThat(metadata).isNotNull();
      assertThat(metadata.getResponseCode()).isEqualTo(Constants.RESPONSE_CODE_OK);
      int actualClusterSize = metadata.getLeader() == null ? 0 : 1 + metadata.getReplicas().size();
      assertThat(actualClusterSize).isEqualTo(expectedClusterSize);
    } finally {
      client.delete(s);
    }
  }
}