blob: fbb4f1de77d85c03b99ea0bc5b9336a891f011ce [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.plugins.checks.acceptance.api;
import static com.google.common.truth.Truth.assertThat;
import com.google.gerrit.acceptance.testsuite.request.RequestScopeOperations;
import com.google.gerrit.extensions.restapi.AuthException;
import com.google.gerrit.extensions.restapi.BadRequestException;
import com.google.gerrit.extensions.restapi.RestApiException;
import com.google.gerrit.extensions.restapi.UnprocessableEntityException;
import com.google.gerrit.plugins.checks.CheckKey;
import com.google.gerrit.plugins.checks.CheckerUuid;
import com.google.gerrit.plugins.checks.acceptance.AbstractCheckersTest;
import com.google.gerrit.plugins.checks.acceptance.testsuite.CheckOperations.PerCheckOperations;
import com.google.gerrit.plugins.checks.acceptance.testsuite.CheckerTestData;
import com.google.gerrit.plugins.checks.api.CheckInfo;
import com.google.gerrit.plugins.checks.api.CheckInput;
import com.google.gerrit.plugins.checks.api.CheckState;
import com.google.gerrit.plugins.checks.api.CheckerStatus;
import com.google.gerrit.reviewdb.client.PatchSet;
import com.google.gerrit.reviewdb.client.Project;
import com.google.gerrit.reviewdb.client.RevId;
import com.google.gerrit.testing.TestTimeUtil;
import com.google.inject.Inject;
import java.sql.Timestamp;
import java.time.Instant;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class CreateCheckIT extends AbstractCheckersTest {
@Inject private RequestScopeOperations requestScopeOperations;
private PatchSet.Id patchSetId;
private RevId revId;
@Before
public void setUp() throws Exception {
TestTimeUtil.resetWithClockStep(1, TimeUnit.SECONDS);
TestTimeUtil.setClock(Timestamp.from(Instant.EPOCH));
patchSetId = createChange().getPatchSetId();
revId = new RevId(gApi.changes().id(patchSetId.changeId.get()).current().commit(false).commit);
}
@After
public void resetTime() {
TestTimeUtil.useSystemTime();
}
@Test
public void createCheck() throws Exception {
CheckerUuid checkerUuid = checkerOperations.newChecker().repository(project).create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
Timestamp expectedCreationTimestamp = TestTimeUtil.getCurrentTimestamp();
CheckInfo info = checksApiFactory.revision(patchSetId).create(input).get();
assertThat(info.checkerUuid).isEqualTo(checkerUuid.toString());
assertThat(info.state).isEqualTo(CheckState.RUNNING);
assertThat(info.started).isNull();
assertThat(info.finished).isNull();
assertThat(info.created).isEqualTo(expectedCreationTimestamp);
assertThat(info.updated).isEqualTo(info.created);
CheckKey key = CheckKey.create(project, patchSetId, checkerUuid);
PerCheckOperations perCheckOps = checkOperations.check(key);
// TODO(gerrit-team) Add a Truth subject for the notes map
Map<RevId, String> notes = perCheckOps.notesAsText();
assertThat(notes)
.containsExactly(
revId,
noteDbContent(
checkerUuid.toString(), expectedCreationTimestamp, expectedCreationTimestamp));
}
@Test
public void cannotCreateCheckForInvalidCheckerUuid() throws Exception {
CheckInput input = new CheckInput();
input.checkerUuid = CheckerTestData.INVALID_UUID;
input.state = CheckState.RUNNING;
exception.expect(BadRequestException.class);
exception.expectMessage("invalid checker UUID: " + input.checkerUuid);
checksApiFactory.revision(patchSetId).create(input);
}
@Test
public void cannotCreateCheckForNonExistingChecker() throws Exception {
CheckInput input = new CheckInput();
input.checkerUuid = "foo:non-existing";
input.state = CheckState.RUNNING;
exception.expect(UnprocessableEntityException.class);
exception.expectMessage("checker " + input.checkerUuid + " not found");
checksApiFactory.revision(patchSetId).create(input);
}
@Test
public void cannotCreateCheckForInvalidChecker() throws Exception {
CheckerUuid checkerUuid = checkerOperations.newChecker().repository(project).create();
checkerOperations.checker(checkerUuid).forUpdate().forceInvalidConfig().update();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
exception.expect(RestApiException.class);
exception.expectMessage("Cannot create check");
checksApiFactory.revision(patchSetId).create(input);
}
@Test
public void canCreateCheckForDisabledChecker() throws Exception {
CheckerUuid checkerUuid =
checkerOperations.newChecker().repository(project).status(CheckerStatus.DISABLED).create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
checksApiFactory.revision(patchSetId).create(input);
CheckKey checkKey = CheckKey.create(project, patchSetId, checkerUuid);
assertThat(checkOperations.check(checkKey).exists()).isTrue();
}
@Test
public void canCreateCheckForCheckerThatDoesNotApplyToTheProject() throws Exception {
Project.NameKey otherProject = createProjectOverAPI("other", null, true, null);
CheckerUuid checkerUuid = checkerOperations.newChecker().repository(otherProject).create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
checksApiFactory.revision(patchSetId).create(input);
CheckKey checkKey = CheckKey.create(project, patchSetId, checkerUuid);
assertThat(checkOperations.check(checkKey).exists()).isTrue();
}
@Test
public void canCreateCheckForCheckerThatDoesNotApplyToTheChange() throws Exception {
CheckerUuid checkerUuid =
checkerOperations.newChecker().repository(project).query("message:not-matching").create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
checksApiFactory.revision(patchSetId).create(input);
CheckKey checkKey = CheckKey.create(project, patchSetId, checkerUuid);
assertThat(checkOperations.check(checkKey).exists()).isTrue();
}
@Test
public void canCreateCheckForCheckerWithUnsupportedOperatorInQuery() throws Exception {
CheckerUuid checkerUuid =
checkerOperations
.newChecker()
.repository(project)
.query(CheckerTestData.QUERY_WITH_UNSUPPORTED_OPERATOR)
.create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
checksApiFactory.revision(patchSetId).create(input);
CheckKey checkKey = CheckKey.create(project, patchSetId, checkerUuid);
assertThat(checkOperations.check(checkKey).exists()).isTrue();
}
@Test
public void canCreateCheckForCheckerWithInvalidQuery() throws Exception {
CheckerUuid checkerUuid =
checkerOperations
.newChecker()
.repository(project)
.query(CheckerTestData.INVALID_QUERY)
.create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
checksApiFactory.revision(patchSetId).create(input);
CheckKey checkKey = CheckKey.create(project, patchSetId, checkerUuid);
assertThat(checkOperations.check(checkKey).exists()).isTrue();
}
@Test
public void cannotCreateCheckWithoutAdministrateCheckers() throws Exception {
requestScopeOperations.setApiUser(user.getId());
CheckerUuid checkerUuid = checkerOperations.newChecker().repository(project).create();
CheckInput input = new CheckInput();
input.checkerUuid = checkerUuid.toString();
input.state = CheckState.RUNNING;
exception.expect(AuthException.class);
exception.expectMessage("not permitted");
checksApiFactory.revision(patchSetId).create(input);
}
// TODO(gerrit-team) More tests, especially for multiple checkers and PS and how commits behave
private String noteDbContent(String uuid, Timestamp created, Timestamp updated) {
return ""
+ "{\n"
+ " \"checks\": {\n"
+ " \""
+ uuid
+ "\": {\n"
+ " \"state\": \"RUNNING\",\n"
+ " \"created\": \""
+ Instant.ofEpochMilli(created.getTime())
+ "\",\n"
+ " \"updated\": \""
+ Instant.ofEpochMilli(updated.getTime())
+ "\"\n"
+ " }\n"
+ " }\n"
+ "}";
}
}