[Test] Fix DiscoveryNodesTests.testDeltas() (#28361)
The DiscoveryNodes.Delta was changed in #28197. Previous/Master nodes are now always set in the `Delta` (before the change they were set only if the master changed) and the `masterChanged()` method is now based on object equality and nodes ephemeral ids (before the change it was based on nodes id). This commit adapts the DiscoveryNodesTests.testDeltas() to reflect the changes.
This commit is contained in:
parent
f4d0cf55be
commit
5f0cb3a07e
|
@ -21,6 +21,7 @@ package org.elasticsearch.cluster.node;
|
|||
|
||||
import com.carrotsearch.randomizedtesting.generators.RandomPicks;
|
||||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.common.transport.TransportAddress;
|
||||
import org.elasticsearch.test.ESTestCase;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -113,7 +114,9 @@ public class DiscoveryNodesTests extends ESTestCase {
|
|||
// change an attribute
|
||||
Map<String, String> attrs = new HashMap<>(node.getAttributes());
|
||||
attrs.put("new", "new");
|
||||
node = new DiscoveryNode(node.getName(), node.getId(), node.getAddress(), attrs, node.getRoles(), node.getVersion());
|
||||
final TransportAddress nodeAddress = node.getAddress();
|
||||
node = new DiscoveryNode(node.getName(), node.getId(), node.getEphemeralId(), nodeAddress.address().getHostString(),
|
||||
nodeAddress.getAddress(), nodeAddress, attrs, node.getRoles(), node.getVersion());
|
||||
}
|
||||
nodesB.add(node);
|
||||
}
|
||||
|
@ -140,14 +143,21 @@ public class DiscoveryNodesTests extends ESTestCase {
|
|||
|
||||
DiscoveryNodes.Delta delta = discoNodesB.delta(discoNodesA);
|
||||
|
||||
if (Objects.equals(masterAId, masterBId)) {
|
||||
assertFalse(delta.masterNodeChanged());
|
||||
if (masterA == null) {
|
||||
assertThat(delta.previousMasterNode(), nullValue());
|
||||
} else {
|
||||
assertThat(delta.previousMasterNode().getId(), equalTo(masterAId));
|
||||
}
|
||||
if (masterB == null) {
|
||||
assertThat(delta.newMasterNode(), nullValue());
|
||||
} else {
|
||||
assertThat(delta.newMasterNode().getId(), equalTo(masterBId));
|
||||
}
|
||||
|
||||
if (Objects.equals(masterAId, masterBId)) {
|
||||
assertFalse(delta.masterNodeChanged());
|
||||
} else {
|
||||
assertTrue(delta.masterNodeChanged());
|
||||
assertThat(delta.newMasterNode() != null ? delta.newMasterNode().getId() : null, equalTo(masterBId));
|
||||
assertThat(delta.previousMasterNode() != null ? delta.previousMasterNode().getId() : null, equalTo(masterAId));
|
||||
}
|
||||
|
||||
Set<DiscoveryNode> newNodes = new HashSet<>(nodesB);
|
||||
|
|
Loading…
Reference in New Issue