This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 3c289ff38 ci(binding/java): remove `testWriteFileWithNonAsciiName`
behavior test (#3424)
3c289ff38 is described below
commit 3c289ff38d13e320b0ea9649ba65cdff528ad944
Author: G-XD <[email protected]>
AuthorDate: Mon Oct 30 19:57:52 2023 +0800
ci(binding/java): remove `testWriteFileWithNonAsciiName` behavior test
(#3424)
---
.../opendal/test/OperatorUtf8DecodeTest.java | 56 ++++++++++++++++++++++
.../opendal/test/behavior/AsyncWriteTest.java | 15 ------
2 files changed, 56 insertions(+), 15 deletions(-)
diff --git
a/bindings/java/src/test/java/org/apache/opendal/test/OperatorUtf8DecodeTest.java
b/bindings/java/src/test/java/org/apache/opendal/test/OperatorUtf8DecodeTest.java
new file mode 100644
index 000000000..c12afe86c
--- /dev/null
+++
b/bindings/java/src/test/java/org/apache/opendal/test/OperatorUtf8DecodeTest.java
@@ -0,0 +1,56 @@
+/*
+ * 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.opendal.test;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import java.nio.file.Path;
+import java.util.HashMap;
+import java.util.Map;
+import org.apache.opendal.BlockingOperator;
+import org.apache.opendal.Metadata;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.io.TempDir;
+
+public class OperatorUtf8DecodeTest {
+ @TempDir
+ private static Path tempDir;
+
+ /**
+ * Write file with non ascii name should succeed.
+ *
+ * @see <a
href="https://github.com/apache/incubator-opendal/issues/3194">More
information</a>
+ */
+ @Test
+ public void testWriteFileWithNonAsciiName() {
+ final Map<String, String> conf = new HashMap<>();
+ conf.put("root", tempDir.toString());
+
+ try (final BlockingOperator op = BlockingOperator.of("fs", conf)) {
+ final String path = "βπ±δΈζ.test";
+ final byte[] content = "βπ±δΈζ".getBytes();
+ op.write(path, content);
+ final Metadata meta = op.stat(path);
+ assertThat(meta.isFile()).isTrue();
+ assertThat(meta.getContentLength()).isEqualTo(content.length);
+
+ op.delete(path);
+ }
+ }
+}
diff --git
a/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
b/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
index 7297b2345..2354152c1 100644
---
a/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
+++
b/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
@@ -86,19 +86,4 @@ public class AsyncWriteTest extends BehaviorTestBase {
op().delete(path).join();
}
-
- /**
- * Write file with non ascii name should succeed.
- */
- @Test
- public void testWriteFileWithNonAsciiName() {
- final String path = "βπ±δΈζ.test";
- final byte[] content = generateBytes();
- op().write(path, content).join();
- final Metadata meta = op().stat(path).join();
- assertThat(meta.isFile()).isTrue();
- assertThat(meta.getContentLength()).isEqualTo(content.length);
-
- op().delete(path).join();
- }
}