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
|
/*
Copyright (C) 2013 Red Hat
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package net.sourceforge.jnlp.util.lockingfile;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import java.io.BufferedWriter;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Test;
public class LockingReaderWriterTest {
private static File storagefile;
private static TestStringReaderWriter newInstance() {
return new TestStringReaderWriter(storagefile);
}
@Before
public void setUp() throws IOException {
storagefile = File.createTempFile("foo", "bar");
}
@Test
public void testSimpleActions() throws IOException {
TestStringReaderWriter storage = newInstance();
storage.add("teststring");
assertTrue(storage.contains("teststring"));
storage.remove("teststring");
assertFalse(storage.contains("teststring"));
}
@Test
public void testInterleavedActions() throws IOException {
TestStringReaderWriter storage1 = newInstance();
TestStringReaderWriter storage2 = newInstance();
storage1.add("teststring");
assertTrue(storage2.contains("teststring"));
storage2.remove("teststring");
assertFalse(storage1.contains("teststring"));
}
static class TestThread extends Thread {
String testString;
int iterations;
Throwable error = null;
TestThread(String testString, int iterations) {
this.testString = testString;
this.iterations = iterations;
}
@Override
public void run() {
try {
TestStringReaderWriter storage = newInstance();
for (int i = 0; i < iterations; i++) {
assertTrue(storage.contains(this.testString));
storage.add(this.testString);
storage.remove(this.testString);
assertTrue(storage.contains(this.testString));
}
} catch (Throwable error) {
error.printStackTrace();
this.error = error;
}
}
}
private void concurrentReadWrites(int threadAmount, int iterations,
String testString) throws InterruptedException {
TestStringReaderWriter storage = newInstance();
storage.add(testString);
List<TestThread> testThreads = new ArrayList<TestThread>();
for (int i = 0; i < threadAmount; i++) {
TestThread thread = new TestThread(testString, iterations);
testThreads.add(thread);
thread.start();
}
for (int i = 0; i < threadAmount; i++) {
testThreads.get(i).join();
}
assertTrue(storage.contains(testString));
storage.remove(testString);
// So long as number adds == number writes, we should be left with
// nothing at end.
assertFalse(storage.contains(testString));
}
// Long testing string, the contents are not important
private String makeLongTestString() {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < 1000; i++) {
sb.append(Integer.toString(i));
}
return sb.toString();
}
@Test
public void testManyReadWrite() throws Exception {
int oneThread = 1;
String shortString = "teststring";
// This was causing 'too many open files' because FileUtils#getFileLock
// leaks file descriptors. No longer used.
concurrentReadWrites(oneThread, 500 /* iterations */, shortString);
}
@Test
public void testManyThreads() throws Exception {
int threadAmount = 25;
String shortString = "teststring";
String longString = makeLongTestString();
concurrentReadWrites(threadAmount, 10 /* per-thread iterations */,
shortString);
concurrentReadWrites(threadAmount, 2 /* per-thread iterations */,
longString);
}
/**
* Concrete implementation to aid in testing LockingReaderWriter
*/
public static class TestStringReaderWriter extends LockingReaderWriter {
private List<String> cachedContents = new ArrayList<String>();
public TestStringReaderWriter(File file) {
super(file);
}
@Override
public void writeContent(BufferedWriter writer) throws IOException {
for (String string : cachedContents) {
writer.write(string);
writer.newLine();
}
}
@Override
protected void readLine(String line) {
this.cachedContents.add(line);
}
@Override
protected void readContents() throws IOException {
cachedContents.clear();
super.readContents();
}
/*
* Atomic container abstraction methods.
*/
synchronized public void add(final String line) {
doLocked(new Runnable() {
public void run() {
try {
readContents();
cachedContents.add(line);
writeContents();
} catch (IOException ex) {
throw new StorageIoException(ex);
}
}
});
}
synchronized public boolean contains(final String line) {
final boolean[] doesContain = { false };
doLocked(new Runnable() {
public void run() {
try {
readContents();
doesContain[0] = cachedContents.contains(line);
} catch (IOException e) {
throw new StorageIoException(e);
}
}
});
return doesContain[0];
}
synchronized public boolean remove(final String line) {
final boolean[] didRemove = { false };
doLocked(new Runnable() {
public void run() {
try {
readContents();
didRemove[0] = cachedContents.remove(line);
writeContents();
} catch (IOException e) {
throw new StorageIoException(e);
}
}
});
return didRemove[0];
}
}
}
|