/* * 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]" * * 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. * * Contributor(s): * * Portions Copyrighted 2007 Sun Microsystems, Inc. */ package org.netbeans.modules.ruby.hints; import org.netbeans.modules.ruby.hints.infrastructure.RubyAstRule; public class ConvertIfToUnlessTest extends HintTestBase { public ConvertIfToUnlessTest(String testName) { super(testName); } private RubyAstRule createRule() { return new ConvertIfToUnless(); } public void testRegistered() throws Exception { ensureRegistered(createRule()); } public void testNoHint1() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", null); } public void testNoHint2() throws Exception { checkHints(this, createRule(), "testfiles/conditionals2.rb", "uri = env_pr^oxy ? URI.parse(env_proxy) : nil"); } public void testNoHint3() throws Exception { checkHints(this, createRule(), "testfiles/conditionals2.rb", "(uri =~ /.(https?|ftp|file):/) ? u^ri : \"http://#{uri}\""); } public void testNoHint4() throws Exception { checkHints(this, createRule(), "testfiles/conditionals2.rb", "uri = env_pr^oxy ? URI.parse(env_proxy) : nil"); } public void testNoHint5() throws Exception { checkHints(this, createRule(), "testfiles/conditionals2.rb", "(uri =~ /.(https?|ftp|file):/) ? u^ri : \"http://#{uri}\""); } public void testNoHint6() throws Exception { checkHints(this, createRule(), "testfiles/emptycondition.rb", "if (^)"); } public void testNoHint7() throws Exception { checkHints(this, createRule(), "testfiles/elsif.rb", "elsi^f !str.blank?"); } public void testNoHint8() throws Exception { checkHints(this, createRule(), "testfiles/elsif.rb", "elsif !str.bla^nk?"); } public void testNoHint9() throws Exception { checkHints(this, createRule(), "testfiles/elsif.rb", "if st^r != 'something'"); } // public void testNoHint10() throws Exception { // checkHints(this, createRule(), "testfiles/emptybody.rb", // "if !^x"); // } // // public void testNoHint11() throws Exception { // checkHints(this, createRule(), "testfiles/emptybody.rb", // "if !^y"); // } public void testHint2() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "if !tr^ue"); } public void testHint3() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "i^f x != 5"); } public void testHint4() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "i^f (x != 6)"); } public void testHint5() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "unl^ess !x"); } public void testHint6() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "i^f !(x < 8)"); } public void testHint7() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "i^f (x != 9)"); } public void testHint8() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "^x != 11"); } public void testHint10() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "un^less (x != 6)"); } public void testHint11() throws Exception { checkHints(this, createRule(), "testfiles/reverseif.rb", "^x != 12"); } public void testFix1() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "if !tr^ue", "Change if into an unless statement and reverse condition logic"); } public void testFix2() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "i^f x != 5", "Change if into an unless statement and reverse condition logic"); } public void testFix3() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "i^f (x != 6)", "Change if into an unless statement and reverse condition logic"); } public void testFix4() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "unless^ !x", "Change unless into an if statement and reverse condition logic"); } public void testFix5() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "i^f !(x < 8)", "Change if into an unless statement and reverse condition logic"); } public void testFix6() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "i^f (x != 9)", "Change if into an unless statement and reverse condition logic"); } public void testFix7() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "^x != 11", "Change if into an unless statement and reverse condition logic"); } public void testFix8() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "un^less (x != 6)", "Change unless into an if statement and reverse condition logic"); } public void testFix9() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "^x != 12", "Change unless into an if statement and reverse condition logic"); } public void testFix10() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "^x != 13", "Change unless into an if statement and reverse condition logic"); } public void testFix11() throws Exception { applyHint(this, createRule(), "testfiles/reverseif.rb", "^x != 14", "Change if into an unless statement and reverse condition logic"); } public void testFix12() throws Exception { applyHint(this, createRule(), "testfiles/reverseif2.rb", "if (final_^path", "Change unless into an if statement and reverse condition logic"); } public void testFix13() throws Exception { applyHint(this, createRule(), "testfiles/reverseif2.rb", "if (no^t params[:recipients].empty?)", "Change unless into an if statement and reverse condition logic"); } // public void testNoPositives() throws Exception { // try { // parseErrorsOk = true; // Set<String> exceptions = new HashSet<String>(); // //// // Known exceptions // exceptions.add("remote_fetcher.rb"); // // assertNoJRubyMatches(createRule(), exceptions); // // } finally { // parseErrorsOk = false; // } // } }