blob: 8469f45c2fee9f5c848cd7ee9188e325867c9423 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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
*
* https://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.apache.tools.zip;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import java.util.zip.ZipException;
/**
* JUnit testcases for org.apache.tools.zip.AsiExtraField.
*
*/
public class AsiExtraFieldTest implements UnixStat {
private AsiExtraField a;
@Rule
public ExpectedException thrown = ExpectedException.none();
@Before
public void setUp() {
a = new AsiExtraField();
}
/**
* Test file mode magic.
*/
@Test
public void testModes() {
a.setMode(0123);
assertEquals("plain file", 0100123, a.getMode());
a.setDirectory(true);
assertEquals("directory", 040123, a.getMode());
a.setLinkedFile("test");
assertEquals("symbolic link", 0120123, a.getMode());
}
/**
* Test content.
*/
@Test
public void testContent() {
a.setMode(0123);
a.setUserId(5);
a.setGroupId(6);
byte[] b = a.getLocalFileDataData();
// CRC manually calculated, sorry
byte[] expect = {(byte) 0xC6, 0x02, 0x78, (byte) 0xB6, // CRC
0123, (byte) 0x80, // mode
0, 0, 0, 0, // link length
5, 0, 6, 0}; // uid, gid
assertEquals("no link", expect.length, b.length);
for (int i = 0; i < expect.length; i++) {
assertEquals("no link, byte " + i, expect[i], b[i]);
}
a.setLinkedFile("test");
expect = new byte[] {0x75, (byte) 0x8E, 0x41, (byte) 0xFD, // CRC
0123, (byte) 0xA0, // mode
4, 0, 0, 0, // link length
5, 0, 6, 0, // uid, gid
(byte) 't', (byte) 'e', (byte) 's', (byte) 't'};
b = a.getLocalFileDataData();
assertEquals("no link", expect.length, b.length);
for (int i = 0; i < expect.length; i++) {
assertEquals("no link, byte " + i, expect[i], b[i]);
}
}
/**
* Test reparse file
*/
@Test
public void testReparseFile() throws Exception {
// CRC manually calculated, sorry
byte[] data = {(byte) 0xC6, 0x02, 0x78, (byte) 0xB6, // CRC
0123, (byte) 0x80, // mode
0, 0, 0, 0, // link length
5, 0, 6, 0}; // uid, gid
a.parseFromLocalFileData(data, 0, data.length);
assertEquals("length plain file", data.length,
a.getLocalFileDataLength().getValue());
assertFalse("plain file, no link", a.isLink());
assertFalse("plain file, no dir", a.isDirectory());
assertEquals("mode plain file", FILE_FLAG | 0123, a.getMode());
assertEquals("uid plain file", 5, a.getUserId());
assertEquals("gid plain file", 6, a.getGroupId());
}
/**
* Test reparse link
*/
@Test
public void testReparseLink() throws Exception {
byte[] data = {0x75, (byte) 0x8E, 0x41, (byte) 0xFD, // CRC
0123, (byte) 0xA0, // mode
4, 0, 0, 0, // link length
5, 0, 6, 0, // uid, gid
(byte) 't', (byte) 'e', (byte) 's', (byte) 't'};
a.parseFromLocalFileData(data, 0, data.length);
assertEquals("length link", data.length,
a.getLocalFileDataLength().getValue());
assertTrue("link, is link", a.isLink());
assertFalse("link, no dir", a.isDirectory());
assertEquals("mode link", LINK_FLAG | 0123, a.getMode());
assertEquals("uid link", 5, a.getUserId());
assertEquals("gid link", 6, a.getGroupId());
assertEquals("test", a.getLinkedFile());
}
/**
* Test reparse directory
*/
@Test
public void testReparseDirectory() throws Exception {
byte[] data ={(byte)0x8E, 0x01, (byte)0xBF, (byte)0x0E, // CRC
0123, (byte)0x40, // mode
0, 0, 0, 0, // link
5, 0, 6, 0}; // uid, gid
a.parseFromLocalFileData(data, 0, data.length);
assertEquals("length dir", data.length,
a.getLocalFileDataLength().getValue());
assertFalse("dir, no link", a.isLink());
assertTrue("dir, is dir", a.isDirectory());
assertEquals("mode dir", DIR_FLAG | 0123, a.getMode());
assertEquals("uid dir", 5, a.getUserId());
assertEquals("gid dir", 6, a.getGroupId());
}
/**
* Test reparse bad CRC
*/
@Test
public void testReparseBadCRC() throws Exception {
thrown.expect(ZipException.class);
thrown.expectMessage("bad CRC checksum 0 instead of ebf018e");
byte[] data = {0, 0, 0, 0, // bad CRC
0123, (byte)0x40, // mode
0, 0, 0, 0, // link
5, 0, 6, 0}; // uid, gid
a.parseFromLocalFileData(data, 0, data.length);
}
@Test
public void testClone() {
a.setUserId(42);
a.setGroupId(12);
a.setLinkedFile("foo");
a.setMode(0644);
a.setDirectory(true);
AsiExtraField s2 = (AsiExtraField) a.clone();
assertNotSame(a, s2);
assertEquals(a.getUserId(), s2.getUserId());
assertEquals(a.getGroupId(), s2.getGroupId());
assertEquals(a.getLinkedFile(), s2.getLinkedFile());
assertEquals(a.getMode(), s2.getMode());
assertEquals(a.isDirectory(), s2.isDirectory());
}
}