forked from codehaus-plexus/plexus-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathZipUnArchiverTest.java
261 lines (220 loc) · 7.79 KB
/
ZipUnArchiverTest.java
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package org.codehaus.plexus.archiver.zip;
import java.io.File;
import java.lang.reflect.Method;
import org.codehaus.plexus.PlexusTestCase;
import org.codehaus.plexus.archiver.Archiver;
import org.codehaus.plexus.archiver.UnArchiver;
import org.codehaus.plexus.components.io.fileselectors.FileSelector;
import org.codehaus.plexus.components.io.fileselectors.IncludeExcludeFileSelector;
import org.codehaus.plexus.util.FileUtils;
/**
* @author Jason van Zyl
*/
public class ZipUnArchiverTest
extends PlexusTestCase
{
public void testExtractingZipPreservesExecutableFlag()
throws Exception
{
String s = "target/zip-unarchiver-tests";
File testZip = new File( getBasedir(), "src/test/jars/test.zip" );
File outputDirectory = new File( getBasedir(), s );
FileUtils.deleteDirectory( outputDirectory );
ZipUnArchiver zu = getZipUnArchiver( testZip );
zu.extract( "", outputDirectory );
File testScript = new File( outputDirectory, "test.sh" );
final Method canExecute;
try
{
canExecute = File.class.getMethod( "canExecute" );
canExecute.invoke( testScript );
assertTrue( (Boolean) canExecute.invoke( testScript ) );
}
catch ( NoSuchMethodException ignore )
{
}
}
public void testZeroFileModeInZip()
throws Exception
{
String s = "target/zip-unarchiver-filemode-tests";
File testZip = new File( getBasedir(), "src/test/resources/zeroFileMode/foobar.zip" );
File outputDirectory = new File( getBasedir(), s );
FileUtils.deleteDirectory( outputDirectory );
ZipUnArchiver zu = getZipUnArchiver( testZip );
zu.setIgnorePermissions( false );
zu.extract( "", outputDirectory );
File testScript = new File( outputDirectory, "foo.txt" );
final Method canRead;
try
{
canRead = File.class.getMethod( "canRead" );
canRead.invoke( testScript );
assertTrue( (Boolean) canRead.invoke( testScript ) );
}
catch ( NoSuchMethodException ignore )
{
}
}
public void testUnarchiveUtf8()
throws Exception
{
File dest = new File( "target/output/unzip/utf8" );
dest.mkdirs();
final File zipFile = new File( "target/output/unzip/utf8-default.zip" );
final ZipArchiver zipArchiver = getZipArchiver( zipFile );
zipArchiver.addDirectory( new File( "src/test/resources/miscUtf8" ) );
zipArchiver.createArchive();
final ZipUnArchiver unarchiver = getZipUnArchiver( zipFile );
unarchiver.setDestFile( dest );
unarchiver.extract();
assertTrue( new File( dest, "aPi\u00F1ata.txt" ).exists() );
assertTrue( new File( dest, "an\u00FCmlaut.txt" ).exists() );
assertTrue( new File( dest, "\u20acuro.txt" ).exists() );
}
private void runUnarchiver( String path, FileSelector[] selectors, boolean[] results )
throws Exception
{
String s = "target/zip-unarchiver-tests";
File testJar = new File( getBasedir(), "src/test/jars/test.jar" );
File outputDirectory = new File( getBasedir(), s );
ZipUnArchiver zu = getZipUnArchiver( testJar );
zu.setFileSelectors( selectors );
FileUtils.deleteDirectory( outputDirectory );
zu.extract( path, outputDirectory );
File f0 = new File( getBasedir(), s + "/resources/artifactId/test.properties" );
assertEquals( results[0], f0.exists() );
File f1 = new File( getBasedir(), s + "/resources/artifactId/directory/test.properties" );
assertEquals( results[1], f1.exists() );
File f2 = new File( getBasedir(), s + "/META-INF/MANIFEST.MF" );
assertEquals( results[2], f2.exists() );
}
private ZipUnArchiver getZipUnArchiver( File testJar ) throws Exception
{
ZipUnArchiver zu = (ZipUnArchiver) lookup( UnArchiver.ROLE, "zip" );
zu.setSourceFile( testJar );
return zu;
}
public void testExtractingADirectoryFromAJarFile()
throws Exception
{
runUnarchiver( "resources/artifactId", null,
new boolean[]
{
true, true, false
} );
runUnarchiver( "", null,
new boolean[]
{
true, true, true
} );
}
public void testSelectors()
throws Exception
{
IncludeExcludeFileSelector fileSelector = new IncludeExcludeFileSelector();
runUnarchiver( "", new FileSelector[]
{
fileSelector
},
new boolean[]
{
true, true, true
} );
fileSelector.setExcludes( new String[]
{
"**/test.properties"
} );
runUnarchiver( "", new FileSelector[]
{
fileSelector
},
new boolean[]
{
false, false, true
} );
fileSelector.setIncludes( new String[]
{
"**/test.properties"
} );
fileSelector.setExcludes( null );
runUnarchiver( "", new FileSelector[]
{
fileSelector
},
new boolean[]
{
true, true, false
} );
fileSelector.setExcludes( new String[]
{
"resources/artifactId/directory/test.properties"
} );
runUnarchiver( "", new FileSelector[]
{
fileSelector
},
new boolean[]
{
true, false, false
} );
}
public void testExtractingZipWithEntryOutsideDestDirThrowsException()
throws Exception
{
Exception ex = null;
String s = "target/zip-unarchiver-slip-tests";
File testZip = new File( getBasedir(), "src/test/zips/zip-slip.zip" );
File outputDirectory = new File( getBasedir(), s );
FileUtils.deleteDirectory( outputDirectory );
try
{
ZipUnArchiver zu = getZipUnArchiver( testZip );
zu.extract( "", outputDirectory );
}
catch ( Exception e )
{
ex = e;
}
assertNotNull( ex );
assertTrue( ex.getMessage().startsWith( "Entry is outside of the target directory" ) );
}
public void testZipOutputSizeException()
throws Exception
{
Exception ex = null;
String s = "target/zip-size-tests";
File testZip = new File( getBasedir(), "src/test/jars/test.zip" );
File outputDirectory = new File( getBasedir(), s );
FileUtils.deleteDirectory( outputDirectory );
try
{
ZipUnArchiver zu = getZipUnArchiver( testZip );
zu.setMaxOutputSize(10L);
zu.extract( "", outputDirectory );
}
catch ( Exception e )
{
ex = e;
}
assertNotNull( ex );
assertTrue( ex.getMessage().startsWith( "Maximum output size limit reached" ) );
}
private ZipArchiver getZipArchiver()
{
try
{
return (ZipArchiver) lookup( Archiver.ROLE, "zip" );
}
catch ( Exception e )
{
throw new RuntimeException( e );
}
}
private ZipArchiver getZipArchiver( File destFile )
{
final ZipArchiver zipArchiver = getZipArchiver();
zipArchiver.setDestFile( destFile );
return zipArchiver;
}
}