/* * Copyright 2000-2013 JetBrains s.r.o. * Copyright 2014-2014 AS3Boyan * Copyright 2014-2014 Elias Ku * * 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 com.intellij.plugins.haxe.ide; import com.intellij.codeInsight.lookup.Lookup; import com.intellij.codeInsight.lookup.LookupManager; import com.intellij.codeInsight.lookup.impl.LookupImpl; import com.intellij.codeInsight.template.impl.actions.ListTemplatesAction; import com.intellij.openapi.command.WriteCommandAction; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.project.Project; import com.intellij.plugins.haxe.HaxeCodeInsightFixtureTestCase; import com.intellij.plugins.haxe.HaxeFileType; import com.intellij.psi.codeStyle.CodeStyleManager; import com.intellij.psi.codeStyle.CodeStyleSettings; import com.intellij.psi.codeStyle.CodeStyleSettingsManager; /** * @author: Fedor.Korotkov */ public class HaxeLiveTemplatesTest extends HaxeCodeInsightFixtureTestCase { @Override protected String getBasePath() { return "/liveTemplates/"; } @Override protected void setUp() throws Exception { super.setUp(); setTestStyleSettings(); } private void setTestStyleSettings() { Project project = getProject(); CodeStyleSettings currSettings = CodeStyleSettingsManager.getSettings(project); assertNotNull(currSettings); CodeStyleSettings tempSettings = currSettings.clone(); CodeStyleSettings.IndentOptions indentOptions = tempSettings.getIndentOptions(HaxeFileType.HAXE_FILE_TYPE); indentOptions.INDENT_SIZE = 2; assertNotNull(indentOptions); CodeStyleSettingsManager.getInstance(project).setTemporarySettings(tempSettings); } public static void expandTemplate(final Editor editor) { new ListTemplatesAction().actionPerformedImpl(editor.getProject(), editor); ((LookupImpl)LookupManager.getActiveLookup(editor)).finishLookup(Lookup.NORMAL_SELECT_CHAR); } private void doTest(String... files) throws Exception { myFixture.configureByFiles(files); //CommandProcessor.getInstance().executeCommand(getProject(), new Runnable() { // @Override // public void run() { // expandTemplate(myFixture.getEditor()); // CodeStyleManager.getInstance(myFixture.getProject()).reformat(myFixture.getFile()); // } //}, null, null); WriteCommandAction.runWriteCommandAction(getProject(), new Runnable() { @Override public void run() { expandTemplate(myFixture.getEditor()); CodeStyleManager.getInstance(myFixture.getProject()).reformat(myFixture.getFile()); } }); myFixture.getEditor().getSelectionModel().removeSelection(); myFixture.checkResultByFile(getTestName(false) + "_after.hx"); } public void testIter() throws Throwable { doTest("Iter.hx", "Array.hx"); } public void testItar() throws Throwable { doTest("Itar.hx", "Array.hx"); } }