source: other-projects/trunk/gs3-release-maker/apache-ant-1.6.5/src/testcases/org/apache/tools/tar/TarRoundTripTest.java@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 2.0 KB
Line 
1/*
2 * Copyright 2003-2004 The Apache Software Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17package org.apache.tools.tar;
18
19import java.io.IOException;
20import java.io.ByteArrayInputStream;
21import java.io.ByteArrayOutputStream;
22import junit.framework.TestCase;
23
24public class TarRoundTripTest extends TestCase {
25
26 private static final String LONG_NAME
27 = "this/path/name/contains/more/than/one/hundred/characters/in/order/"
28 + "to/test/the/GNU/long/file/name/capability/round/tripped";
29
30 public TarRoundTripTest(String name) {
31 super(name);
32 }
33
34 /**
35 * test round-tripping long (GNU) entries
36 */
37 public void testLongRoundTripping() throws IOException {
38 TarEntry original = new TarEntry(LONG_NAME);
39 assertEquals("over 100 chars", true, LONG_NAME.length() > 100);
40 assertEquals("original name", LONG_NAME, original.getName());
41
42
43 ByteArrayOutputStream buff = new ByteArrayOutputStream();
44 TarOutputStream tos = new TarOutputStream(buff);
45 tos.setLongFileMode(TarOutputStream.LONGFILE_GNU);
46 tos.putNextEntry(original);
47 tos.closeEntry();
48 tos.close();
49
50 TarInputStream tis
51 = new TarInputStream(new ByteArrayInputStream(buff.toByteArray()));
52 TarEntry tripped = tis.getNextEntry();
53 assertEquals("round-tripped name", LONG_NAME, tripped.getName());
54 assertNull("no more entries", tis.getNextEntry());
55 tis.close();
56 }
57}
58
59
Note: See TracBrowser for help on using the repository browser.