56
56
*/
57
57
public class AMQ6131Test {
58
58
59
+ private final static WildcardFileFilter LOG_FILE_FILTER = WildcardFileFilter .builder ().setWildcards ("*.log" ).get ();
60
+ private final static WildcardFileFilter DB_FILE_FILTER = WildcardFileFilter .builder ().setWildcards ("db.*" ).get ();
61
+
59
62
protected BrokerService broker ;
60
63
protected URI brokerConnectURI ;
61
64
@@ -111,7 +114,7 @@ public void testDurableWithOnePendingAfterRestartAndIndexRecovery() throws Excep
111
114
TopicSubscriber durable = jmsSession .createDurableSubscriber (new ActiveMQTopic ("durable.sub" ), "sub" );
112
115
final MessageProducer producer = jmsSession .createProducer (new ActiveMQTopic ("durable.sub" ));
113
116
114
- final int original = new ArrayList <File >(FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "*.log" ) , TrueFileFilter .INSTANCE )).size ();
117
+ final int original = new ArrayList <File >(FileUtils .listFiles (persistentDir , LOG_FILE_FILTER , TrueFileFilter .INSTANCE )).size ();
115
118
116
119
// 100k messages
117
120
final byte [] data = new byte [100000 ];
@@ -132,7 +135,7 @@ public boolean isSatisified() throws Exception {
132
135
messageCount .getAndIncrement ();
133
136
}
134
137
135
- return new ArrayList <File >(FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "*.log" ) , TrueFileFilter .INSTANCE )).size () > original ;
138
+ return new ArrayList <File >(FileUtils .listFiles (persistentDir , LOG_FILE_FILTER , TrueFileFilter .INSTANCE )).size () > original ;
136
139
}
137
140
}));
138
141
@@ -159,7 +162,7 @@ public boolean isSatisified() throws Exception {
159
162
160
163
@ Override
161
164
public boolean isSatisified () throws Exception {
162
- return new ArrayList <File >(FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "*.log" ) , TrueFileFilter .INSTANCE )).size () == original ;
165
+ return new ArrayList <File >(FileUtils .listFiles (persistentDir , LOG_FILE_FILTER , TrueFileFilter .INSTANCE )).size () == original ;
163
166
}
164
167
}, 5000 , 500 ));
165
168
@@ -169,7 +172,7 @@ public boolean isSatisified() throws Exception {
169
172
170
173
// delete the index so that the durables are gone from the index
171
174
// The test passes if you take out this delete section
172
- for (File index : FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "db.*" ) , TrueFileFilter .INSTANCE )) {
175
+ for (File index : FileUtils .listFiles (persistentDir , DB_FILE_FILTER , TrueFileFilter .INSTANCE )) {
173
176
FileUtils .deleteQuietly (index );
174
177
}
175
178
@@ -208,7 +211,7 @@ public void testDurableWithNoMessageAfterRestartAndIndexRecovery() throws Except
208
211
TopicSubscriber durable = jmsSession .createDurableSubscriber (new ActiveMQTopic ("durable.sub" ), "sub" );
209
212
final MessageProducer producer = jmsSession .createProducer (new ActiveMQTopic ("durable.sub" ));
210
213
211
- final int original = new ArrayList <File >(FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "*.log" ) , TrueFileFilter .INSTANCE )).size ();
214
+ final int original = new ArrayList <File >(FileUtils .listFiles (persistentDir , LOG_FILE_FILTER , TrueFileFilter .INSTANCE )).size ();
212
215
213
216
// 100k messages
214
217
final byte [] data = new byte [100000 ];
@@ -229,7 +232,7 @@ public boolean isSatisified() throws Exception {
229
232
messageCount .getAndIncrement ();
230
233
}
231
234
232
- return new ArrayList <File >(FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "*.log" ) , TrueFileFilter .INSTANCE )).size () > original ;
235
+ return new ArrayList <File >(FileUtils .listFiles (persistentDir , LOG_FILE_FILTER , TrueFileFilter .INSTANCE )).size () > original ;
233
236
}
234
237
}));
235
238
@@ -255,7 +258,7 @@ public boolean isSatisified() throws Exception {
255
258
256
259
@ Override
257
260
public boolean isSatisified () throws Exception {
258
- return new ArrayList <File >(FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "*.log" ) , TrueFileFilter .INSTANCE )).size () == original ;
261
+ return new ArrayList <File >(FileUtils .listFiles (persistentDir , LOG_FILE_FILTER , TrueFileFilter .INSTANCE )).size () == original ;
259
262
}
260
263
}));
261
264
@@ -265,7 +268,7 @@ public boolean isSatisified() throws Exception {
265
268
266
269
// delete the index so that the durables are gone from the index
267
270
// The test passes if you take out this delete section
268
- for (File index : FileUtils .listFiles (persistentDir , new WildcardFileFilter ( "db.*" ) , TrueFileFilter .INSTANCE )) {
271
+ for (File index : FileUtils .listFiles (persistentDir , DB_FILE_FILTER , TrueFileFilter .INSTANCE )) {
269
272
FileUtils .deleteQuietly (index );
270
273
}
271
274
0 commit comments