blob: 614ce800423e0c6f5a33d44aa95d86c3ec796cfb [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.rest.config;
import static com.google.common.truth.Truth.assertThat;
import static com.google.gerrit.acceptance.testsuite.project.TestProjectUpdate.block;
import static com.google.gerrit.server.group.SystemGroupBackend.REGISTERED_USERS;
import com.google.common.collect.ImmutableSet;
import com.google.gerrit.acceptance.AbstractDaemonTest;
import com.google.gerrit.acceptance.ChangeIndexedCounter;
import com.google.gerrit.acceptance.ExtensionRegistry;
import com.google.gerrit.acceptance.ExtensionRegistry.Registration;
import com.google.gerrit.acceptance.testsuite.project.ProjectOperations;
import com.google.gerrit.entities.Permission;
import com.google.gerrit.extensions.common.ChangeInfo;
import com.google.gerrit.server.restapi.config.IndexChanges;
import com.google.inject.Inject;
import org.junit.Test;
public class IndexChangesIT extends AbstractDaemonTest {
@Inject private ProjectOperations projectOperations;
@Inject private ExtensionRegistry extensionRegistry;
@Test
public void indexRequestFromNonAdminRejected() throws Exception {
ChangeIndexedCounter changeIndexedCounter = new ChangeIndexedCounter();
try (Registration registration =
extensionRegistry.newRegistration().add(changeIndexedCounter)) {
String changeId = createChange().getChangeId();
IndexChanges.Input in = new IndexChanges.Input();
in.changes = ImmutableSet.of(changeId);
changeIndexedCounter.clear();
userRestSession.post("/config/server/index.changes", in).assertForbidden();
assertThat(changeIndexedCounter.getCount(info(changeId))).isEqualTo(0);
}
}
@Test
public void indexVisibleChange() throws Exception {
ChangeIndexedCounter changeIndexedCounter = new ChangeIndexedCounter();
try (Registration registration =
extensionRegistry.newRegistration().add(changeIndexedCounter)) {
String changeId = createChange().getChangeId();
IndexChanges.Input in = new IndexChanges.Input();
in.changes = ImmutableSet.of(changeId);
changeIndexedCounter.clear();
adminRestSession.post("/config/server/index.changes", in).assertOK();
assertThat(changeIndexedCounter.getCount(info(changeId))).isEqualTo(1);
}
}
@Test
public void indexNonVisibleChange() throws Exception {
ChangeIndexedCounter changeIndexedCounter = new ChangeIndexedCounter();
try (Registration registration =
extensionRegistry.newRegistration().add(changeIndexedCounter)) {
String changeId = createChange().getChangeId();
ChangeInfo changeInfo = info(changeId);
projectOperations
.project(project)
.forUpdate()
.add(block(Permission.READ).ref("refs/heads/master").group(REGISTERED_USERS))
.update();
IndexChanges.Input in = new IndexChanges.Input();
changeIndexedCounter.clear();
in.changes = ImmutableSet.of(changeId);
adminRestSession.post("/config/server/index.changes", in).assertOK();
assertThat(changeIndexedCounter.getCount(changeInfo)).isEqualTo(1);
}
}
@Test
public void indexMultipleChanges() throws Exception {
ChangeIndexedCounter changeIndexedCounter = new ChangeIndexedCounter();
try (Registration registration =
extensionRegistry.newRegistration().add(changeIndexedCounter)) {
ImmutableSet.Builder<String> changeIds = ImmutableSet.builder();
for (int i = 0; i < 10; i++) {
changeIds.add(createChange().getChangeId());
}
IndexChanges.Input in = new IndexChanges.Input();
in.changes = changeIds.build();
changeIndexedCounter.clear();
adminRestSession.post("/config/server/index.changes", in).assertOK();
for (String changeId : in.changes) {
assertThat(changeIndexedCounter.getCount(info(changeId))).isEqualTo(1);
}
}
}
}