blob: 7dc8e6ca6e833eee5149188d39e49a58fa505608 [file] [log] [blame]
/*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.plugins.groovy.intentions
import com.intellij.codeInsight.intention.IntentionAction
import com.intellij.psi.impl.source.PostprocessReformattingAspect
import org.jetbrains.plugins.groovy.util.TestUtils
/**
* @author Max Medvedev
*/
public class AddConstructorMatchingSuperTest extends GrIntentionTestCase {
private static final String HINT = "Create constructor matching super"
AddConstructorMatchingSuperTest() {
super(HINT)
}
final String basePath = TestUtils.testDataPath + 'intentions/constructorMatchingSuper/'
void testGroovyToGroovy() {
doTextTest('''\
class Base {
Base(int p, @Anno int x) throws Exception {}
}
class Derived exten<caret>ds Base {
}
''', '''\
class Base {
Base(int p, @Anno int x) throws Exception {}
}
class Derived extends Base {
<caret>Derived(int p, @Anno int x) throws Exception {
super(p, x)
}
}
''')
}
void testJavaToGroovy() {
myFixture.addClass('''\
class Base {
Base(int p, @Anno int x) throws Exception {}
}
''')
doTextTest('''\
class Derived exten<caret>ds Base {
}
''', '''\
class Derived extends Base {
<caret>def Derived(int p, @Anno int x) throws Exception {
super(p, x)
}
}
''')
}
void testGroovyToJava() {
myFixture.addClass('''\
class Base {
Base(int p, @Override int x) throws Exception {}
}
''')
myFixture.configureByText("a.java", '''\
class Derived exten<caret>ds Base {
}
''')
final List<IntentionAction> list = myFixture.filterAvailableIntentions(HINT)
myFixture.launchAction(assertOneElement(list))
PostprocessReformattingAspect.getInstance(project).doPostponedFormatting()
myFixture.checkResult('''\
class Derived extends Base {
<caret>Derived(int p, @Override int x) throws Exception {
super(p, x);
}
}
''')
}
}