CavalliumDBEngine/src/test/java/it/cavallium/dbengine/tests/TestDictionaryMapDeep.java

861 lines
33 KiB
Java
Raw Normal View History

2023-02-22 22:31:36 +01:00
package it.cavallium.dbengine.tests;
2021-05-02 19:18:15 +02:00
2023-02-22 22:31:36 +01:00
import static it.cavallium.dbengine.tests.DbTestUtils.BIG_STRING;
import static it.cavallium.dbengine.tests.DbTestUtils.ensureNoLeaks;
import static it.cavallium.dbengine.tests.DbTestUtils.isCIMode;
import static it.cavallium.dbengine.tests.DbTestUtils.run;
import static it.cavallium.dbengine.tests.DbTestUtils.runVoid;
import static it.cavallium.dbengine.tests.DbTestUtils.tempDatabaseMapDictionaryDeepMap;
2023-02-24 00:18:02 +01:00
import static it.cavallium.dbengine.tests.DbTestUtils.tempDb;
2023-02-22 22:31:36 +01:00
import static it.cavallium.dbengine.tests.DbTestUtils.tempDictionary;
import static it.cavallium.dbengine.utils.StreamUtils.toList;
2021-05-02 19:18:15 +02:00
2023-02-22 22:31:36 +01:00
import com.google.common.collect.Streams;
2021-05-02 19:18:15 +02:00
import it.cavallium.dbengine.database.UpdateMode;
2021-12-18 18:16:56 +01:00
import it.unimi.dsi.fastutil.objects.Object2ObjectLinkedOpenHashMap;
import it.unimi.dsi.fastutil.objects.Object2ObjectSortedMap;
2023-02-22 22:31:36 +01:00
import java.io.IOException;
2023-02-24 00:18:02 +01:00
import java.util.ArrayList;
2021-05-02 19:18:15 +02:00
import java.util.Arrays;
2023-02-24 00:18:02 +01:00
import java.util.HashSet;
2021-08-29 01:15:51 +02:00
import java.util.List;
2021-05-02 19:18:15 +02:00
import java.util.Map;
2023-02-24 00:18:02 +01:00
import java.util.Map.Entry;
import java.util.Objects;
import java.util.Optional;
2021-05-02 19:18:15 +02:00
import java.util.Set;
2023-02-24 00:18:02 +01:00
import java.util.concurrent.ConcurrentHashMap;
2021-05-02 19:18:15 +02:00
import java.util.stream.Collectors;
import java.util.stream.Stream;
2022-01-04 12:55:33 +01:00
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
2021-08-28 22:42:51 +02:00
import org.junit.jupiter.api.AfterEach;
2021-09-23 11:30:44 +02:00
import org.junit.jupiter.api.Assertions;
2021-08-28 22:42:51 +02:00
import org.junit.jupiter.api.BeforeEach;
2021-08-29 01:15:51 +02:00
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.TestMethodOrder;
2021-05-02 19:18:15 +02:00
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
2021-08-29 01:15:51 +02:00
@TestMethodOrder(MethodOrderer.MethodName.class)
2021-09-06 01:15:13 +02:00
public abstract class TestDictionaryMapDeep {
2021-05-02 19:18:15 +02:00
2022-01-04 12:55:33 +01:00
private final Logger log = LogManager.getLogger(this.getClass());
2021-09-08 00:22:39 +02:00
private boolean checkLeaks = true;
2021-08-29 01:15:51 +02:00
2021-05-02 19:18:15 +02:00
private static boolean isTestBadKeysEnabled() {
2021-09-10 13:34:26 +02:00
return !isCIMode() && System.getProperty("badkeys", "true").equalsIgnoreCase("true");
2021-05-02 19:18:15 +02:00
}
2021-09-06 01:15:13 +02:00
protected abstract TemporaryDbGenerator getTempDbGenerator();
2021-05-02 19:18:15 +02:00
2023-02-22 22:31:36 +01:00
record Tuple2<X, Y>(X getT1, Y getT2) {}
2023-02-22 23:31:05 +01:00
record Tuple3<X, Y, Z>(X getT1, Y getT2, Z getT3) {}
record Tuple4<X, Y, Z, W>(X getT1, Y getT2, Z getT3, W getT4) {}
record Tuple5<X, Y, Z, W, X1>(X getT1, Y getT2, Z getT3, W getT4, X1 getT5) {}
2023-02-22 22:31:36 +01:00
2021-05-02 19:18:15 +02:00
private static Stream<Arguments> provideArgumentsSet() {
2021-05-03 21:41:51 +02:00
var goodKeys = Set.of("12345");
2021-05-02 19:18:15 +02:00
Set<String> badKeys;
if (isTestBadKeysEnabled()) {
2021-05-03 21:41:51 +02:00
badKeys = Set.of("", "aaaa", "aaaaaa");
2021-05-02 19:18:15 +02:00
} else {
badKeys = Set.of();
}
Set<Tuple2<String, Boolean>> keys = Stream.concat(
2023-02-22 22:31:36 +01:00
goodKeys.stream().map(s -> new Tuple2<>(s, false)),
badKeys.stream().map(s -> new Tuple2<>(s, true))
2021-05-02 19:18:15 +02:00
).collect(Collectors.toSet());
var values = Set.of(
2021-12-18 18:16:56 +01:00
new Object2ObjectLinkedOpenHashMap<>(Map.of("123456", "a", "234567", "")),
new Object2ObjectLinkedOpenHashMap<>(Map.of("123456", "\0", "234567", "\0\0", "345678", BIG_STRING))
2021-05-02 19:18:15 +02:00
);
return keys
.stream()
.flatMap(keyTuple -> {
2021-12-18 18:16:56 +01:00
Stream<Object2ObjectLinkedOpenHashMap<String, String>> strm;
2021-05-02 19:18:15 +02:00
if (keyTuple.getT2()) {
strm = values.stream().limit(1);
} else {
strm = values.stream();
}
2023-02-22 22:31:36 +01:00
return strm.map(val -> new Tuple3<>(keyTuple.getT1(), val, keyTuple.getT2()));
2021-05-02 19:18:15 +02:00
})
2023-02-22 22:31:36 +01:00
.flatMap(entryTuple -> Arrays.stream(UpdateMode.values()).map(updateMode -> new Tuple4<>(updateMode,
2021-05-02 19:18:15 +02:00
entryTuple.getT1(),
entryTuple.getT2(),
entryTuple.getT3()
)))
.map(fullTuple -> Arguments.of(fullTuple.getT1(), fullTuple.getT2(), fullTuple.getT3(), fullTuple.getT4()));
}
private static Stream<Arguments> provideArgumentsPut() {
2021-09-10 13:34:26 +02:00
var goodKeys1 = isCIMode() ? List.of("12345") : List.of("12345", "zebra");
2021-08-29 01:15:51 +02:00
List<String> badKeys1;
2021-05-02 19:18:15 +02:00
if (isTestBadKeysEnabled()) {
2021-08-29 01:15:51 +02:00
badKeys1 = List.of("", "a", "aaaa", "aaaaaa");
2021-05-02 19:18:15 +02:00
} else {
2021-08-29 01:15:51 +02:00
badKeys1 = List.of();
2021-05-02 19:18:15 +02:00
}
2021-09-10 13:34:26 +02:00
var goodKeys2 = isCIMode() ? List.of("123456") : List.of("123456", "anatra");
2021-08-29 01:15:51 +02:00
List<String> badKeys2;
2021-05-02 19:18:15 +02:00
if (isTestBadKeysEnabled()) {
2021-08-29 01:15:51 +02:00
badKeys2 = List.of("", "a", "aaaaa", "aaaaaaa");
2021-05-02 19:18:15 +02:00
} else {
2021-08-29 01:15:51 +02:00
badKeys2 = List.of();
2021-05-02 19:18:15 +02:00
}
2021-09-10 13:34:26 +02:00
var values = isCIMode() ? List.of("val") : List.of("a", "", "\0", "\0\0", "z", "azzszgzczqz", BIG_STRING);
2021-05-02 19:18:15 +02:00
2023-02-22 22:31:36 +01:00
Stream<Tuple4<String, String, String, Boolean>> failOnKeys1 = badKeys1.stream()
.map(badKey1 -> new Tuple4<>(
2021-05-02 19:18:15 +02:00
badKey1,
2021-08-29 01:15:51 +02:00
goodKeys2.stream().findFirst().orElseThrow(),
values.stream().findFirst().orElseThrow(),
2021-05-02 19:18:15 +02:00
true
));
2023-02-22 22:31:36 +01:00
Stream<Tuple4<String, String, String, Boolean>> failOnKeys2 = badKeys2.stream()
.map(badKey2 -> new Tuple4<>(
2021-08-29 01:15:51 +02:00
goodKeys1.stream().findFirst().orElseThrow(),
2021-05-02 19:18:15 +02:00
badKey2,
2021-08-29 01:15:51 +02:00
values.stream().findFirst().orElseThrow(),
2021-05-02 19:18:15 +02:00
true
));
2023-02-22 22:31:36 +01:00
Stream<Tuple4<String, String, String, Boolean>> goodKeys1And2 = values.stream()
.map(value -> new Tuple4<>(
2021-08-29 01:15:51 +02:00
goodKeys1.stream().findFirst().orElseThrow(),
goodKeys2.stream().findFirst().orElseThrow(),
2021-05-02 19:18:15 +02:00
value,
false
));
2023-02-22 22:31:36 +01:00
Stream<Tuple4<String, String, String, Boolean>> keys1And2 = Streams.concat(
2021-05-02 19:18:15 +02:00
goodKeys1And2,
failOnKeys1,
failOnKeys2
);
return keys1And2
2023-02-22 22:31:36 +01:00
.flatMap(entryTuple -> Stream.of(UpdateMode.values())
.map(updateMode -> new Tuple5<>(updateMode,
2021-05-02 19:18:15 +02:00
entryTuple.getT1(),
entryTuple.getT2(),
entryTuple.getT3(),
entryTuple.getT4()
))
)
.map(fullTuple -> Arguments.of(fullTuple.getT1(),
fullTuple.getT2(),
fullTuple.getT3(),
fullTuple.getT4(),
fullTuple.getT5()
))
2021-08-29 01:15:51 +02:00
.sequential();
2021-05-02 19:18:15 +02:00
}
2021-08-28 22:42:51 +02:00
@BeforeEach
public void beforeEach() {
2023-02-28 23:10:31 +01:00
ensureNoLeaks();
2021-08-28 22:42:51 +02:00
}
@AfterEach
public void afterEach() {
2021-09-10 13:42:02 +02:00
if (!isCIMode() && checkLeaks) {
2023-02-28 23:10:31 +01:00
ensureNoLeaks();
2021-09-08 00:22:39 +02:00
}
2021-08-28 22:42:51 +02:00
}
2021-05-02 19:18:15 +02:00
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testPutValue(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
2023-02-22 22:31:36 +01:00
boolean shouldFail) throws IOException {
2021-09-23 11:30:44 +02:00
var gen = getTempDbGenerator();
2023-02-22 22:31:36 +01:00
var db = gen.openTempDb();
var dict = tempDictionary(db.db(), updateMode);
2021-09-23 11:30:44 +02:00
var map = tempDatabaseMapDictionaryDeepMap(dict, 5, 6);
log.debug("Put \"{}\" = \"{}\"", key, value);
2023-02-22 22:31:36 +01:00
runVoid(shouldFail, () -> map.putValue(key, value));
2021-09-23 11:30:44 +02:00
2023-02-22 22:31:36 +01:00
var resultingMapSize = map.leavesCount(null, false);
2021-09-23 11:30:44 +02:00
Assertions.assertEquals(shouldFail ? 0 : value.size(), resultingMapSize);
2023-02-22 22:31:36 +01:00
var resultingMap = map.get(null);
2021-09-23 11:30:44 +02:00
Assertions.assertEquals(shouldFail ? null : Map.of(key, value), resultingMap);
gen.closeTempDb(db);
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testGetValue(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
2023-02-22 22:31:36 +01:00
boolean shouldFail) throws IOException {
2021-09-23 11:30:44 +02:00
var gen = getTempDbGenerator();
2023-02-22 22:31:36 +01:00
var db = gen.openTempDb();
var dict = tempDictionary(db.db(), updateMode);
2021-09-23 11:30:44 +02:00
var map = tempDatabaseMapDictionaryDeepMap(dict, 5, 6);
log.debug("Put \"{}\" = \"{}\"", key, value);
2023-02-22 22:31:36 +01:00
runVoid(shouldFail, () -> map.putValue(key, value));
2021-09-23 11:30:44 +02:00
log.debug("Get \"{}\"", key);
2023-02-22 22:31:36 +01:00
var returnedValue = run(shouldFail, () -> map.getValue(null, key));
2021-09-23 11:30:44 +02:00
Assertions.assertEquals(shouldFail ? null : value, returnedValue);
gen.closeTempDb(db);
2021-05-02 19:18:15 +02:00
}
2023-02-24 00:18:02 +01:00
2021-05-02 19:18:15 +02:00
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testSetValueGetAllValues(UpdateMode updateMode, String key, Object2ObjectSortedMap<String, String> value,
2021-05-02 19:18:15 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var result = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
map.putValue(key, value);
2023-02-28 23:10:31 +01:00
try (var stream = map.getAllEntries(null, false)) {
2023-02-24 00:18:02 +01:00
return stream.toList();
}
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(Map.entry(key, value)), result);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testAtSetGetAllStagesGetAllValues(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2021-05-02 19:18:15 +02:00
var remainingEntries = new ConcurrentHashMap<Tuple3<String, String, String>, Boolean>().keySet(true);
2023-02-24 00:18:02 +01:00
List<Tuple3<String, String, String>> result = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var dict = tempDictionary(db, updateMode);
var map = tempDatabaseMapDictionaryDeepMap(dict, 5, 6);
var v = map.at(null, key);
v.set(value);
var v2 = map.at(null, "capra");
v2.set(new Object2ObjectLinkedOpenHashMap<>(Map.of("normal", "123", "ormaln", "456")));
try (var stages = map.getAllStages(null, false)) {
return stages
.flatMap(stage -> stage
.getValue()
2023-02-28 23:10:31 +01:00
.getAllEntries(null, false)
2023-02-24 00:18:02 +01:00
.map(r -> new Tuple3<>(stage.getKey(), r.getKey(), r.getValue())))
.toList();
}
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
value.forEach((k, v) -> remainingEntries.add(new Tuple3<>(key, k, v)));
remainingEntries.add(new Tuple3<>("capra", "normal", "123"));
remainingEntries.add(new Tuple3<>("capra", "ormaln", "456"));
Assertions.assertEquals(remainingEntries, new HashSet<>(result));
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
2021-08-29 01:15:51 +02:00
@MethodSource({"provideArgumentsPut"})
2021-09-24 01:59:56 +02:00
public void testAtPutValueAtGetValue(UpdateMode updateMode, String key1, String key2, String value,
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var result = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var v = map.at(null, key1);
v.putValue(key2, value);
var v2 = map.at(null, key1);
return v2.getValue(null, key2);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(result, value);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testSetAndGetPrevious(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var result = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var dict = tempDictionary(db, updateMode);
var map = tempDatabaseMapDictionaryDeepMap(dict, 5, 6);
var x1 = Objects.requireNonNullElse(
map.putValueAndGetPrevious(key, new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."))),
new Object2ObjectLinkedOpenHashMap<>(Map.of("nothing", "nothing"))
);
var x2 = Objects.requireNonNull(map.putValueAndGetPrevious(key, value));
var x3 = Objects.requireNonNull(map.putValueAndGetPrevious(key, value));
return List.of(x1, x2, x3);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(new Object2ObjectLinkedOpenHashMap<>(Map.of("nothing", "nothing")),
new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")), value), result);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsPut")
2021-09-24 01:59:56 +02:00
public void testAtPutValueAndGetPrevious(UpdateMode updateMode, String key1, String key2, String value,
2023-02-24 00:18:02 +01:00
boolean shouldFail) throws IOException {
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.at(null, key1).putValueAndGetPrevious(key2, "error?");
var x2 = map.at(null, key1).putValueAndGetPrevious(key2, value);
var x3 = map.at(null, key1).putValueAndGetPrevious(key2, value);
return Stream.of(x1, x2, x3).filter(Objects::nonNull).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of("error?", value), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testSetValueRemoveAndGetPrevious(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.removeAndGetPrevious(key);
map.putValue(key, value);
var x2 = map.removeAndGetPrevious(key);
var x3 = map.removeAndGetPrevious(key);
return Stream.of(x1, x2, x3).filter(Objects::nonNull).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(value), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsPut")
2021-09-24 01:59:56 +02:00
public void testAtPutValueRemoveAndGetPrevious(UpdateMode updateMode, String key1, String key2, String value,
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var stage1 = map.at(null, key1);
stage1.putValue(key2, "error?");
var x1 = stage1.removeAndGetPrevious(key2);
var stage2 = map.at(null, key1);
stage2.putValue(key2, value);
var x2 = stage2.removeAndGetPrevious(key2);
var stage3 = map.at(null, key1);
var x3 = stage3.removeAndGetPrevious(key2);
return Stream.of(x1, x2, x3).filter(Objects::nonNull).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of("error?", value), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testSetValueRemoveAndGetStatus(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.removeAndGetStatus(key);
map.putValue(key, value);
var x2 = map.removeAndGetStatus(key);
var x3 = map.removeAndGetStatus(key);
return Stream.of(x1, x2, x3).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(false, true, false), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsPut")
2021-09-24 01:59:56 +02:00
public void testAtPutValueRemoveAndGetStatus(UpdateMode updateMode, String key1, String key2, String value,
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var step1 = map.at(null, key1);
step1.putValue(key2, "error?");
var x1 = step1.removeAndGetStatus(key2);
var step2 = map.at(null, key1);
step2.putValue(key2, value);
var x2 = step2.removeAndGetStatus(key2);
var step3 = map.at(null, key1);
var x3 = step3.removeAndGetStatus(key2);
return Stream.of(x1, x2, x3).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(true, true, false), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testUpdate(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
boolean shouldFail) {
2021-05-02 19:18:15 +02:00
if (updateMode != UpdateMode.ALLOW_UNSAFE && !isTestBadKeysEnabled()) {
return;
}
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail || updateMode != UpdateMode.ALLOW_UNSAFE, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
return Stream.of(map.updateValue(key, old -> {
assert old == null;
return new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."));
}), map.updateValue(key, old -> {
assert Objects.equals(old, Map.of("error?", "error."));
return new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."));
}), map.updateValue(key, old -> {
assert Objects.equals(old, Map.of("error?", "error."));
return new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."));
}), map.updateValue(key, old -> {
assert Objects.equals(old, Map.of("error?", "error."));
return value;
}), map.updateValue(key, old -> {
assert Objects.equals(old, value);
return value;
})).toList();
}));
if (updateMode == UpdateMode.ALLOW_UNSAFE && !shouldFail) {
Assertions.assertEquals(List.of(true, false, false, true, false), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsPut")
public void testAtUpdate(UpdateMode updateMode, String key1, String key2, String value, boolean shouldFail) {
if (updateMode == UpdateMode.DISALLOW && !isTestBadKeysEnabled()) {
return;
}
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail || updateMode == UpdateMode.DISALLOW, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.at(null, key1).updateValue(key2, prev -> prev);
var x2 = map.at(null, key1).updateValue(key2, prev -> value);
var x3 = map.at(null, key1).updateValue(key2, prev -> value);
var x4 = map.at(null, key1).updateValue(key2, prev -> null);
return Stream.of(x1, x2, x3, x4).toList();
}));
if (updateMode != UpdateMode.DISALLOW && !shouldFail) {
Assertions.assertEquals(List.of(false, true, false, true), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testUpdateGet(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
boolean shouldFail) {
2021-05-02 19:18:15 +02:00
if (updateMode != UpdateMode.ALLOW_UNSAFE && !isTestBadKeysEnabled()) {
return;
}
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail || updateMode != UpdateMode.ALLOW_UNSAFE, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
map.updateValue(key, old -> {
assert old == null;
return new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."));
});
var x1 = map.getValue(null, key);
map.updateValue(key, old -> {
assert Objects.equals(old, Map.of("error?", "error."));
return new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."));
});
var x2 = map.getValue(null, key);
map.updateValue(key, old -> {
assert Objects.equals(old, Map.of("error?", "error."));
return new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error."));
});
var x3 = map.getValue(null, key);
map.updateValue(key, old -> {
assert Objects.equals(old, new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")));
return value;
});
var x4 = map.getValue(null, key);
map.updateValue(key, old -> {
assert Objects.equals(old, value);
return value;
});
var x5 = map.getValue(null, key);
return Stream.of(x1, x2, x3, x4, x5).toList();
}));
if (updateMode == UpdateMode.ALLOW_UNSAFE && !shouldFail) {
Assertions.assertEquals(List.of(new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")),
new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")),
new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")),
value,
value
), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsPut")
public void testAtUpdateGetValue(UpdateMode updateMode, String key1, String key2, String value, boolean shouldFail) {
if (updateMode == UpdateMode.DISALLOW && !isTestBadKeysEnabled()) {
return;
}
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail || updateMode == UpdateMode.DISALLOW, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var stage1 = map.at(null, key1);
stage1.updateValue(key2, prev -> prev);
var x1 = Objects.requireNonNullElse(stage1.getValue(null, key2), "empty");
var stage2 = map.at(null, key1);
stage2.updateValue(key2, prev -> value);
var x2 = Objects.requireNonNullElse(stage2.getValue(null, key2), "empty");
var stage3 = map.at(null, key1);
stage3.updateValue(key2, prev -> value);
var x3 = Objects.requireNonNullElse(stage3.getValue(null, key2), "empty");
var stage4 = map.at(null, key1);
stage4.updateValue(key2, prev -> null);
var x4 = Objects.requireNonNullElse(stage4.getValue(null, key2), "empty");
return Stream.of(x1, x2, x3, x4).toList();
}));
if (updateMode != UpdateMode.DISALLOW && !shouldFail) {
Assertions.assertEquals(List.of("empty", value, value, "empty"), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSet")
2021-12-18 18:16:56 +01:00
public void testSetAndGetChanged(UpdateMode updateMode,
String key,
Object2ObjectSortedMap<String, String> value,
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.putValueAndGetChanged(key, new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")));
var x2 = map.putValueAndGetChanged(key, value);
var x3 = map.putValueAndGetChanged(key, value);
map.remove(key);
var x4 = map.putValueAndGetChanged(key, new Object2ObjectLinkedOpenHashMap<>(Map.of("error?", "error.")));
return List.of(x1, x2, x3, x4);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(true, true, false, true), stpVer);
2021-05-02 19:18:15 +02:00
}
}
private static Stream<Arguments> provideArgumentsSetMulti() {
2021-09-10 13:34:26 +02:00
var goodKeys = isCIMode() ? List.of(List.of("12345")) : List.of(List.of("12345", "67890"), List.<String>of());
2021-08-29 01:15:51 +02:00
List<List<String>> badKeys;
2021-05-02 19:18:15 +02:00
if (isTestBadKeysEnabled()) {
2021-08-29 01:15:51 +02:00
badKeys = List.of(List.of("", "12345"), List.of("45678", "aaaa"), List.of("aaaaaa", "capra"));
2021-05-02 19:18:15 +02:00
} else {
2021-08-29 01:15:51 +02:00
badKeys = List.of();
2021-05-02 19:18:15 +02:00
}
2021-12-18 18:16:56 +01:00
List<Tuple2<List<String>, Boolean>> keys = Stream
2023-02-22 22:31:36 +01:00
.concat(goodKeys.stream().map(s -> new Tuple2<>(s, false)), badKeys.stream().map(s -> new Tuple2<>(s, true)))
2021-12-18 18:16:56 +01:00
.toList();
var values = isCIMode() ? List.of(new Object2ObjectLinkedOpenHashMap<>(Map.of("123456", "val"))) : List.of(
new Object2ObjectLinkedOpenHashMap<>(Map.of("123456", "a", "234567", "")),
new Object2ObjectLinkedOpenHashMap<>(Map.of("123456", "\0", "234567", "\0\0", "345678", BIG_STRING))
2021-05-02 19:18:15 +02:00
);
return keys
.stream()
2023-02-24 00:18:02 +01:00
.map(keyTuple -> new Tuple2<>(Streams
.zip(keyTuple.getT1().stream(), values.stream(), Tuple2::new)
.collect(Collectors.toMap(Tuple2::getT1, Tuple2::getT2, (a, b) -> a, Object2ObjectLinkedOpenHashMap::new)),
keyTuple.getT2()
2021-05-02 19:18:15 +02:00
))
2023-02-24 00:18:02 +01:00
.flatMap(entryTuple -> Arrays
.stream(UpdateMode.values())
.map(updateMode -> new Tuple3<>(updateMode, entryTuple.getT1(), entryTuple.getT2())))
2021-05-02 19:18:15 +02:00
.map(fullTuple -> Arguments.of(fullTuple.getT1(), fullTuple.getT2(), fullTuple.getT3()));
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetMultiGetMulti(UpdateMode updateMode,
Map<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var flux = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var entriesFlux = entries.entrySet();
var keysFlux = entriesFlux.stream().map(Entry::getKey).toList();
map.putMulti(entriesFlux.stream());
var resultsFlux = map.getMulti(null, keysFlux.stream());
return Streams
.zip(keysFlux.stream(), resultsFlux, Map::entry)
.filter(k -> k.getValue().isPresent())
.map(k -> Map.entry(k.getKey(), k.getValue().orElseThrow()))
.toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(entries.entrySet().stream().toList(), flux);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetAllValuesGetMulti(UpdateMode updateMode,
Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Map<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var entriesFlux = entries.entrySet();
var keysFlux = entriesFlux.stream().map(Entry::getKey).toList();
2023-02-28 23:10:31 +01:00
map.setAllEntries(entries.entrySet().stream());
2023-02-24 00:18:02 +01:00
try (var resultsFlux = map.getMulti(null, entries.keySet().stream())) {
return Streams
.zip(keysFlux.stream(), resultsFlux, Map::entry)
2021-07-23 15:20:33 +02:00
.filter(k -> k.getValue().isPresent())
.map(k -> Map.entry(k.getKey(), k.getValue().orElseThrow()))
2023-02-24 00:18:02 +01:00
.toList();
}
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(remainingEntries, stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2023-02-24 00:18:02 +01:00
public void testSetAllValuesAndGetPrevious(UpdateMode updateMode,
Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
List<Entry<String, Object2ObjectSortedMap<String, String>>> a1;
2023-02-28 23:10:31 +01:00
try (var stream1 = map.setAllEntriesAndGetPrevious(entries.entrySet().stream())) {
2023-02-24 00:18:02 +01:00
a1 = stream1.toList();
}
List<Entry<String, Object2ObjectSortedMap<String, String>>> a2;
2023-02-28 23:10:31 +01:00
try (var stream2 = map.setAllEntriesAndGetPrevious(entries.entrySet().stream())) {
2023-02-24 00:18:02 +01:00
a2 = stream2.toList();
}
return List.of(a1, a2);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(
List.of(List.of(), remainingEntries),
stpVer
);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetGetMulti(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries, boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var entriesFlux = entries.entrySet();
var keysFlux = entriesFlux.stream().map(Entry::getKey).toList();
map.set(entries);
List<Optional<Object2ObjectSortedMap<String, String>>> results;
try (var stream = map.getMulti(null, entries.keySet().stream())) {
results = stream.toList();
}
return Streams
.zip(keysFlux.stream(), results.stream(), Map::entry)
.filter(k -> k.getValue().isPresent())
.map(k -> Map.entry(k.getKey(), k.getValue().orElseThrow()))
.toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(remainingEntries, stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2023-02-24 00:18:02 +01:00
public void testSetAndGetStatus(UpdateMode updateMode,
Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.setAndGetChanged(entries);
var x2 = map.setAndGetChanged(entries);
if (!entries.isEmpty()) {
map.remove(entries.keySet().stream().findAny().orElseThrow());
}
var x3 = map.setAndGetChanged(entries);
return List.of(x1, x2, x3);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(!entries.isEmpty(), false, !entries.isEmpty()), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetAndGetPrevious(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.setAndGetPrevious(entries);
var x2 = map.setAndGetPrevious(entries);
return Stream.of(x1, x2).map(x -> x != null ? x.entrySet().stream().toList() : null).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(Arrays.asList(null, remainingEntries.isEmpty() ? null : remainingEntries), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetClearAndGetPreviousGet(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
map.set(entries);
var prev = map.clearAndGetPrevious();
var curr = map.get(null);
return Stream.of(prev, curr).map(x -> x != null ? x.entrySet().stream().toList() : null).toList();
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(Arrays.asList(remainingEntries.isEmpty() ? null : remainingEntries, null), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2023-02-24 00:18:02 +01:00
public void testSetMultiGetAllValues(UpdateMode updateMode,
Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
map.putMulti(entries.entrySet().stream());
2023-02-28 23:10:31 +01:00
try (var values = map.getAllEntries(null, false)) {
2023-02-24 00:18:02 +01:00
return values.toList();
}
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(remainingEntries, stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetMultiGet(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries, boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
map.putMulti(entries.entrySet().stream());
return map.get(null);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(remainingEntries.isEmpty() ? null : remainingEntries, stpVer == null ? null : stpVer.entrySet().stream().toList());
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetMultiGetAllStagesGet(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var remainingEntries = new ArrayList<Entry<String, Object2ObjectSortedMap<String, String>>>();
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
map.putMulti(entries.entrySet().stream());
return toList(map.getAllStages(null, false).map(stage -> {
2023-02-24 00:18:02 +01:00
var v = stage.getValue().get(null);
if (v == null) return null;
return Map.entry(stage.getKey(), v);
}).filter(Objects::nonNull));
2023-02-24 00:18:02 +01:00
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
entries.forEach((k, v) -> remainingEntries.add(Map.entry(k, v)));
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(remainingEntries, stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetMultiIsEmpty(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries,
2021-09-24 01:59:56 +02:00
boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.isEmpty(null);
map.putMulti(entries.entrySet().stream());
var x2 = map.isEmpty(null);
return List.of(x1, x2);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(true, entries.isEmpty()), stpVer);
2021-05-02 19:18:15 +02:00
}
}
@ParameterizedTest
@MethodSource("provideArgumentsSetMulti")
2021-12-18 18:16:56 +01:00
public void testSetMultiClear(UpdateMode updateMode, Object2ObjectSortedMap<String, Object2ObjectSortedMap<String, String>> entries, boolean shouldFail) {
2023-02-24 00:18:02 +01:00
var stpVer = run(shouldFail, () -> tempDb(getTempDbGenerator(), db -> {
var map = tempDatabaseMapDictionaryDeepMap(tempDictionary(db, updateMode), 5, 6);
var x1 = map.isEmpty(null);
map.putMulti(entries.entrySet().stream());
var x2 = map.isEmpty(null);
map.clear();
var x3 = map.isEmpty(null);
return List.of(x1, x2, x3);
}));
2021-05-02 19:18:15 +02:00
if (shouldFail) {
2021-09-08 00:22:39 +02:00
this.checkLeaks = false;
2021-05-02 19:18:15 +02:00
} else {
2023-02-24 00:18:02 +01:00
Assertions.assertEquals(List.of(true, entries.isEmpty(), true), stpVer);
2021-05-02 19:18:15 +02:00
}
}
}