| // Copyright (C) 2017 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.api.change; |
| |
| import static com.google.common.truth.Truth.assertThat; |
| import static com.google.gerrit.testing.GerritJUnit.assertThrows; |
| |
| import com.google.gerrit.acceptance.AbstractDaemonTest; |
| import com.google.gerrit.acceptance.PushOneCommit; |
| import com.google.gerrit.acceptance.config.GerritConfig; |
| import com.google.gerrit.extensions.common.ChangeInput; |
| import com.google.gerrit.extensions.restapi.MethodNotAllowedException; |
| import org.junit.Test; |
| |
| public class DisablePrivateChangesIT extends AbstractDaemonTest { |
| @Test |
| @GerritConfig(name = "change.disablePrivateChanges", value = "true") |
| public void createPrivateChangeWithDisablePrivateChangesTrue() throws Exception { |
| ChangeInput input = new ChangeInput(project.get(), "master", "empty change"); |
| input.isPrivate = true; |
| MethodNotAllowedException thrown = |
| assertThrows(MethodNotAllowedException.class, () -> gApi.changes().create(input)); |
| assertThat(thrown).hasMessageThat().contains("private changes are disabled"); |
| } |
| |
| @Test |
| @GerritConfig(name = "change.disablePrivateChanges", value = "true") |
| public void createNonPrivateChangeWithDisablePrivateChangesTrue() throws Exception { |
| ChangeInput input = new ChangeInput(project.get(), "master", "empty change"); |
| assertThat(gApi.changes().create(input).get().isPrivate).isNull(); |
| } |
| |
| @Test |
| public void createPrivateChangeWithDisablePrivateChangesFalse() throws Exception { |
| ChangeInput input = new ChangeInput(project.get(), "master", "empty change"); |
| input.isPrivate = true; |
| assertThat(gApi.changes().create(input).get().isPrivate).isTrue(); |
| } |
| |
| @Test |
| @GerritConfig(name = "change.disablePrivateChanges", value = "true") |
| public void pushPrivatesWithDisablePrivateChangesTrue() throws Exception { |
| PushOneCommit.Result result = |
| pushFactory.create(admin.newIdent(), testRepo).to("refs/for/master%private"); |
| result.assertErrorStatus(); |
| } |
| |
| @Test |
| @GerritConfig(name = "change.disablePrivateChanges", value = "true") |
| public void pushWithDisablePrivateChangesTrue() throws Exception { |
| PushOneCommit.Result result = |
| pushFactory.create(admin.newIdent(), testRepo).to("refs/for/master"); |
| result.assertOkStatus(); |
| assertThat(result.getChange().change().isPrivate()).isFalse(); |
| } |
| |
| @Test |
| @GerritConfig(name = "change.disablePrivateChanges", value = "true") |
| public void setPrivateWithDisablePrivateChangesTrue() throws Exception { |
| PushOneCommit.Result result = createChange(); |
| |
| MethodNotAllowedException thrown = |
| assertThrows( |
| MethodNotAllowedException.class, |
| () -> gApi.changes().id(result.getChangeId()).setPrivate(true, "set private")); |
| assertThat(thrown).hasMessageThat().contains("private changes are disabled"); |
| } |
| |
| @Test |
| public void setPrivateWithDisablePrivateChangesFalse() throws Exception { |
| PushOneCommit.Result result = createChange(); |
| gApi.changes().id(result.getChangeId()).setPrivate(true, "set private"); |
| assertThat(gApi.changes().id(result.getChangeId()).get().isPrivate).isTrue(); |
| } |
| } |