blob: 99b3c1e4d9ff1e4563dff0b5e6e0d69ed7a982f1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
* Karsten Stoeckmann <ngc2997@gmx.net> - Test case for Bug 220766
* [JFace] ImageRegistry.get does not work as expected (crashes with NullPointerException)
******************************************************************************/
package org.eclipse.jface.tests.images;
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.Iterator;
import junit.framework.TestCase;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Path;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.graphics.Image;
import org.eclipse.ui.tests.TestPlugin;
import org.osgi.framework.Bundle;
/**
* Test loading a directory full of images.
*
* @since 3.4
*
*/
public class FileImageDescriptorTest extends TestCase {
protected static final String IMAGES_DIRECTORY = "/icons/imagetests";
/**
* Create a new instance of the receiver.
*
* @param name
*/
public FileImageDescriptorTest(String name) {
super(name);
}
/**
* Test loading the image descriptors.
*/
public void testFileImageDescriptorWorkbench() {
Class missing = null;
ArrayList images = new ArrayList();
Bundle bundle = TestPlugin.getDefault().getBundle();
Enumeration bundleEntries = bundle.getEntryPaths(IMAGES_DIRECTORY);
while (bundleEntries.hasMoreElements()) {
ImageDescriptor descriptor;
String localImagePath = (String) bundleEntries.nextElement();
URL[] files = FileLocator.findEntries(bundle, new Path(
localImagePath));
for (int i = 0; i < files.length; i++) {
// Skip any subdirectories added by version control
if (files[i].getPath().lastIndexOf('.') < 0)
continue;
try {
descriptor = ImageDescriptor.createFromFile(missing,
FileLocator.toFileURL(files[i]).getFile());
} catch (IOException e) {
fail(e.getLocalizedMessage());
continue;
}
Image image = descriptor.createImage();
images.add(image);
}
}
Iterator imageIterator = images.iterator();
while (imageIterator.hasNext()) {
((Image) imageIterator.next()).dispose();
}
}
/**
* Test the file image descriptor.
*/
public void testFileImageDescriptorLocal() {
ImageDescriptor descriptor = ImageDescriptor.createFromFile(
FileImageDescriptorTest.class, "anything.gif");
Image image = descriptor.createImage();
assertTrue("Could not find image", image != null);
image.dispose();
}
/**
* Test for a missing file image descriptor.
*/
public void testFileImageDescriptorMissing() {
ImageDescriptor descriptor = ImageDescriptor.createFromFile(
FileImageDescriptorTest.class, "missing.gif");
Image image = descriptor.createImage(false);
assertTrue("Found an image but should be null", image == null);
}
/**
* Test for a missing file image descriptor.
*/
public void testFileImageDescriptorMissingWithDefault() {
ImageDescriptor descriptor = ImageDescriptor.createFromFile(
FileImageDescriptorTest.class, "missing.gif");
Image image = descriptor.createImage(true);
assertTrue("Did not find default image", image != null);
}
}