blob: 009e05d6a316f2a7cc38600f38f56d44d802d28b [file] [log] [blame]
// Copyright (C) 2019 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.acceptance.ssh;
import static java.util.stream.Collectors.joining;
import com.google.common.collect.ImmutableListMultimap;
import com.google.common.io.CharStreams;
import com.google.gerrit.acceptance.AbstractPluginFieldsTest;
import com.google.gerrit.acceptance.UseSsh;
import com.google.gerrit.common.Nullable;
import com.google.gerrit.entities.Change;
import com.google.gerrit.extensions.common.PluginDefinedInfo;
import com.google.gerrit.server.query.change.OutputStreamQuery;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Stream;
import org.junit.Test;
@UseSsh
public class PluginChangeFieldsIT extends AbstractPluginFieldsTest {
// No tests for getting a single change over SSH, since the only API is the query API.
private static final Gson GSON = OutputStreamQuery.GSON;
@Test
public void querySingleChangeWithBulkAttribute() throws Exception {
getSingleChangeWithPluginDefinedBulkAttribute(
id -> pluginInfosFromList(adminSshSession.exec(changeQueryCmd(id))));
}
@Test
public void queryPluginDefinedAttributeChangeWithOption() throws Exception {
getChangeWithPluginDefinedBulkAttributeOption(
id -> pluginInfosFromList(adminSshSession.exec(changeQueryCmd(id))),
(id, opts) -> pluginInfosFromList(adminSshSession.exec(changeQueryCmd(id, opts))));
}
@Test
public void queryMultipleChangesWithPluginDefinedAttribute() throws Exception {
getMultipleChangesWithPluginDefinedBulkAttribute(
() -> pluginInfosFromList(adminSshSession.exec("gerrit query --format json status:open")));
}
@Test
public void queryChangesByCommitMessageWithPluginDefinedBulkAttribute() throws Exception {
getChangesByCommitMessageWithPluginDefinedBulkAttribute(
() -> pluginInfosFromList(adminSshSession.exec("gerrit query --format json status:open")));
}
@Test
public void getMultipleChangesWithPluginDefinedAttributeInSingleCall() throws Exception {
getMultipleChangesWithPluginDefinedBulkAttributeInSingleCall(
() -> pluginInfosFromList(adminSshSession.exec("gerrit query --format json status:open")));
}
@Test
public void getChangeWithPluginDefinedException() throws Exception {
getChangeWithPluginDefinedBulkAttributeWithException(
id -> pluginInfosFromList(adminSshSession.exec(changeQueryCmd(id))));
}
private String changeQueryCmd(Change.Id id) {
return changeQueryCmd(id, ImmutableListMultimap.of());
}
private String changeQueryCmd(Change.Id id, ImmutableListMultimap<String, String> pluginOptions) {
return "gerrit query --format json "
+ pluginOptions.entries().stream()
.flatMap(e -> Stream.of("--" + e.getKey(), e.getValue()))
.collect(joining(" "))
+ " "
+ id;
}
@Nullable
private static Map<Change.Id, List<PluginDefinedInfo>> pluginInfosFromList(String sshOutput)
throws Exception {
List<Map<String, Object>> changeAttrs = getChangeAttrs(sshOutput);
return getPluginInfosFromChangeInfos(GSON, changeAttrs);
}
private static List<Map<String, Object>> getChangeAttrs(String sshOutput) throws Exception {
List<Map<String, Object>> changeAttrs = new ArrayList<>();
for (String line : CharStreams.readLines(new StringReader(sshOutput))) {
Map<String, Object> changeAttr =
GSON.fromJson(line, new TypeToken<Map<String, Object>>() {}.getType());
if (!"stats".equals(changeAttr.get("type"))) {
changeAttrs.add(changeAttr);
}
}
return changeAttrs;
}
}