blob: 3d069efe5170754c8903f5f44585212b7365c485 [file] [log] [blame]
// Copyright (C) 2018 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.googlesource.gerrit.plugins.deleteproject;
import static com.google.common.truth.Truth.assertThat;
import static org.mockito.Mockito.when;
import com.google.gerrit.server.config.PluginConfig;
import com.google.gerrit.server.config.PluginConfigFactory;
import org.eclipse.jgit.lib.Config;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
@RunWith(MockitoJUnitRunner.class)
public class ConfigurationTest {
private static final String CUSTOM_PARENT = "customParent";
private static final String PLUGIN_NAME = "delete-project";
@Mock private PluginConfigFactory pluginConfigFactoryMock;
private Configuration deleteConfig;
@Test
public void defaultValuesAreLoaded() {
when(pluginConfigFactoryMock.getFromGerritConfig(PLUGIN_NAME))
.thenReturn(new PluginConfig(PLUGIN_NAME, new Config()));
deleteConfig = new Configuration(pluginConfigFactoryMock, PLUGIN_NAME);
assertThat(deleteConfig.getDeletedProjectsParent()).isEqualTo("Deleted-Projects");
assertThat(deleteConfig.deletionWithTagsAllowed()).isTrue();
assertThat(deleteConfig.projectOnPreserveHidden()).isFalse();
}
@Test
public void customValuesAreLoaded() {
PluginConfig pluginConfig = new PluginConfig(PLUGIN_NAME, new Config());
pluginConfig.setString("parentForDeletedProjects", CUSTOM_PARENT);
pluginConfig.setBoolean("allowDeletionOfReposWithTags", false);
pluginConfig.setBoolean("hideProjectOnPreserve", true);
when(pluginConfigFactoryMock.getFromGerritConfig(PLUGIN_NAME)).thenReturn(pluginConfig);
deleteConfig = new Configuration(pluginConfigFactoryMock, PLUGIN_NAME);
assertThat(deleteConfig.getDeletedProjectsParent()).isEqualTo(CUSTOM_PARENT);
assertThat(deleteConfig.deletionWithTagsAllowed()).isFalse();
assertThat(deleteConfig.projectOnPreserveHidden()).isTrue();
}
}