summaryrefslogtreecommitdiff
path: root/test/android_src/org
diff options
context:
space:
mode:
Diffstat (limited to 'test/android_src/org')
-rw-r--r--test/android_src/org/apache/test/android/AndroidFileUtils.java86
-rw-r--r--test/android_src/org/apache/test/android/TestLogger.java162
2 files changed, 248 insertions, 0 deletions
diff --git a/test/android_src/org/apache/test/android/AndroidFileUtils.java b/test/android_src/org/apache/test/android/AndroidFileUtils.java
new file mode 100644
index 0000000..76c1ec2
--- /dev/null
+++ b/test/android_src/org/apache/test/android/AndroidFileUtils.java
@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * 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 org.apache.test.android;
+
+import org.junit.Assert;
+
+import java.io.File;
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.net.URL;
+import java.nio.file.Files;
+import java.nio.file.Path;
+
+public class AndroidFileUtils {
+
+ private static final Path TEMP_DIR;
+
+ static {
+ try {
+ TEMP_DIR = Files.createTempDirectory(AndroidFileUtils.class.getName());
+ } catch (IOException e) {
+ throw new UncheckedIOException(e);
+ }
+ }
+
+ /**
+ * Returns the URL string to the jar resource for a given input file path.
+ * @return null if the input file is not found.
+ */
+ public static URL getInputFileUrl(String path) {
+ Path p = Path.of(path);
+ // Ignore the parts for the current directory.
+ while (true) {
+ if (p.getNameCount() == 0) {
+ return null;
+ }
+ String first = p.getName(0).toString();
+ if (!first.isEmpty() && !first.equals(".")) {
+ break;
+ }
+ p = p.subpath(1, p.getNameCount());
+ }
+ String first = p.getName(0).toString();
+ if (!first.equals("inputs")) {
+ return null;
+ }
+ p = p.subpath(1, p.getNameCount());
+ p = Path.of("api", p.toString());
+ return AndroidFileUtils.class.getClassLoader().getResource(p.toString());
+ }
+
+ /**
+ * Returns the URL string to the jar resource for a given input file path.
+ * @return null if the input file is not found.
+ */
+ public static String getInputFileUrlString(String path) {
+ URL url = getInputFileUrl(path);
+ return url != null ? url.toExternalForm() : null;
+ }
+ /**
+ * Return a File object to the path, and created all directories along the path.
+ * @throws AssertionError if the directories can't be created.
+ */
+ public static File getOutputFile(String relativePath) {
+ File target = TEMP_DIR.resolve(relativePath).toAbsolutePath().toFile();
+ File parent = target.getParentFile();
+ if (!parent.exists()) {
+ Assert.assertTrue(parent.mkdirs());
+ }
+ return target;
+ }
+}
diff --git a/test/android_src/org/apache/test/android/TestLogger.java b/test/android_src/org/apache/test/android/TestLogger.java
new file mode 100644
index 0000000..a74bf9a
--- /dev/null
+++ b/test/android_src/org/apache/test/android/TestLogger.java
@@ -0,0 +1,162 @@
+/*
+ * Copyright (C) 2023 The Android Open Source Project
+ *
+ * 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 org.apache.test.android;
+
+import java.util.Hashtable;
+import java.util.Properties;
+
+/**
+ * Logs messages into Android's logcat and throws any reported Throwable directly, because
+ * we run the tests as JUnit tests on Android.
+ */
+public class TestLogger implements org.apache.qetest.Logger {
+ private Properties prop = new Properties();
+
+ @Override
+ public String getDescription() {
+ return "Android test logger printing information into logcat.";
+ }
+
+ @Override
+ public String[][] getParameterInfo() {
+ return new String[0][];
+ }
+
+ @Override
+ public Properties getProperties() {
+ return prop;
+ }
+
+ @Override
+ public void setProperties(Properties p) {
+ prop = (Properties) p.clone();
+ }
+
+ @Override
+ public boolean initialize(Properties p) {
+ setProperties(p);
+
+ return true;
+ }
+
+ @Override
+ public boolean isReady() {
+ return true;
+ }
+
+ @Override
+ public void flush() {}
+
+ @Override
+ public void close() {}
+
+ @Override
+ public void testFileInit(String name, String comment) {
+ logMsg(INFOMSG, "testFileInit: " + name + " - comment: " + comment);
+ }
+
+ @Override
+ public void testFileClose(String msg, String result) {
+ logMsg(INFOMSG, "testFileClose" + msg + " - result: " + result);
+ }
+
+ @Override
+ public void testCaseInit(String comment) {
+ logMsg(INFOMSG, comment);
+ }
+
+ @Override
+ public void testCaseClose(String msg, String result) {
+ logMsg(CRITICALMSG, "testCaseClose" + msg + " - result: " + result);
+ }
+
+ @Override
+ public void logMsg(int level, String msg) {
+ switch (level) {
+ case ERRORMSG, FAILSONLY -> System.logE(msg);
+ case CRITICALMSG, WARNINGMSG -> System.logW(msg);
+ default -> System.logI(msg);
+ }
+ }
+
+ @Override
+ public void logArbitrary(int level, String msg) {
+ logMsg(level, msg);
+ }
+
+ @Override
+ public void logStatistic(int level, long lVal, double dVal, String msg) {
+ logMsg(level, "logStatistic(lVal: " + lVal + ", dVal:" + dVal + "): " + msg);
+ }
+
+ @Override
+ public void logThrowable(int level, Throwable throwable, String msg) {
+ logMsg(level, msg);
+ throw new AssertionError(msg, throwable);
+ }
+
+ @Override
+ public void logElement(int level, String element, Hashtable attrs, Object msg) {
+ logMsg(level, msg + " - element: " + element + "\nAttributes below:\n" + attrs);
+
+ }
+
+ @Override
+ public void logHashtable(int level, Hashtable hash, String msg) {
+ logMsg(level, msg + "\nTable below:\n" + hash);
+ }
+
+ @Override
+ public void checkPass(String comment) {
+ logMsg(INFOMSG, "checkPass: " + comment);
+ }
+
+ @Override
+ public void checkAmbiguous(String comment) {
+ logMsg(INFOMSG, "checkAmbiguous: " + comment);
+ }
+
+ @Override
+ public void checkFail(String comment) {
+ logMsg(FAILSONLY, "checkFail: " + comment);
+ }
+
+ @Override
+ public void checkErr(String comment) {
+ logMsg(ERRORMSG, "checkErr: " + comment);
+ }
+
+ @Override
+ public void checkPass(String comment, String id) {
+ logMsg(INFOMSG, "checkPass (" + id + "): " + comment);
+ }
+
+ @Override
+ public void checkAmbiguous(String comment, String id) {
+ logMsg(INFOMSG, "checkAmbiguous (" + id + "): " + comment);
+ }
+
+ @Override
+ public void checkFail(String comment, String id) {
+ logMsg(FAILSONLY, "checkFail (" + id + "): " + comment);
+ }
+
+ @Override
+ public void checkErr(String comment, String id) {
+ logMsg(ERRORMSG, "checkErr (" + id + "): " + comment);
+ }
+}