001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package org.netbeans.core.multiview;
043:
044: import org.netbeans.core.api.multiview.MultiViewHandler;
045: import org.netbeans.core.api.multiview.MultiViews;
046: import org.netbeans.core.spi.multiview.MultiViewDescription;
047: import org.netbeans.core.spi.multiview.MultiViewFactory;
048:
049: import java.awt.Image;
050: import java.io.DataOutputStream;
051: import java.io.File;
052: import java.io.FileInputStream;
053: import java.io.FileOutputStream;
054: import java.io.IOException;
055: import java.io.ObjectInputStream;
056: import java.io.ObjectOutputStream;
057: import java.io.Serializable;
058: import java.util.Collection;
059: import javax.swing.Action;
060: import javax.swing.JPanel;
061: import javax.swing.JToolBar;
062: import javax.swing.SwingUtilities;
063: import junit.framework.*;
064: import org.netbeans.core.api.multiview.MultiViewPerspective;
065: import org.netbeans.core.spi.multiview.CloseOperationHandler;
066: import org.netbeans.core.spi.multiview.MultiViewElement;
067: import org.netbeans.junit.*;
068: import org.openide.awt.UndoRedo;
069: import org.openide.util.HelpCtx;
070: import org.openide.util.io.NbMarshalledObject;
071: import org.openide.util.lookup.Lookups;
072:
073: import org.openide.windows.*;
074:
075: /**
076: *
077: * @author Milos Kleint
078: */
079: public class MultiViewTopComponentTest extends
080: AbstractMultiViewTopComponentTestCase {
081:
082: /** Creates a new instance of SFSTest */
083: public MultiViewTopComponentTest(String name) {
084: super (name);
085: }
086:
087: /**
088: * @param args the command line arguments
089: */
090: public static void main(java.lang.String[] args) {
091: junit.textui.TestRunner.run(suite());
092: }
093:
094: public static Test suite() {
095: TestSuite suite = new NbTestSuite(
096: MultiViewTopComponentTest.class);
097:
098: return suite;
099: }
100:
101: protected TopComponent callFactory(MultiViewDescription[] desc,
102: MultiViewDescription def) {
103: return MultiViewFactory.createMultiView(desc, def);
104: }
105:
106: protected TopComponent callFactory(MultiViewDescription[] desc,
107: MultiViewDescription def, CloseOperationHandler close) {
108: return MultiViewFactory.createMultiView(desc, def, close);
109: }
110:
111: protected Class getTopComponentClass() {
112: return MultiViewTopComponent.class;
113: }
114:
115: public void testPersistence() throws Exception {
116: MVElem elem1 = new MVElem(new Action[] { new Act1("act1") });
117: SerMVElem elem2 = new SerMVElem();
118: SerMVElem elem3 = new SerMVElem();
119: elem2.deserializeTest = "testtesttest - 2";
120: elem3.deserializeTest = "testtesttest - 3";
121:
122: MultiViewDescription desc1 = new SerMVDesc("desc1", null,
123: TopComponent.PERSISTENCE_NEVER, elem1);
124: MultiViewDescription desc2 = new SerMVDesc("desc2", null,
125: TopComponent.PERSISTENCE_ONLY_OPENED, elem2);
126: MultiViewDescription desc3 = new SerMVDesc("desc3", null,
127: TopComponent.PERSISTENCE_ALWAYS, elem3);
128:
129: MultiViewDescription[] descs = new MultiViewDescription[] {
130: desc1, desc2 };
131: SerCloseHandler close = new SerCloseHandler("serializedvalue");
132:
133: TopComponent tc = callFactory(descs, desc2, close);
134: tc.open();
135: tc.requestActive();
136: // testing closehandler here..
137: tc.close();
138:
139: NbMarshalledObject mars = new NbMarshalledObject(tc);
140: Object obj = mars.get();
141: assertNotNull(obj);
142: assertEquals(getTopComponentClass(), obj.getClass());
143: tc = (MultiViewTopComponent) obj;
144:
145: MultiViewHandler handler = MultiViews.findMultiViewHandler(tc);
146: MultiViewPerspective[] descsAfter = handler.getPerspectives();
147: assertNotNull(descsAfter);
148: assertEquals(2, descsAfter.length);
149: MultiViewPerspective selDesc = handler.getSelectedPerspective();
150: assertNotNull(selDesc);
151: assertEquals("desc2", selDesc.getDisplayName());
152: tc.open();
153: tc.requestActive();
154: MultiViewTopComponent mvtc = (MultiViewTopComponent) tc;
155: Collection cold = mvtc.getModel().getCreatedElements();
156: // expected number of elements is one, because the elem3 was not initialized at all..
157: assertEquals(1, cold.size());
158:
159: // test if the deserialized instance is there..
160: SerMVElem elSelecto = (SerMVElem) mvtc.getModel()
161: .getActiveElement();
162: assertEquals("testtesttest - 2", elSelecto.deserializeTest);
163: assertEquals(
164: "componentOpened-componentShowing-componentActivated-",
165: elSelecto.getLog());
166:
167: //testing if closehandler was correctly deserialized..
168: tc.close();
169:
170: }
171:
172: }
|