mirror of
https://github.com/google/nomulus
synced 2026-03-27 04:45:14 +00:00
Make the necessary changes for the code base to compile with JDK 21. Other changes: 1. Upgraded testcontainer version and the SQL image version (to be the same as what we use in Cloud SQL). This led to some schema changes and also changed the order of results in some test queries (for the better I think, as the new order appears to be alphabetical). 2. Remove dependency on Truth8, which is deprecated. 3. Enable parallel Gradle task execution and greatly increased the number of parallel tests in standardTest. Removed outcastTest.
59 lines
2.2 KiB
Java
59 lines
2.2 KiB
Java
// Copyright 2017 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// 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 google.registry.testing;
|
|
|
|
import com.github.benmanes.caffeine.cache.Caffeine;
|
|
import com.github.benmanes.caffeine.cache.LoadingCache;
|
|
import com.google.common.flogger.FluentLogger;
|
|
import java.io.IOException;
|
|
import java.util.concurrent.ExecutionException;
|
|
import javax.annotation.concurrent.ThreadSafe;
|
|
|
|
/** Utility class for getting system information in tests. */
|
|
@ThreadSafe
|
|
public final class SystemInfo {
|
|
|
|
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
|
|
|
|
private static final LoadingCache<String, Boolean> hasCommandCache =
|
|
Caffeine.newBuilder()
|
|
.build(
|
|
cmd -> {
|
|
try {
|
|
Process pid = Runtime.getRuntime().exec(cmd.split(" "));
|
|
pid.getOutputStream().close();
|
|
pid.waitFor();
|
|
} catch (IOException e) {
|
|
logger.atWarning().withCause(e).log("%s command not available.", cmd);
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
/**
|
|
* Returns {@code true} if system command can be run from the path.
|
|
*
|
|
* <p><b>Warning:</b> The command is actually run! So there could be side effects. You might need
|
|
* to specify a version flag or something. Return code is ignored.
|
|
*
|
|
* <p>This result is a memoized. If multiple threads try to get the same result at once, the heavy
|
|
* lifting will only be performed by the first thread and the rest will wait.
|
|
*/
|
|
public static boolean hasCommand(String cmd) throws ExecutionException {
|
|
return hasCommandCache.get(cmd);
|
|
}
|
|
|
|
}
|