blob: 2b04e56771c45e1262cba4db6b7a13f79fd8aae2 [file] [log] [blame]
// Copyright (C) 2022 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 com.google.gerrit.acceptance.AbstractDaemonTest;
import com.google.gerrit.acceptance.PushOneCommit;
import com.google.gerrit.acceptance.UseSsh;
import org.junit.Test;
@UseSsh
public class ChangeReviewIT extends AbstractDaemonTest {
@Test
public void testGerritReviewCommandWithShortNameBranch() throws Exception {
PushOneCommit.Result r = createChange();
adminSshSession.exec(
"gerrit review --project "
+ r.getChange().change().getProject().get()
+ " --branch "
+ r.getChange().change().getDest().shortName()
+ " --code-review 1 "
+ r.getCommit().getName());
adminSshSession.assertSuccess();
}
@Test
public void testGerritReviewCommandWithoutProject() throws Exception {
PushOneCommit.Result r = createChange();
adminSshSession.exec(
"gerrit review"
+ " --branch "
+ r.getChange().change().getDest().shortName()
+ " --code-review 1 "
+ r.getCommit().getName());
adminSshSession.assertSuccess();
}
}