blob: 4f7402a3471a76a19e00ede9db07c59924911fef [file] [log] [blame]
// Copyright (C) 2024 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 com.google.gerrit.server.plugins;
import static com.google.common.truth.Truth.assertThat;
import static java.nio.charset.StandardCharsets.UTF_8;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Sets;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.Map;
import java.util.TreeSet;
import java.util.jar.Manifest;
import org.junit.Test;
public class PluginOrderComparatorTest {
private static final String API_MODULE = "Gerrit-ApiModule: com.google.gerrit.UnitTest";
private static final Path FIRST_PLUGIN_PATH = Paths.get("01-first.jar");
private static final Path SECOND_PLUGIN_PATH = Paths.get("20-second.jar");
private static final Path THIRD_PLUGIN_PATH = Paths.get("30-third.jar");
private static final Path LAST_PLUGIN_PATH = Paths.get("99-last.jar");
private static final Map.Entry<String, Path> FIRST_ENTRY = Map.entry("first", FIRST_PLUGIN_PATH);
private static final Map.Entry<String, Path> SECOND_ENTRY =
Map.entry("second", SECOND_PLUGIN_PATH);
private static final Map.Entry<String, Path> THIRD_ENTRY = Map.entry("third", THIRD_PLUGIN_PATH);
private static final Map.Entry<String, Path> LAST_ENTRY = Map.entry("last", LAST_PLUGIN_PATH);
private static final Manifest EMPTY_MANIFEST = newManifest("");
private static final Manifest API_MODULE_MANIFEST = newManifest(API_MODULE);
@Test
public void shouldOrderPluginsBasedOnFileName() {
PluginOrderComparator comparator =
new PluginOrderComparator(ImmutableList.of(), pluginPath -> EMPTY_MANIFEST);
assertOrder(comparator, List.of(FIRST_ENTRY, LAST_ENTRY), List.of(FIRST_ENTRY, LAST_ENTRY));
}
@Test
public void shouldReturnPluginWithApiModuleFirst() {
// return empty manifest for the first plugin and manifest with ApiModule for the last
PluginOrderComparator.ManifestLoader loader = customLoader(EMPTY_MANIFEST, API_MODULE_MANIFEST);
PluginOrderComparator comparator = new PluginOrderComparator(ImmutableList.of(), loader);
assertOrder(comparator, List.of(FIRST_ENTRY, LAST_ENTRY), List.of(LAST_ENTRY, FIRST_ENTRY));
}
@Test
public void shouldUseOrderFromOverrideListBasedOnFileName() {
ImmutableList<String> pluginOrderOverrides = ImmutableList.of("last", "first");
PluginOrderComparator comparator =
new PluginOrderComparator(pluginOrderOverrides, pluginPath -> EMPTY_MANIFEST);
assertOrder(comparator, List.of(FIRST_ENTRY, LAST_ENTRY), List.of(LAST_ENTRY, FIRST_ENTRY));
}
@Test
public void shouldCombineOrderOverridesAndNaturalFileNaming() {
ImmutableList<String> pluginOrderOverrides = ImmutableList.of("third", "second");
PluginOrderComparator comparator =
new PluginOrderComparator(pluginOrderOverrides, pluginPath -> EMPTY_MANIFEST);
assertOrder(
comparator,
List.of(FIRST_ENTRY, SECOND_ENTRY, THIRD_ENTRY, LAST_ENTRY),
List.of(THIRD_ENTRY, SECOND_ENTRY, FIRST_ENTRY, LAST_ENTRY));
}
@Test
public void shouldReturnApiModuleFirstWithOrderOverrides() {
ImmutableList<String> pluginOrderOverrides = ImmutableList.of("third", "second");
PluginOrderComparator.ManifestLoader loader =
pluginPath -> {
if (pluginPath.equals(LAST_PLUGIN_PATH)) {
return API_MODULE_MANIFEST;
}
return EMPTY_MANIFEST;
};
PluginOrderComparator comparator = new PluginOrderComparator(pluginOrderOverrides, loader);
assertOrder(
comparator,
List.of(FIRST_ENTRY, SECOND_ENTRY, THIRD_ENTRY, LAST_ENTRY),
List.of(LAST_ENTRY, THIRD_ENTRY, SECOND_ENTRY, FIRST_ENTRY));
}
private void assertOrder(
PluginOrderComparator comparator,
List<Map.Entry<String, Path>> input,
List<Map.Entry<String, Path>> expected) {
TreeSet<Map.Entry<String, Path>> actual = Sets.newTreeSet(comparator);
actual.addAll(input);
assertThat(List.copyOf(actual)).isEqualTo(expected);
}
private static Manifest newManifest(String content) {
String withEmptyLine = content + "\n";
try {
Manifest manifest = new Manifest();
manifest.read(new ByteArrayInputStream(withEmptyLine.getBytes(UTF_8)));
return manifest;
} catch (IOException e) {
throw new RuntimeException(e);
}
}
private PluginOrderComparator.ManifestLoader customLoader(
Manifest firstManifest, Manifest secondManifest) {
return pluginPath -> {
if (pluginPath.equals(FIRST_PLUGIN_PATH)) {
return firstManifest;
}
if (pluginPath.equals(LAST_PLUGIN_PATH)) {
return secondManifest;
}
throw new IllegalArgumentException("unsupported path: " + pluginPath);
};
}
}