Lines Matching defs:genId

601           + " Expect genId to be not retrievable from suffix root entry");
606 + " Expect genId to be set in memory on the replication "
686 debugInfo("Aft restart / replServer.genId=" + genIdAfterRestart);
741 assertEquals(dsGenId, rsGenId, "DS and replServer are expected to have same genId.");
786 // S2 should be re-initialized and have a new valid genId
875 private Entry createSetGenerationIdTask(Long genId, String additionalAttribute) throws Exception
877 String genIdString = genId != null ? genId.toString() : "";
904 * - genId checking across multiple starting RS (replication servers)
905 * - genId setting propagation from one RS to the others
906 * - genId reset propagation from one RS to the others
912 long genId;
928 debugInfo("Expect genId are set in all replServers.");
941 genId = readGenIdFromSuffixRootEntry(true);
942 Assertions.assertThat(genId).isNotEqualTo(-1);
943 waitForStableGenerationId(genId);
945 debugInfo("Connecting broker2 to replServer3 with a good genId");
946 broker2 = openReplicationSession(server2ID, replServer3, genId);
949 debugInfo("Expecting that broker2 is not in bad gen id since it has a correct genId");
957 waitForStableGenerationId(genId);
959 debugInfo("Connecting broker3 to replServer1 with a bad genId");
964 debugInfo("Expecting that broker3 is in bad gen id since it has a bad genId");
975 genId = readGenIdFromSuffixRootEntry(true);
976 assertGenIdEquals(genId);
978 debugInfo("Adding reset task to DS." + genId);
1069 "genId attribute should not be retrievable since there are NO entry in the backend");
1074 "genId attribute should be retrievable since there IS one entry in the backend");
1110 debugInfo(testCase + " Expect genId to be set in memory on the replication " +