You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/05/29 08:34:29 UTC

[camel-performance-tests] branch main updated: (chores) performance: add new performance test to verify the URISupport

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-performance-tests.git


The following commit(s) were added to refs/heads/main by this push:
     new 28c0a5e  (chores) performance: add new performance test to verify the URISupport
28c0a5e is described below

commit 28c0a5e58927e12eef06e92f27ccc9f125c269bd
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue May 23 17:53:53 2023 +0200

    (chores) performance: add new performance test to verify the URISupport
---
 .../org/apache/camel/itest/jmh/URISupportTest.java | 119 +++++++++++++++++++++
 1 file changed, 119 insertions(+)

diff --git a/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/URISupportTest.java b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/URISupportTest.java
new file mode 100644
index 0000000..801957d
--- /dev/null
+++ b/tests/camel-jmh/src/test/java/org/apache/camel/itest/jmh/URISupportTest.java
@@ -0,0 +1,119 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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.apache.camel.itest.jmh;
+
+import java.io.UnsupportedEncodingException;
+import java.net.URISyntaxException;
+import java.util.concurrent.TimeUnit;
+
+import org.apache.camel.util.URISupport;
+import org.junit.jupiter.api.Test;
+import org.openjdk.jmh.annotations.Benchmark;
+import org.openjdk.jmh.annotations.BenchmarkMode;
+import org.openjdk.jmh.annotations.Measurement;
+import org.openjdk.jmh.annotations.Mode;
+import org.openjdk.jmh.annotations.OutputTimeUnit;
+import org.openjdk.jmh.annotations.Scope;
+import org.openjdk.jmh.annotations.State;
+import org.openjdk.jmh.annotations.Warmup;
+import org.openjdk.jmh.infra.Blackhole;
+import org.openjdk.jmh.results.format.ResultFormatType;
+import org.openjdk.jmh.runner.Runner;
+import org.openjdk.jmh.runner.options.Options;
+import org.openjdk.jmh.runner.options.OptionsBuilder;
+
+@State(Scope.Thread)
+public class URISupportTest {
+
+    private String simpleQueryPart = "?level=INFO&logMask=false&exchangeFormatter=#myFormatter";
+
+    @Test
+    public void launchBenchmark() throws Exception {
+        Options opt = new OptionsBuilder()
+                // Specify which benchmarks to run.
+                // You can be more specific if you'd like to run only one benchmark per test.
+                .include(this.getClass().getName() + ".*")
+                .forks(1)
+                .resultFormat(ResultFormatType.JSON)
+                .result(this.getClass().getSimpleName() + ".jmh.json")
+                .build();
+
+        new Runner(opt).run();
+    }
+
+    // We may need to keep these here: we want to try to prevent constant-folding from kicking in!
+    private String logUri = "log:foo?level=INFO&logMask=false&exchangeFormatter=#myFormatter";
+    private String fastUriWithRaw = "xmpp://camel-user@localhost:123/test-user@localhost?password=RAW(++?w0rd)&serviceName=some chat";
+    private String queryWithRawType1 = "?level=INFO&logMask=false&exchangeFormatter=#myFormatter&password=RAW(++?w0rd)";
+    private String queryWithRawType2 = "?level=INFO&logMask=false&exchangeFormatter=#myFormatter&password=RAW{++?w0rd}";
+    private String queryWithPercent = "?level=INFO&logMask=false&exchangeFormatter=#myFormatter&keyWithPercent=%valueWhatever";
+
+    @OutputTimeUnit(TimeUnit.MICROSECONDS)
+    @Warmup(iterations = 10, batchSize = 5000)
+    @Measurement(iterations = 20, batchSize = 50000)
+    @BenchmarkMode(Mode.SingleShotTime)
+    @Benchmark
+    public void normalizeFastUri(Blackhole bh) throws UnsupportedEncodingException, URISyntaxException {
+        bh.consume(URISupport.normalizeUri(logUri));
+    }
+
+    @OutputTimeUnit(TimeUnit.MICROSECONDS)
+    @Warmup(iterations = 10, batchSize = 5000)
+    @Measurement(iterations = 20, batchSize = 50000)
+    @BenchmarkMode(Mode.SingleShotTime)
+    @Benchmark
+    public void normalizeFastUriWithRAW(Blackhole bh) throws UnsupportedEncodingException, URISyntaxException {
+        bh.consume(URISupport.normalizeUri(fastUriWithRaw));
+    }
+
+    @OutputTimeUnit(TimeUnit.MICROSECONDS)
+    @Warmup(iterations = 10, batchSize = 5000)
+    @Measurement(iterations = 20, batchSize = 50000)
+    @BenchmarkMode(Mode.SingleShotTime)
+    @Benchmark
+    public void parseQuery(Blackhole bh) throws URISyntaxException {
+        bh.consume(URISupport.parseQuery(simpleQueryPart));
+    }
+
+    @OutputTimeUnit(TimeUnit.MICROSECONDS)
+    @Warmup(iterations = 10, batchSize = 5000)
+    @Measurement(iterations = 20, batchSize = 50000)
+    @BenchmarkMode(Mode.SingleShotTime)
+    @Benchmark
+    public void parseQueryWithRAW1(Blackhole bh) throws URISyntaxException {
+        bh.consume(URISupport.parseQuery(queryWithRawType1));
+    }
+
+    @OutputTimeUnit(TimeUnit.MICROSECONDS)
+    @Warmup(iterations = 10, batchSize = 5000)
+    @Measurement(iterations = 20, batchSize = 50000)
+    @BenchmarkMode(Mode.SingleShotTime)
+    @Benchmark
+    public void parseQueryWithRAW2(Blackhole bh) throws URISyntaxException {
+        bh.consume(URISupport.parseQuery(queryWithRawType2));
+    }
+
+    @OutputTimeUnit(TimeUnit.MICROSECONDS)
+    @Warmup(iterations = 10, batchSize = 5000)
+    @Measurement(iterations = 20, batchSize = 50000)
+    @BenchmarkMode(Mode.SingleShotTime)
+    @Benchmark
+    public void parseQueryWithPercent(Blackhole bh) throws URISyntaxException {
+        bh.consume(URISupport.parseQuery(queryWithPercent));
+    }
+}