-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathResultCodeMapperTest.java
More file actions
154 lines (138 loc) · 5.21 KB
/
Copy pathResultCodeMapperTest.java
File metadata and controls
154 lines (138 loc) · 5.21 KB
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
/*
* Copyright © 2016-2025 The LmdbJava Open Source Project
*
* Licensed under the Apache 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lmdbjava;
import static java.lang.Integer.MAX_VALUE;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.assertj.core.api.Assertions.fail;
import static org.lmdbjava.Cursor.FullException.MDB_CURSOR_FULL;
import static org.lmdbjava.ResultCodeMapper.checkRc;
import static org.lmdbjava.TestUtils.invokePrivateConstructor;
import java.util.HashSet;
import java.util.Set;
import org.junit.jupiter.api.Test;
import org.lmdbjava.Cursor.FullException;
import org.lmdbjava.Dbi.BadDbiException;
import org.lmdbjava.Dbi.BadValueSizeException;
import org.lmdbjava.Dbi.DbFullException;
import org.lmdbjava.Dbi.IncompatibleException;
import org.lmdbjava.Dbi.KeyExistsException;
import org.lmdbjava.Dbi.KeyNotFoundException;
import org.lmdbjava.Dbi.MapResizedException;
import org.lmdbjava.Env.FileInvalidException;
import org.lmdbjava.Env.MapFullException;
import org.lmdbjava.Env.ReadersFullException;
import org.lmdbjava.Env.VersionMismatchException;
import org.lmdbjava.LmdbNativeException.ConstantDerivedException;
import org.lmdbjava.LmdbNativeException.PageCorruptedException;
import org.lmdbjava.LmdbNativeException.PageFullException;
import org.lmdbjava.LmdbNativeException.PageNotFoundException;
import org.lmdbjava.LmdbNativeException.PanicException;
import org.lmdbjava.LmdbNativeException.TlsFullException;
import org.lmdbjava.Txn.BadException;
import org.lmdbjava.Txn.BadReaderLockException;
import org.lmdbjava.Txn.TxFullException;
/** Test {@link ResultCodeMapper} and {@link LmdbException}. */
public final class ResultCodeMapperTest {
private static final Set<LmdbNativeException> EXCEPTIONS = new HashSet<>();
private static final Set<Integer> RESULT_CODES = new HashSet<>();
static {
// separate collection instances used to simplify duplicate RC detection
EXCEPTIONS.add(new BadDbiException());
EXCEPTIONS.add(new BadReaderLockException());
EXCEPTIONS.add(new BadException());
EXCEPTIONS.add(new BadValueSizeException());
EXCEPTIONS.add(new PageCorruptedException());
EXCEPTIONS.add(new FullException());
EXCEPTIONS.add(new DbFullException());
EXCEPTIONS.add(new IncompatibleException());
EXCEPTIONS.add(new FileInvalidException());
EXCEPTIONS.add(new KeyExistsException());
EXCEPTIONS.add(new MapFullException());
EXCEPTIONS.add(new MapResizedException());
EXCEPTIONS.add(new KeyNotFoundException());
EXCEPTIONS.add(new PageFullException());
EXCEPTIONS.add(new PageNotFoundException());
EXCEPTIONS.add(new PanicException());
EXCEPTIONS.add(new ReadersFullException());
EXCEPTIONS.add(new TlsFullException());
EXCEPTIONS.add(new TxFullException());
EXCEPTIONS.add(new VersionMismatchException());
for (final LmdbNativeException e : EXCEPTIONS) {
RESULT_CODES.add(e.getResultCode());
}
}
@Test
void checkErrAll() {
for (final Integer rc : RESULT_CODES) {
try {
checkRc(rc);
fail("Exception expected for RC " + rc);
} catch (final LmdbNativeException e) {
assertThat(e.getResultCode()).isEqualTo(rc);
}
}
}
@Test
void checkErrConstantDerived() {
assertThatThrownBy(() -> checkRc(20)).isInstanceOf(ConstantDerivedException.class);
}
@Test
void checkErrConstantDerivedMessage() {
try {
checkRc(2);
fail("Should have raised exception");
} catch (final ConstantDerivedException ex) {
assertThat(ex.getMessage()).contains("No such file or directory");
}
}
@Test
void checkErrCursorFull() {
assertThatThrownBy(() -> checkRc(MDB_CURSOR_FULL)).isInstanceOf(FullException.class);
}
@Test
void checkErrUnknownResultCode() {
assertThatThrownBy(() -> checkRc(MAX_VALUE)).isInstanceOf(IllegalArgumentException.class);
}
@Test
void coverPrivateConstructors() {
invokePrivateConstructor(ResultCodeMapper.class);
}
@Test
void lmdbExceptionPreservesRootCause() {
final Exception cause = new IllegalStateException("root cause");
final LmdbException e = new LmdbException("test", cause);
assertThat(e.getCause()).isEqualTo(cause);
assertThat(e.getMessage()).isEqualTo("test");
}
@Test
void mapperReturnsUnique() {
final Set<LmdbNativeException> seen = new HashSet<>();
for (final Integer rc : RESULT_CODES) {
try {
checkRc(rc);
} catch (final LmdbNativeException ex) {
assertThat(ex).isNotNull();
seen.add(ex);
}
}
assertThat(seen).hasSize(RESULT_CODES.size());
}
@Test
void noDuplicateResultCodes() {
assertThat(RESULT_CODES.size()).isEqualTo(EXCEPTIONS.size());
}
}