mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Valery Kharseko
15 hours ago 600df926522919b63bfca2816ef9588b6f1c6e34
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*
 * The contents of this file are subject to the terms of the Common Development and
 * Distribution License (the License). You may not use this file except in compliance with the
 * License.
 *
 * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
 * specific language governing permission and limitations under the License.
 *
 * When distributing Covered Software, include this CDDL Header Notice in each file and include
 * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
 * Header, with the fields enclosed by brackets [] replaced by your own identifying
 * information: "Portions copyright [year] [name of copyright owner]".
 *
 * Copyright 2026 3A Systems, LLC.
 */
package org.opends.server.replication.plugin;
 
import static org.mockito.Matchers.any;
import static org.mockito.Mockito.doAnswer;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import static org.testng.Assert.*;
 
import org.forgerock.opendj.ldap.DN;
import org.mockito.ArgumentCaptor;
import org.opends.server.DirectoryServerTestCase;
import org.opends.server.replication.common.CSN;
import org.opends.server.replication.common.CSNGenerator;
import org.opends.server.replication.protocol.LDAPUpdateMsg;
import org.opends.server.replication.protocol.ReplicaOfflineMsg;
import org.opends.server.replication.protocol.UpdateMsg;
import org.opends.server.replication.service.DSRSShutdownSync;
import org.opends.server.replication.service.ReplicationDomain;
import org.opends.server.types.operation.PluginOperation;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
 
/**
 * Tests the bookkeeping a replica does on its own changes: they are published in the order of
 * their CSNs, and the announcement that the replica goes offline is made before the message is
 * published, since the shutdown of a collocated replication server waits for that message to be
 * forwarded - and stands only for a message the broker reports as written.
 * <p>
 * These tests need no server: the changes are built by a CSNGenerator, which needs nothing but
 * a server id.
 */
@SuppressWarnings("javadoc")
@Test(groups = { "precommit", "replication" }, sequential = true)
public class PendingChangesTest extends DirectoryServerTestCase
{
  private static final int SERVER_ID = 42;
  /** A peer replication server the collocated one relays the message to. */
  private static final int RS_ID = 11;
 
  private static DN baseDN;
 
  @BeforeClass
  public static void classSetup() throws Exception
  {
    baseDN = DN.valueOf("dc=example,dc=com");
  }
 
  @Test
  public void replicaOfflineMsgTheBrokerPublishedIsReportedAsSent() throws Exception
  {
    final ReplicationDomain domain = domainWhichPublishes(true);
    final PendingChanges pendingChanges = newPendingChanges(domain);
 
    final CSN offlineCSN = pendingChanges.putReplicaOfflineMsg();
 
    assertNotNull(offlineCSN, "the message was published and must be reported as sent");
    final UpdateMsg published = onlyMsgPublishedBy(domain);
    assertTrue(published instanceof ReplicaOfflineMsg, "published " + published);
    assertEquals(published.getCSN(), offlineCSN);
  }
 
  /**
   * The collocated replication server forwards the message as soon as it is on the wire, so an
   * announcement made after the publish is one the forward found nothing to clear: nothing will
   * ever remove it, and the shutdown waits out its whole grace period for a message which the
   * topology already has.
   * <p>
   * The forward is reported from inside publish(), which is where the message reaches the
   * session, so the race is reproduced rather than waited for.
   */
  @Test
  public void theReplicaOfflineMsgIsAnnouncedBeforeItIsPublished() throws Exception
  {
    final DSRSShutdownSync shutdownSync = new DSRSShutdownSync();
    final ReplicationDomain domain = mock(ReplicationDomain.class);
    forwardWhilePublishing(domain, shutdownSync);
    final PendingChanges pendingChanges = newPendingChanges(domain, shutdownSync);
 
    pendingChanges.putReplicaOfflineMsg();
 
    assertTrue(shutdownSync.canShutdown(baseDN),
        "the message was forwarded, so nothing must hold the shutdown back any longer");
  }
 
  /**
   * The announcement of a message the broker took stands until a peer forwards it: the
   * withdrawal is for the message the broker refused, and an announcement taken back after a
   * publish which succeeded would leave the shutdown nothing to wait for.
   */
  @Test
  public void theAnnouncementOfAPublishedMessageStandsUntilItIsForwarded() throws Exception
  {
    final DSRSShutdownSync shutdownSync = new DSRSShutdownSync();
    final PendingChanges pendingChanges =
        newPendingChanges(domainWhichPublishes(true), shutdownSync);
 
    pendingChanges.putReplicaOfflineMsg();
 
    assertFalse(shutdownSync.canShutdown(baseDN),
        "the message went out and nobody has forwarded it yet, so the shutdown must wait for it");
  }
 
  /**
   * The broker writes nothing when it has no usable session, when the changes which come before
   * this one still have to be republished by the recovery, or when it is stopped in between - and
   * what was not written must not be reported as sent: the shutdown of a collocated replication
   * server waits out the whole grace period of a message it was told about and which never
   * reached the wire.
   */
  @Test
  public void replicaOfflineMsgTheBrokerRefusedIsNotReportedAsSent() throws Exception
  {
    final ReplicationDomain domain = domainWhichPublishes(false);
    final PendingChanges pendingChanges = newPendingChanges(domain);
 
    assertNull(pendingChanges.putReplicaOfflineMsg(), "the broker refused the message");
 
    assertTrue(onlyMsgPublishedBy(domain) instanceof ReplicaOfflineMsg, "it was attempted");
  }
 
  /**
   * The announcement is made before the message is published, and the broker may refuse it
   * once it is: an announcement which stayed would be one nobody will ever forward, and the
   * shutdown would wait out its whole grace period for a message which never left. It is
   * therefore withdrawn - and it is a withdrawal, not an announcement which was never made: the
   * shutdown is held back while the broker holds the message.
   */
  @Test
  public void theAnnouncementOfAReplicaOfflineMsgTheBrokerRefusedIsWithdrawn() throws Exception
  {
    final DSRSShutdownSync shutdownSync = new DSRSShutdownSync();
    final ReplicationDomain domain = mock(ReplicationDomain.class);
    refuseWhilePublishing(domain, shutdownSync);
    final PendingChanges pendingChanges = newPendingChanges(domain, shutdownSync);
 
    assertNull(pendingChanges.putReplicaOfflineMsg(), "the broker refused the message");
 
    assertTrue(shutdownSync.canShutdown(baseDN),
        "the message never reached the wire, so nothing must hold the shutdown back");
  }
 
  /**
   * The message carries the newest CSN of the replica, so a change which is still in flight
   * holds it back, and the broker is never even asked to publish it.
   */
  @Test
  public void replicaOfflineMsgQueuedBehindAnUncommittedChangeIsNotReportedAsSent() throws Exception
  {
    final ReplicationDomain domain = domainWhichPublishes(true);
    final PendingChanges pendingChanges = newPendingChanges(domain);
    pendingChanges.putLocalOperation(newLocalOperation());
 
    assertNull(pendingChanges.putReplicaOfflineMsg(), "nothing was published");
 
    verify(domain, never()).publish(any(UpdateMsg.class));
  }
 
  /**
   * A message which could not be published is given up on rather than left queued: the replica
   * which could not announce itself offline is either shutting down, and the message dies with
   * the process, or it is being disabled for an import or a configuration change - and once it
   * comes back, announcing it offline on the session which follows would be a lie.
   */
  @Test
  public void replicaOfflineMsgWhichCouldNotBeSentIsNotPublishedLater() throws Exception
  {
    final ReplicationDomain domain = domainWhichPublishes(true);
    final PendingChanges pendingChanges = newPendingChanges(domain);
    final CSN changeCSN = pendingChanges.putLocalOperation(newLocalOperation());
    assertNull(pendingChanges.putReplicaOfflineMsg(), "nothing was published");
 
    // The change which held the message back completes.
    pendingChanges.commitAndPushCommittedChanges(changeCSN, mock(LDAPUpdateMsg.class));
 
    final UpdateMsg published = onlyMsgPublishedBy(domain);
    assertTrue(published instanceof LDAPUpdateMsg, "published " + published);
  }
 
  /**
   * The announcement follows the publication rather than the queueing, so a message which a
   * change in flight holds back is not announced: neither while it waits, nor when the change
   * which held it back completes and the message is given up on. Announcing it either time
   * would leave the shutdown waiting out its whole grace period for a forward which cannot
   * happen.
   */
  @Test
  public void theReplicaOfflineMsgHeldBackByAChangeInFlightIsNeverAnnounced() throws Exception
  {
    final DSRSShutdownSync shutdownSync = new DSRSShutdownSync();
    final ReplicationDomain domain = domainWhichPublishes(true);
    final PendingChanges pendingChanges = newPendingChanges(domain, shutdownSync);
    final CSN inFlight = pendingChanges.putLocalOperation(newLocalOperation());
 
    pendingChanges.putReplicaOfflineMsg();
 
    assertTrue(shutdownSync.canShutdown(baseDN),
        "the message is still queued behind a change in flight, and nothing was announced");
 
    pendingChanges.commitAndPushCommittedChanges(inFlight, mock(LDAPUpdateMsg.class));
 
    assertTrue(shutdownSync.canShutdown(baseDN),
        "the message was given up on with the change which held it back, and never announced");
  }
 
  /**
   * A change the broker refused leaves the pending changes all the same: the replica has done
   * it, its ServerState says so, and it is by finding that state ahead of the one its
   * replication server reports that the next session republishes the change from the historical
   * information of its entry. Only the offline announcement, which is stored nowhere, needs the
   * answer of the broker.
   */
  @Test
  public void changeTheBrokerRefusedStillLeavesThePendingChanges() throws Exception
  {
    final ReplicationDomain domain = domainWhichPublishes(false);
    final PendingChanges pendingChanges = newPendingChanges(domain);
    final CSN changeCSN = pendingChanges.putLocalOperation(newLocalOperation());
    assertEquals(pendingChanges.size(), 1);
 
    pendingChanges.commitAndPushCommittedChanges(changeCSN, mock(LDAPUpdateMsg.class));
 
    assertTrue(onlyMsgPublishedBy(domain) instanceof LDAPUpdateMsg, "the change was published");
    assertEquals(pendingChanges.size(), 0, "and is not queued for a second attempt");
  }
 
  /**
   * Reports the forward of the message from within the publish which puts it on the wire, after
   * checking from there that the announcement is already in place, and publishes it. The forward
   * is the one of a peer the message was never recorded as queued for, which is what a forward
   * racing the announcement looks like.
   */
  private void forwardWhilePublishing(
      final ReplicationDomain domain, final DSRSShutdownSync shutdownSync)
  {
    doAnswer(invocation -> {
      final UpdateMsg msg = (UpdateMsg) invocation.getArguments()[0];
      if (msg instanceof ReplicaOfflineMsg)
      {
        assertFalse(shutdownSync.canShutdown(baseDN),
            "the message must be announced before it is published");
        shutdownSync.replicaOfflineMsgForwarded(baseDN, msg.getCSN(), RS_ID);
      }
      return true;
    }).when(domain).publish(any(UpdateMsg.class));
  }
 
  /**
   * Refuses to publish the message, the way a broker with no usable session does, after checking
   * from within the publish that the announcement is already in place.
   */
  private void refuseWhilePublishing(
      final ReplicationDomain domain, final DSRSShutdownSync shutdownSync)
  {
    doAnswer(invocation -> {
      assertFalse(shutdownSync.canShutdown(baseDN),
          "the message must be announced before it is published");
      return false;
    }).when(domain).publish(any(UpdateMsg.class));
  }
 
  private PendingChanges newPendingChanges(ReplicationDomain domain)
  {
    return newPendingChanges(domain, new DSRSShutdownSync());
  }
 
  /**
   * The pending changes of a replica whose domain announces itself through the shutdown sync,
   * with the announcer LDAPReplicationDomain hands its own pending changes.
   */
  private PendingChanges newPendingChanges(
      final ReplicationDomain domain, final DSRSShutdownSync shutdownSync)
  {
    return new PendingChanges(new CSNGenerator(SERVER_ID, 0), domain,
        new ShutdownSyncAnnouncer(shutdownSync, baseDN));
  }
 
  /** A domain whose broker accepts, or refuses, whatever it is given to publish. */
  private ReplicationDomain domainWhichPublishes(boolean accepted)
  {
    final ReplicationDomain domain = mock(ReplicationDomain.class);
    when(domain.publish(any(UpdateMsg.class))).thenReturn(accepted);
    return domain;
  }
 
  /** A local operation, i.e. one this replica must publish to the other replicas. */
  private PluginOperation newLocalOperation()
  {
    final PluginOperation operation = mock(PluginOperation.class);
    when(operation.isSynchronizationOperation()).thenReturn(false);
    return operation;
  }
 
  /**
   * The single message the domain was asked to publish, failing the test if it published
   * anything else: a message which is not sent and a message which is sent twice are both the
   * kind of mistake these tests are about.
   */
  private UpdateMsg onlyMsgPublishedBy(ReplicationDomain domain)
  {
    final ArgumentCaptor<UpdateMsg> published = ArgumentCaptor.forClass(UpdateMsg.class);
    verify(domain).publish(published.capture());
    return published.getValue();
  }
}