blob: 2ac8c81c9b59a4d13381bcba2c7fafe3fee2a6ee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.api.tools.util.tests;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import org.eclipse.pde.api.tools.internal.util.TarEntry;
import org.junit.Test;
/**
* Test The {@link org.eclipse.pde.api.tools.internal.util.TarEntry} class
*
* @since 1.0.1
*/
public class TarEntryTests {
static final String TAR_NAME = "tar_file"; //$NON-NLS-1$
/**
* Tests the constructor
*/
@Test
public void testConstructors() {
TarEntry entry = new TarEntry(TAR_NAME);
assertEquals("mode should be 0644", 0644, entry.getMode()); //$NON-NLS-1$
assertEquals("name sould be 'foo'", TAR_NAME, entry.getName()); //$NON-NLS-1$
}
/**
* Tests the {@link TarEntry#clone()} method
*/
@Test
public void testClone() {
TarEntry entry = new TarEntry(TAR_NAME);
TarEntry entry2 = (TarEntry) entry.clone();
assertNotNull("The object should have been cloned", entry2); //$NON-NLS-1$
assertEquals("the file type should be the same in the cloned entry", entry.getFileType(), entry2.getFileType()); //$NON-NLS-1$
assertEquals("the name should be the same in the cloned entry", entry.getName(), entry2.getName()); //$NON-NLS-1$
assertEquals("the mode should be the same in the cloned entry", entry.getMode(), entry2.getMode()); //$NON-NLS-1$
assertEquals("the size should be the same in the cloned entry", entry.getSize(), entry2.getSize()); //$NON-NLS-1$
assertEquals("the time should be the same in the cloned entry", entry.getTime(), entry2.getTime()); //$NON-NLS-1$
}
/**
* Tests the {@link TarEntry#setFileType(int)} method
*/
@Test
public void testSetFileType() {
TarEntry entry = new TarEntry(TAR_NAME);
assertEquals("type should be FILE by default", TarEntry.FILE, entry.getFileType()); //$NON-NLS-1$
entry.setFileType(TarEntry.DIRECTORY);
assertEquals("type should be DIRECTORY", TarEntry.DIRECTORY, entry.getFileType()); //$NON-NLS-1$
}
/**
* Tests the {@link TarEntry#setMode(long)} method
*/
@Test
public void testSetMode() {
TarEntry entry = new TarEntry(TAR_NAME);
assertEquals("mode should be 0644 by default", 0644, entry.getMode()); //$NON-NLS-1$
entry.setMode(1L);
assertEquals("type should be 1L", 1L, entry.getMode()); //$NON-NLS-1$
}
/**
* Tests the {@link TarEntry#setSize(long)} method
*/
@Test
public void testSetSize() {
TarEntry entry = new TarEntry(TAR_NAME);
assertEquals("size should be 0", 0, entry.getSize()); //$NON-NLS-1$
entry.setSize(1L);
assertEquals("size should be 1L", 1L, entry.getSize()); //$NON-NLS-1$
}
/**
* Tests the {@link TarEntry#setTime(long)} method
*/
@Test
public void testSetTime() {
TarEntry entry = new TarEntry(TAR_NAME);
entry.setTime(1L);
assertEquals("Time should be 1L", 1L, entry.getTime()); //$NON-NLS-1$
}
/**
* Tests the {@link TarEntry#toString()} method
*/
@Test
public void testToString() {
TarEntry entry = new TarEntry(TAR_NAME);
assertEquals("toString should return the name", TAR_NAME, entry.toString()); //$NON-NLS-1$
}
}