blob: 43ea8bcb4c40a350ce4ba8110dd112c9ac118c5f [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.netbeans.core.options.keymap.api;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.swing.KeyStroke;
import org.netbeans.core.options.keymap.spi.KeymapManager;
import org.netbeans.junit.MockServices;
import org.netbeans.junit.NbTestCase;
/**
*
* @author jhavlin
*/
public class KeyStrokeUtilsTest extends NbTestCase {
private static final String DEFAULT_PROFILE = "NetBeans"; //NOI18N
public KeyStrokeUtilsTest(String name) {
super(name);
}
@Override
protected void setUp() throws Exception {
MockServices.setServices(TestKeymapManager.class);
}
public void testGetKeyStrokesForAction() {
List<KeyStroke[]> s1 = KeyStrokeUtils.getKeyStrokesForAction(
"testX1", null);
List<KeyStroke[]> s2 = KeyStrokeUtils.getKeyStrokesForAction(
"testX2", null);
assertEquals(1, s1.size());
assertEquals(1, s2.size());
assertEquals(1, s1.get(0).length);
assertEquals(2, s2.get(0).length);
assertEquals((int) 'O', s1.get(0)[0].getKeyCode());
assertEquals((int) 'T', s2.get(0)[0].getKeyCode());
assertEquals((int) 'M', s2.get(0)[1].getKeyCode());
}
public static class TestKeymapManager extends KeymapManager {
private String profile = DEFAULT_PROFILE;
private ShortcutAction sa1 = new TestShortcutAction("testX1");
private ShortcutAction sa2 = new TestShortcutAction("testX2");
private Map<ShortcutAction, Set<String>> defaultKeyMap =
new HashMap<ShortcutAction, Set<String>>();
private Map<ShortcutAction, Set<String>> currentKeyMap =
new HashMap<ShortcutAction, Set<String>>();
private Map<String, Set<ShortcutAction>> actionMap =
new HashMap<String, Set<ShortcutAction>>();
public TestKeymapManager() {
super("Test");
Set<ShortcutAction> allActions = new HashSet<ShortcutAction>();
Collections.addAll(allActions, sa1, sa2);
actionMap.put(DEFAULT_PROFILE, allActions);
defaultKeyMap.put(sa1, Collections.singleton("C-O"));
defaultKeyMap.put(sa2, Collections.singleton("M-T M-M"));
currentKeyMap.putAll(defaultKeyMap);
}
@Override
public Map<String, Set<ShortcutAction>> getActions() {
return actionMap;
}
@Override
public void refreshActions() {
}
@Override
public Map<ShortcutAction, Set<String>> getKeymap(String profileName) {
return currentKeyMap;
}
@Override
public Map<ShortcutAction, Set<String>> getDefaultKeymap(String profileName) {
return defaultKeyMap;
}
@Override
public void saveKeymap(String profileName, Map<ShortcutAction, Set<String>> actionToShortcuts) {
// nothing
}
@Override
public List<String> getProfiles() {
return Collections.singletonList(profile);
}
@Override
public String getCurrentProfile() {
return profile;
}
@Override
public void setCurrentProfile(String profileName) {
this.profile = profileName;
}
@Override
public void deleteProfile(String profileName) {
// nothing
}
@Override
public boolean isCustomProfile(String profileName) {
return !profileName.equals(DEFAULT_PROFILE);
}
private class TestShortcutAction implements ShortcutAction {
public TestShortcutAction(String name) {
this.name = name;
}
private String name;
@Override
public String getDisplayName() {
return name;
}
@Override
public String getId() {
return name;
}
@Override
public String getDelegatingActionId() {
return null;
}
@Override
public ShortcutAction getKeymapManagerInstance(String keymapManagerName) {
if (keymapManagerName.equals(TestKeymapManager.this.getName())) {
return this;
} else {
return null;
}
}
}
}
}