use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method unhandledCheckedExceptionForJvmConstructor.
@Test
public void unhandledCheckedExceptionForJvmConstructor() {
this.builder.setSeverity(IssueCodes.UNHANDLED_EXCEPTION, "error");
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("\t");
_builder.append("new() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("this|(\'lalala\')");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.newLine();
_builder.append("\t");
_builder.append("new(String foo) throws Exception {");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("Foo.xtend", _builder).assertIssueCodes(IssueCodes.UNHANDLED_EXCEPTION).assertResolutionLabels("Add throws declaration");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("new() throws Exception {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("this(\'lalala\')");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("new(String foo) throws Exception {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_assertResolutionLabels.assertModelAfterQuickfix("Add throws declaration", _builder_1);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method missingOperatorOtherClass.
@Test
public void missingOperatorOtherClass() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("}");
_builder.newLine();
_builder.newLine();
_builder.append("class Bar {");
_builder.newLine();
_builder.append("\t");
_builder.append("def bar(Foo foo) {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("foo *| this");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("Foo.xtend", _builder).assertIssueCodes(Diagnostic.LINKING_DIAGNOSTIC).assertResolutionLabels("Create extension method \'operator_multiply(Foo, Bar)\'", "Create method \'operator_multiply(Bar)\' in \'Foo\'", "Change to \'+\'");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("class Bar {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def bar(Foo foo) {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("foo * this");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def operator_multiply(Foo foo, Bar bar) {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append(QuickfixTest.defaultBody, "\t\t");
_builder_1.newLineIfNotEmpty();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
QuickfixTestBuilder _assertModelAfterQuickfix = _assertResolutionLabels.assertModelAfterQuickfix("Create extension method \'operator_multiply(Foo, Bar)\'", _builder_1);
StringConcatenation _builder_2 = new StringConcatenation();
_builder_2.append("class Foo {");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("def operator_multiply(Bar bar) {");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append(QuickfixTest.defaultBody, "\t\t");
_builder_2.newLineIfNotEmpty();
_builder_2.append("\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.newLine();
_builder_2.append("}");
_builder_2.newLine();
_builder_2.newLine();
_builder_2.append("class Bar {");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("def bar(Foo foo) {");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("foo * this");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("}");
_builder_2.newLine();
_assertModelAfterQuickfix.assertModelAfterQuickfix("Create method \'operator_multiply(Bar)\' in \'Foo\'", _builder_2);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method fixRedundantCase_03.
@Test
public void fixRedundantCase_03() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("\t");
_builder.append("def foo() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("switch i : 1 {");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("case 1,");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("cas|e 2,");
_builder.newLine();
_builder.append("\t\t\t");
_builder.append("default: 1");
_builder.newLine();
_builder.append("\t\t");
_builder.append("}");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("Foo.xtend", _builder).assertIssueCodes(IssueCodes.REDUNDANT_CASE).assertResolutionLabels("Remove redundant case.", "Assign empty expression.");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def foo() {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("switch i : 1 {");
_builder_1.newLine();
_builder_1.append("\t\t\t");
_builder_1.append("case 1,");
_builder_1.newLine();
_builder_1.append("\t\t\t");
_builder_1.newLine();
_builder_1.append("\t\t\t");
_builder_1.append("default: 1");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
QuickfixTestBuilder _assertModelAfterQuickfix = _assertResolutionLabels.assertModelAfterQuickfix("Remove redundant case.", _builder_1);
StringConcatenation _builder_2 = new StringConcatenation();
_builder_2.append("class Foo {");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("def foo() {");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("switch i : 1 {");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.append("case 1,");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.append("case 2: {");
_builder_2.newLine();
_builder_2.append("\t\t\t\t");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.append("default: 1");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("}");
_builder_2.newLine();
_assertModelAfterQuickfix.assertModelAfterQuickfix("Assign empty expression.", _builder_2);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method missingClassAndConstructor.
@Test
public void missingClassAndConstructor() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.append("\t");
_builder.append("def foo() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("new Bar|");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabelsSubset = this.builder.create("Foo.xtend", _builder).assertIssueCodes(Diagnostic.LINKING_DIAGNOSTIC).assertResolutionLabelsSubset("Create Xtend class \'Bar\'", "Create Java class \'Bar\'", "Create local Xtend class \'Bar\'");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def foo() {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("new Bar");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("class Bar {");
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
_assertResolutionLabelsSubset.assertModelAfterQuickfix("Create local Xtend class \'Bar\'", _builder_1);
}
use of org.eclipse.xtend.ide.tests.quickfix.QuickfixTestBuilder in project xtext-xtend by eclipse.
the class QuickfixTest method unreachableIfBlock.
@Test
public void unreachableIfBlock() {
StringConcatenation _builder = new StringConcatenation();
_builder.append("class Foo {");
_builder.newLine();
_builder.newLine();
_builder.append("\t");
_builder.append("def foo() {");
_builder.newLine();
_builder.append("\t\t");
_builder.append("val x = new Object");
_builder.newLine();
_builder.append("\t\t");
_builder.append("if (x instanceof Exception) {");
_builder.newLine();
_builder.append("\t\t\t");
_builder.newLine();
_builder.append("\t\t");
_builder.append("} else if (x instanceof java.io.IOExc|eption) {");
_builder.newLine();
_builder.append("\t\t\t");
_builder.newLine();
_builder.append("\t\t");
_builder.append("} else if (x instanceof java.io.FileNotFoundException) {");
_builder.newLine();
_builder.append("\t\t\t");
_builder.newLine();
_builder.append("\t\t");
_builder.append("}");
_builder.newLine();
_builder.append("\t");
_builder.append("}");
_builder.newLine();
_builder.newLine();
_builder.append("}");
_builder.newLine();
QuickfixTestBuilder _assertResolutionLabels = this.builder.create("Foo.xtend", _builder).assertIssueCodes(IssueCodes.UNREACHABLE_IF_BLOCK).assertResolutionLabels("Remove if block", "Move if block up");
StringConcatenation _builder_1 = new StringConcatenation();
_builder_1.append("class Foo {");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("def foo() {");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("val x = new Object");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("if (x instanceof Exception) {");
_builder_1.newLine();
_builder_1.append("\t\t\t");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("} else if (x instanceof java.io.FileNotFoundException) {");
_builder_1.newLine();
_builder_1.append("\t\t\t");
_builder_1.newLine();
_builder_1.append("\t\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.append("\t");
_builder_1.append("}");
_builder_1.newLine();
_builder_1.newLine();
_builder_1.append("}");
_builder_1.newLine();
QuickfixTestBuilder _assertModelAfterQuickfix = _assertResolutionLabels.assertModelAfterQuickfix("Remove if block", _builder_1);
StringConcatenation _builder_2 = new StringConcatenation();
_builder_2.append("class Foo {");
_builder_2.newLine();
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("def foo() {");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("val x = new Object");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("if (x instanceof java.io.IOException) {");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("} else if (x instanceof Exception) {");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("} else if (x instanceof java.io.FileNotFoundException) {");
_builder_2.newLine();
_builder_2.append("\t\t\t");
_builder_2.newLine();
_builder_2.append("\t\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.append("\t");
_builder_2.append("}");
_builder_2.newLine();
_builder_2.newLine();
_builder_2.append("}");
_builder_2.newLine();
_assertModelAfterQuickfix.assertModelAfterQuickfix("Move if block up", _builder_2);
}
Aggregations