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-2007 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: package org.netbeans.modules.tasklist.impl;
042:
043: import java.util.Collections;
044: import java.util.Iterator;
045: import org.netbeans.junit.NbTestCase;
046: import org.netbeans.modules.tasklist.filter.TaskFilter;
047: import org.netbeans.modules.tasklist.impl.TaskManagerImpl;
048: import org.netbeans.spi.tasklist.FileTaskScanner;
049: import org.netbeans.spi.tasklist.PushTaskScanner;
050: import org.netbeans.spi.tasklist.PushTaskScanner.Callback;
051: import org.netbeans.spi.tasklist.Task;
052: import org.netbeans.spi.tasklist.TaskScanningScope;
053: import org.openide.filesystems.FileObject;
054: import org.openide.filesystems.FileUtil;
055: import org.openide.util.Lookup;
056: import org.openide.util.lookup.Lookups;
057:
058: /**
059: *
060: * @author Jan Lahoda
061: */
062: public class TaskManagerImplTest extends NbTestCase {
063:
064: public TaskManagerImplTest(String testName) {
065: super (testName);
066: }
067:
068: protected void setUp() throws Exception {
069: clearWorkDir();
070:
071: FileObject workDir = FileUtil.toFileObject(getWorkDir());
072:
073: assertNotNull(workDir);
074:
075: file1 = workDir.createData("file1.txt");
076: super .setUp();
077: }
078:
079: private FileObject file1;
080:
081: /**IZ #100463
082: */
083: public void testProviderCanStartImmediatelly() throws Exception {
084: final PushTaskScanner scanner = new PushTaskScanner("", "",
085: null) {
086: public void setScope(TaskScanningScope scope,
087: Callback callback) {
088: callback.setTasks(file1, Collections.singletonList(Task
089: .create(file1, "unknown", "x", 2)));
090: }
091: };
092:
093: TaskManagerImpl impl = new TaskManagerImpl() {
094: @Override
095: Iterable<? extends FileTaskScanner> getFileScanners() {
096: return Collections.<FileTaskScanner> emptyList();
097: }
098:
099: @Override
100: Iterable<? extends PushTaskScanner> getPushScanners() {
101: return Collections.singletonList(scanner);
102: }
103: };
104:
105: impl.observe(new TaskScanningScope("", "", null) {
106: public boolean isInScope(FileObject resource) {
107: return (resource == file1);
108: }
109:
110: public void attach(Callback callback) {
111: }
112:
113: public Lookup getLookup() {
114: return Lookups.singleton(file1);
115: }
116:
117: public Iterator<FileObject> iterator() {
118: return Collections.singletonList(file1).iterator();
119: }
120: }, TaskFilter.EMPTY);
121:
122: impl.waitFinished();
123:
124: assertEquals(1, impl.getTasks().getTasks().size());
125: }
126:
127: public void testProviderCanRemoveTasks() throws Exception {
128: final Callback[] cb = new Callback[1];
129: final PushTaskScanner scanner = new PushTaskScanner("", "",
130: null) {
131: public void setScope(TaskScanningScope scope,
132: Callback callback) {
133: callback.setTasks(file1, Collections.singletonList(Task
134: .create(file1, "unknown", "x", 2)));
135: cb[0] = callback;
136: }
137: };
138:
139: TaskManagerImpl impl = new TaskManagerImpl() {
140: @Override
141: Iterable<? extends FileTaskScanner> getFileScanners() {
142: return Collections.<FileTaskScanner> emptyList();
143: }
144:
145: @Override
146: Iterable<? extends PushTaskScanner> getPushScanners() {
147: return Collections.singletonList(scanner);
148: }
149: };
150:
151: impl.observe(new TaskScanningScope("", "", null) {
152: public boolean isInScope(FileObject resource) {
153: return (resource == file1);
154: }
155:
156: public void attach(Callback callback) {
157: }
158:
159: public Lookup getLookup() {
160: return Lookups.singleton(file1);
161: }
162:
163: public Iterator<FileObject> iterator() {
164: return Collections.singletonList(file1).iterator();
165: }
166: }, TaskFilter.EMPTY);
167:
168: impl.waitFinished();
169:
170: assertEquals(1, impl.getTasks().getTasks().size());
171:
172: cb[0].setTasks(file1, Collections.<Task> emptyList());
173:
174: assertTrue(impl.getTasks().getTasks().isEmpty());
175: }
176:
177: }
|