This is an automated email from the ASF dual-hosted git repository.
jerrypeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 5a10c4a add RuntimeUtils test (#4579)
5a10c4a is described below
commit 5a10c4ace49feb7978e2c3f4cb45aa2be7408a67
Author: Boyang Jerry Peng <[email protected]>
AuthorDate: Fri Jun 28 10:21:44 2019 -0700
add RuntimeUtils test (#4579)
---
.../pulsar/functions/runtime/RuntimeUtilsTest.java | 46 ++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git
a/pulsar-functions/runtime/src/test/java/org/apache/pulsar/functions/runtime/RuntimeUtilsTest.java
b/pulsar-functions/runtime/src/test/java/org/apache/pulsar/functions/runtime/RuntimeUtilsTest.java
new file mode 100644
index 0000000..18aa2cb
--- /dev/null
+++
b/pulsar-functions/runtime/src/test/java/org/apache/pulsar/functions/runtime/RuntimeUtilsTest.java
@@ -0,0 +1,46 @@
+/**
+ * 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.pulsar.functions.runtime;
+
+import org.testng.Assert;
+import org.testng.annotations.Test;
+
+public class RuntimeUtilsTest {
+
+ @Test
+ public void testSplitRuntimeArgs() {
+ String str1 = "-Xms314572800";
+ String[] result = RuntimeUtils.splitRuntimeArgs(str1);
+ Assert.assertEquals(result.length,1);
+ Assert.assertEquals(result[0], str1);
+
+ String str2 = "-Xms314572800 -Dbar=foo";
+ result = RuntimeUtils.splitRuntimeArgs(str2);
+ Assert.assertEquals(result.length,2);
+ Assert.assertEquals(result[0], "-Xms314572800");
+ Assert.assertEquals(result[1], "-Dbar=foo");
+
+ String str3 = "-Xms314572800 -Dbar=foo -Dfoo=\"bar foo\"";
+ result = RuntimeUtils.splitRuntimeArgs(str3);
+ Assert.assertEquals(result.length,3);
+ Assert.assertEquals(result[0], "-Xms314572800");
+ Assert.assertEquals(result[1], "-Dbar=foo");
+ Assert.assertEquals(result[2], "-Dfoo=\"bar foo\"");
+ }
+}