blob: 22f2f90c810aedfd0009da9ec13897a9e297f010 [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
*
* http://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.openide.actions;
import java.awt.Component;
import java.awt.Image;
import java.awt.datatransfer.Transferable;
import java.io.IOException;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.netbeans.junit.NbTestCase;
import org.openide.cookies.OpenCookie;
import org.openide.nodes.Children;
import org.openide.nodes.Node;
import org.openide.util.HelpCtx;
import org.openide.util.actions.CookieAction;
import org.openide.util.datatransfer.NewType;
import org.openide.util.datatransfer.PasteType;
/**
* A JUnit test for OpenAction.
*
* @author Manfred Riem
* @version $Revision$
*/
public class OpenActionTest extends NbTestCase {
/**
* Stores our single instance.
*/
private static OpenAction instance = new OpenAction();
/**
* Constructor.
*
* @param testName the name of the test.
*/
public OpenActionTest(String testName) {
super(testName);
}
/**
* Setup before testing.
*/
protected void setUp() throws Exception {
}
/**
* Cleanup after testing.
*/
protected void tearDown() throws Exception {
}
/**
* Suite method.
*/
public static Test suite() {
TestSuite suite = new TestSuite(OpenActionTest.class);
return suite;
}
/**
* Test cookieClasses method.
*/
public void testCookieClasses() {
Class[] result = instance.cookieClasses();
assertNotNull(result);
assertEquals(OpenCookie.class, result[0]);
}
/**
* Test surviveFocusChange method.
*/
public void testSurviveFocusChange() {
boolean expected = false;
boolean result = instance.surviveFocusChange();
assertEquals(expected, result);
}
/**
* Test mode method.
*/
public void testMode() {
int expected = CookieAction.MODE_ANY;
int result = instance.mode();
assertEquals(expected, result);
}
/**
* Test getName method.
*/
public void testGetName() {
String expected = "Open";
String result = instance.getName();
assertEquals(expected, result);
}
/**
* Test getHelpCtx method.
*/
public void testGetHelpCtx() {
HelpCtx expected = new HelpCtx(OpenAction.class);;
HelpCtx result = instance.getHelpCtx();
assertEquals(expected, result);
}
/**
* Test performAction method.
*/
public void testPerformAction() {
Node[] nodes = new Node[1];
nodes[0] = new OpenActionTestNode();
instance.performAction(nodes);
}
/**
* Test asynchronous method.
*/
public void testAsynchronous() {
boolean expected = false;
boolean result = instance.asynchronous();
assertEquals(expected, result);
}
/**
* Inner class for testing purposes.
*/
public class OpenActionTestNode extends Node implements OpenCookie {
public OpenActionTestNode() {
super(Children.LEAF, null);
}
public Node.Cookie getCookie(Class clazz) {
if (clazz == OpenCookie.class) {
return this;
}
return null;
}
public Node cloneNode() {
return null;
}
public Image getIcon(int type) {
return null;
}
public Image getOpenedIcon(int type) {
return null;
}
public HelpCtx getHelpCtx() {
return null;
}
public boolean canRename() {
return false;
}
public boolean canDestroy() {
return false;
}
public Node.PropertySet[] getPropertySets() {
return null;
}
public Transferable clipboardCopy() throws IOException {
return null;
}
public Transferable clipboardCut() throws IOException {
return null;
}
public Transferable drag() throws IOException {
return null;
}
public boolean canCopy() {
return false;
}
public boolean canCut() {
return false;
}
public PasteType[] getPasteTypes(Transferable t) {
return null;
}
public PasteType getDropType(Transferable t, int action, int index) {
return null;
}
public NewType[] getNewTypes() {
return null;
}
public boolean hasCustomizer() {
return false;
}
public Component getCustomizer() {
return null;
}
public Node.Handle getHandle() {
return null;
}
public void open() {
}
}
}