Files
openide/plugins/properties/tests/testSrc/com/intellij/lang/properties/PropertiesEnterTest.java
Nikita Kudrin cdf91bf213 [benchmarks] Renaming PerformanceTest* => Benchmark*
GitOrigin-RevId: 9963b84d51e1062acc262a8d3d3de1409a708e3b
2024-07-23 18:20:01 +00:00

62 lines
2.2 KiB
Java

/*
* Copyright 2000-2015 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 com.intellij.lang.properties;
import com.intellij.openapi.application.PluginPathManager;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.psi.PsiDocumentManager;
import com.intellij.testFramework.LightPlatformCodeInsightTestCase;
import com.intellij.tools.ide.metrics.benchmark.Benchmark;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
public class PropertiesEnterTest extends LightPlatformCodeInsightTestCase {
@NonNls private static final String BASE_PATH = "/propertiesFile/enter/";
@NotNull
@Override
protected String getTestDataPath() {
return PluginPathManager.getPluginHomePath("properties") + "/tests/testData";
}
private void typeEnter() {
type('\n');
}
public void testEndLine() { doTest(); }
public void testComment() { doTest(); }
public void testKey() { doTest(); }
public void testValue() { doTest(); }
public void testBackslash() { doTest(); }
public void testBeforeComment() { doTest(); }
public void testPerformance() {
String line = "some.relatively.long.property.name=And here's some property value for that really unique key, nice to have\n";
String text = StringUtil.repeat(line, 20000) + "<caret>\n" + StringUtil.repeat(line, 10000);
configureFromFileText("performance.properties", text);
Benchmark.newBenchmark("Property files editing", () -> {
type("aaaa=bbb");
PsiDocumentManager.getInstance(getProject()).commitAllDocuments();
}).start();
}
private void doTest() {
configureByFile(BASE_PATH + getTestName(false)+".properties");
typeEnter();
checkResultByFile(BASE_PATH + getTestName(false)+"_after.properties");
}
}