blob: 4324decc710756fa0b80fd0578855a6a967c4010 [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;
import static com.google.common.truth.Truth.assertThat;
import static com.google.gerrit.testing.GerritJUnit.assertThrows;
import com.google.gerrit.entities.Project;
import org.junit.Test;
public class CheckerCreationTest {
private final CheckerUuid checkerUuid = CheckerUuid.parse("test:my-checker");
private final String checkerName = "My Checker";
private final Project.NameKey checkerRepository = Project.nameKey("my-repo");
@Test
public void nameCannotBeEmpty() {
IllegalStateException thrown =
assertThrows(
IllegalStateException.class,
() ->
CheckerCreation.builder()
.setCheckerUuid(checkerUuid)
.setName("")
.setRepository(checkerRepository)
.build());
assertThat(thrown).hasMessageThat().contains(String.format("checker name cannot be empty"));
}
@Test
public void nameCannotBeEmptyAfterTrim() {
IllegalStateException thrown =
assertThrows(
IllegalStateException.class,
() ->
CheckerCreation.builder()
.setCheckerUuid(checkerUuid)
.setName(" ")
.setRepository(checkerRepository)
.build());
assertThat(thrown).hasMessageThat().contains(String.format("checker name cannot be empty"));
}
@Test
public void repositoryCannotBeEmpty() {
IllegalStateException thrown =
assertThrows(
IllegalStateException.class,
() ->
CheckerCreation.builder()
.setCheckerUuid(checkerUuid)
.setName(checkerName)
.setRepository(Project.nameKey(""))
.build());
assertThat(thrown).hasMessageThat().contains(String.format("repository name cannot be empty"));
}
@Test
public void repositoryCannotBeEmptyAfterTrim() {
IllegalStateException thrown =
assertThrows(
IllegalStateException.class,
() ->
CheckerCreation.builder()
.setCheckerUuid(checkerUuid)
.setName(checkerName)
.setRepository(Project.nameKey(" "))
.build());
assertThat(thrown).hasMessageThat().contains(String.format("repository name cannot be empty"));
}
}