/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. * * Oracle and Java are registered trademarks of Oracle and/or its affiliates. * Other names may be trademarks of their respective owners. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common * Development and Distribution License("CDDL") (collectively, the * "License"). You may not use this file except in compliance with the * License. You can obtain a copy of the License at * http://www.netbeans.org/cddl-gplv2.html * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the * specific language governing permissions and limitations under the * License. When distributing the software, include this License Header * Notice in each file and include the License file at * nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the GPL Version 2 section of the License file that * accompanied this code. If applicable, add the following below the * License Header, with the fields enclosed by brackets [] replaced by * your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * * Contributor(s): * * The Original Software is NetBeans. The Initial Developer of the Original * Software is Sun Microsystems, Inc. Portions Copyright 1997-2009 Sun * Microsystems, Inc. All Rights Reserved. * * If you wish your version of this file to be governed by only the CDDL * or only the GPL Version 2, indicate your decision by adding * "[Contributor] elects to include this software in this distribution * under the [CDDL or GPL Version 2] license." If you do not indicate a * single choice of license, a recipient has the option to distribute * your version of this file under either the CDDL, the GPL Version 2 or * to extend the choice of license to its licensees as provided above. * However, if you add GPL Version 2 code and therefore, elected the GPL * Version 2 license, then the option applies only if the new code is * made subject to such option by the copyright holder. */ package org.netbeans.modules.ruby; import org.netbeans.modules.ruby.elements.IndexedClass; import org.netbeans.modules.ruby.elements.IndexedElement; import org.netbeans.modules.ruby.elements.IndexedField; import org.netbeans.modules.ruby.elements.IndexedMethod; /** * @author Tor Norbye */ public class RubyIndexerTest extends RubyTestBase { public RubyIndexerTest(String testName) { super(testName); } @Override protected void setUp() throws Exception { super.setUp(); RubyIndexer.userSourcesTest = true; } @Override protected String prettyPrintValue(String key, String value) { if (value == null) { return value; } if (RubyIndexer.FIELD_METHOD_NAME.equals(key)) { // Decode the attributes int attributeIndex = value.indexOf(';'); if (attributeIndex != -1 && (attributeIndex + 1) < value.length() && value.charAt(attributeIndex + 1) != ';') { int flags = IndexedElement.stringToFlag(value, attributeIndex + 1); if (flags != 0) { String desc = IndexedMethod.decodeFlags(flags); value = value.substring(0, attributeIndex) + desc + value.substring(attributeIndex + 3); } } } else if (RubyIndexer.FIELD_CLASS_ATTRS.equals(key)) { // Decode the attributes int flags = IndexedElement.stringToFlag(value, 0); if (flags != 0) { String desc = IndexedClass.decodeFlags(flags); value = desc + value.substring(2); } else { value = "|CLASS|"; } } else if (RubyIndexer.FIELD_FIELD_NAME.equals(key)) { // Decode the attributes int attributeIndex = value.indexOf(';'); if (attributeIndex != -1 && (attributeIndex + 1) < value.length() && value.charAt(attributeIndex + 1) != ';') { int flags = IndexedElement.stringToFlag(value, attributeIndex + 1); if (flags != 0) { String desc = IndexedField.decodeFlags(flags); value = value.substring(0, attributeIndex) + desc + value.substring(attributeIndex + 3); } } } return value; } public void testAnalysis2() throws Exception { checkIndexer("testfiles/ape.rb"); } public void testAnalysis() throws Exception { checkIndexer("testfiles/postgresql_adapter.rb"); } public void testAnalysis3() throws Exception { checkIndexer("testfiles/date.rb"); } public void testAnalysis4() throws Exception { checkIndexer("testfiles/resolv.rb"); } public void testUnused() throws Exception { checkIndexer("testfiles/unused.rb"); } public void testRails1() throws Exception { checkIndexer("testfiles/action_controller.rb"); } public void testRails2() throws Exception { checkIndexer("testfiles/action_view.rb"); } public void testRails3() throws Exception { checkIndexer("testfiles/action_mailer.rb"); } public void testRails4() throws Exception { checkIndexer("testfiles/action_web_service.rb"); } public void testRails5() throws Exception { checkIndexer("testfiles/active_record.rb"); } public void testRails6() throws Exception { checkIndexer("testfiles/lib/action_controller/assertions.rb"); } public void testTopLevel() throws Exception { checkIndexer("testfiles/top_level.rb"); } public void testTopLevel2() throws Exception { checkIndexer("testfiles/option_parser_spec.rb"); } public void testTopLevel3() throws Exception { checkIndexer("testfiles/method_definer_test.rb"); } public void testMigration1() throws Exception { checkIndexer("testfiles/migrate/001_create_products.rb"); } public void testMigration2() throws Exception { checkIndexer("testfiles/migrate/002_add_price.rb"); } public void testMigration3() throws Exception { checkIndexer("testfiles/migrate/003_add_test_data.rb"); } public void testMigration4() throws Exception { checkIndexer("testfiles/migrate/004_add_sessions.rb"); } public void testMigration5() throws Exception { checkIndexer("testfiles/migrate/005_create_orders.rb"); } public void testMigration6() throws Exception { checkIndexer("testfiles/migrate/006_create_line_items.rb"); } public void testMigration7() throws Exception { checkIndexer("testfiles/migrate/007_create_users.rb"); } public void testMigration8() throws Exception { checkIndexer("testfiles/migrate/007_add_assets_and_resources.rb"); } public void testMigration9() throws Exception { checkIndexer("testfiles/migrate/029_add_correct_comment_lifetime.rb"); } public void testMigration10() throws Exception { checkIndexer("testfiles/migrate/044_store_single_filter.rb"); } public void testMigration11() throws Exception { checkIndexer("testfiles/migrate/001_create_products_renamed.rb"); } public void testRails20Migrations() throws Exception { checkIndexer("testfiles/migrate/100_rails20_migrations.rb"); } public void testRails20Migrations2() throws Exception { checkIndexer("testfiles/migrate/101_rails20_migrations.rb"); } public void testRails20Migrations3() throws Exception { checkIndexer("testfiles/migrate/102_rails20_migrations.rb"); } public void testSchemaDepot() throws Exception { checkIndexer("testfiles/migrate/schemas/depot/db/schema.rb"); } public void testSchemaMephisto() throws Exception { checkIndexer("testfiles/migrate/schemas/mephisto/db/schema.rb"); } public void testClassvar() throws Exception { checkIndexer("testfiles/classvar.rb"); } public void testRails20SchemaDefs() throws Exception { checkIndexer("testfiles/activerecord-2.0.1/schema_definitions.rb"); } public void testTwoClasses() throws Exception { checkIndexer("testfiles/twoclasses.rb"); } public void testRails21Migrations1() throws Exception { checkIndexer("testfiles/migrate/20070403225818_create_posts.rb"); } public void testRails21Migrations2() throws Exception { checkIndexer("testfiles/migrate/20080403222904_add_names.rb"); } public void testEmpty1() throws Exception { checkIndexer("testfiles/empty.rb"); } public void testGlobals() throws Exception { checkIndexer("testfiles/globals.rb"); } public void testGlobals2() throws Exception { checkIndexer("testfiles/globals2.rb"); } public void testConstants() throws Exception { checkIndexer("testfiles/constants.rb"); } public void testMethodTypeInference() throws Exception { checkIndexer("testfiles/method_type_inference.rb"); } public void testNamedScopes() throws Exception { checkIndexer("testfiles/named_scopes.rb"); } public void testTypeInferenceInstVars() throws Exception { checkIndexer("testfiles/inst_var_type_inference.rb"); } // TODO - test :nodoc: on methods and classes!!! }