001: /*BEGIN_COPYRIGHT_BLOCK
002: *
003: * Copyright (c) 2001-2007, JavaPLT group at Rice University (javaplt@rice.edu)
004: * All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions are met:
008: * * Redistributions of source code must retain the above copyright
009: * notice, this list of conditions and the following disclaimer.
010: * * Redistributions in binary form must reproduce the above copyright
011: * notice, this list of conditions and the following disclaimer in the
012: * documentation and/or other materials provided with the distribution.
013: * * Neither the names of DrJava, the JavaPLT group, Rice University, nor the
014: * names of its contributors may be used to endorse or promote products
015: * derived from this software without specific prior written permission.
016: *
017: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
018: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
019: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
020: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
021: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
022: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
023: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
024: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
025: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
026: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
027: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
028: *
029: * This software is Open Source Initiative approved Open Source Software.
030: * Open Source Initative Approved is a trademark of the Open Source Initiative.
031: *
032: * This file is part of DrJava. Download the current version of this project
033: * from http://www.drjava.org/ or http://sourceforge.net/projects/drjava/
034: *
035: * END_COPYRIGHT_BLOCK*/
036:
037: package edu.rice.cs.drjava.ui.config;
038:
039: import edu.rice.cs.drjava.DrJava;
040: import edu.rice.cs.drjava.DrJavaTestCase;
041: import edu.rice.cs.drjava.config.KeyStrokeOption;
042: import edu.rice.cs.drjava.config.OptionConstants;
043: import edu.rice.cs.util.swing.Utilities;
044:
045: import javax.swing.*;
046: import java.awt.*;
047: import java.awt.event.KeyEvent;
048:
049: /** Tests functionality of this OptionComponent. */
050: public final class KeyStrokeOptionComponentTest extends DrJavaTestCase {
051:
052: private static KeyStrokeOptionComponent _option;
053:
054: protected void setUp() throws Exception {
055: super .setUp();
056: _option = new KeyStrokeOptionComponent(
057: OptionConstants.KEY_NEW_FILE, "Normal KeyStroke",
058: new Frame());
059: DrJava.getConfig().resetToDefaults();
060: }
061:
062: public void testCancelDoesNotChangeConfig() {
063: KeyStroke testKeyStroke = KeyStrokeOption.NULL_KEYSTROKE;
064:
065: _option.setValue(testKeyStroke);
066: _option.resetToCurrent(); // should reset to the original.
067: _option.updateConfig(); // should update with original values therefore no change.
068:
069: Utilities.clearEventQueue();
070: assertEquals(
071: "Cancel (resetToCurrent) should not change the config",
072: OptionConstants.KEY_NEW_FILE.getDefault(), DrJava
073: .getConfig().getSetting(
074: OptionConstants.KEY_NEW_FILE));
075: }
076:
077: public void testApplyDoesChangeConfig() {
078: KeyStroke testKeyStroke = KeyStroke.getKeyStroke(
079: KeyEvent.VK_RIGHT, 0);
080:
081: _option.setValue(testKeyStroke);
082: _option.updateConfig();
083:
084: Utilities.clearEventQueue();
085: assertEquals(
086: "Apply (updateConfig) should write change to file",
087: testKeyStroke, DrJava.getConfig().getSetting(
088: OptionConstants.KEY_NEW_FILE));
089: }
090:
091: public void testApplyThenResetDefault() {
092: KeyStroke testKeyStroke = KeyStrokeOption.NULL_KEYSTROKE;
093:
094: _option.setValue(testKeyStroke);
095: _option.updateConfig();
096: Utilities.clearEventQueue();
097: _option.resetToDefault(); // resets to default
098: _option.updateConfig();
099:
100: Utilities.clearEventQueue();
101: assertEquals(
102: "Apply (updateConfig) should write change to file",
103: OptionConstants.KEY_NEW_FILE.getDefault(), DrJava
104: .getConfig().getSetting(
105: OptionConstants.KEY_NEW_FILE));
106: }
107:
108: }
|