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:
042: package org.openidex.search;
043:
044: import java.io.PrintStream;
045: import java.util.ArrayList;
046: import java.util.Collections;
047: import java.util.Iterator;
048: import java.util.List;
049: import junit.textui.TestRunner;
050: import org.netbeans.junit.NbTestCase;
051: import org.netbeans.junit.NbTestSuite;
052: import org.openide.filesystems.FileObject;
053: import org.openide.filesystems.FileUtil;
054: import org.openide.loaders.DataObject;
055:
056: /**
057: *
058: * @author Marian Petras
059: */
060: public final class SearchIteratorTest extends NbTestCase {
061:
062: /** */
063: private FileObject dataDir;
064: /** */
065: FileObject projectRoot;
066:
067: /**
068: */
069: public SearchIteratorTest(String name) {
070: super (name);
071: }
072:
073: /**
074: */
075: public static void main(String args[]) {
076: TestRunner.run(new NbTestSuite(SearchIteratorTest.class));
077: }
078:
079: @Override
080: protected void setUp() throws Exception {
081: dataDir = FileUtil.toFileObject(getDataDir());
082: assert dataDir != null;
083:
084: projectRoot = dataDir.getFileObject("projects/Project1"); //NOI18N
085: assert projectRoot != null;
086: }
087:
088: /**
089: */
090: public void testPlainSearchInfo() throws Exception {
091: generateSearchableFileNames(projectRoot, true, //recursive
092: false, //check visibility?
093: false, //check sharability?
094: getRef());
095: compareReferenceFiles();
096: }
097:
098: /**
099: */
100: public void testVisibilitySearchInfo() throws Exception {
101: generateSearchableFileNames(projectRoot, true, //recursive
102: true, //check visibility?
103: false, //check sharability?
104: getRef());
105: compareReferenceFiles();
106: }
107:
108: /**
109: */
110: public void testSharabilitySearchInfo() throws Exception {
111: generateSearchableFileNames(projectRoot, true, //recursive
112: false, //check visibility?
113: true, //check sharability?
114: getRef());
115: compareReferenceFiles();
116: }
117:
118: /**
119: */
120: public void testVisibSharSearchInfo() throws Exception {
121: generateSearchableFileNames(projectRoot, true, //recursive
122: true, //check visibility?
123: true, //check sharability?
124: getRef());
125: compareReferenceFiles();
126: }
127:
128: public void testNonRecursiveSearchInfo() throws Exception {
129: generateSearchableFileNames(projectRoot, false, //not recursive
130: false, false, getRef());
131: compareReferenceFiles();
132: }
133:
134: /**
135: */
136: private void generateSearchableFileNames(FileObject folder,
137: boolean recursive, boolean checkVisibility,
138: boolean checkSharability, PrintStream refPrintStream) {
139:
140: FileObject[] foldersToCheck = new FileObject[2];
141: foldersToCheck[0] = folder.getFileObject("src");
142: foldersToCheck[1] = folder.getFileObject("test");
143: for (FileObject f : foldersToCheck) {
144: if ((f == null) || !f.isFolder()) {
145: throw new IllegalStateException();
146: }
147: }
148:
149: FileObjectFilter[] filters;
150:
151: int filtersCount = 0;
152: if (checkVisibility) {
153: filtersCount++;
154: }
155: if (checkSharability) {
156: filtersCount++;
157: }
158:
159: if (filtersCount == 0) {
160: filters = null;
161: } else {
162: filters = new FileObjectFilter[filtersCount];
163:
164: int i = 0;
165: if (checkVisibility) {
166: filters[i++] = SearchInfoFactory.VISIBILITY_FILTER;
167: }
168: if (checkSharability) {
169: filters[i++] = SearchInfoFactory.SHARABILITY_FILTER;
170: }
171: }
172:
173: SearchInfo searchInfo = SearchInfoFactory.createSearchInfo(
174: foldersToCheck, recursive, filters);
175:
176: assertTrue("project root not searchable", searchInfo
177: .canSearch());
178:
179: List<String> foundFilesPaths = new ArrayList<String>(16);
180: for (Iterator<DataObject> i = searchInfo.objectsToSearch(); i
181: .hasNext();) {
182: FileObject primaryFile = i.next().getPrimaryFile();
183: String relativePath = FileUtil.getRelativePath(projectRoot,
184: primaryFile);
185: foundFilesPaths.add(relativePath);
186: }
187:
188: Collections.sort(foundFilesPaths);
189:
190: for (String path : foundFilesPaths) {
191: refPrintStream.println(path);
192: }
193: }
194:
195: }
|