blob: cc80fbb767e1ff94b9521596b246ff0241c9008e [file] [log] [blame]
// Copyright (C) 2017 Ericsson
//
// 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.ericsson.gerrit.plugins.highavailability.forwarder.rest;
import static javax.servlet.http.HttpServletResponse.SC_CONFLICT;
import static javax.servlet.http.HttpServletResponse.SC_NO_CONTENT;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.server.index.account.AccountIndexer;
import com.google.gwtorm.client.KeyUtil;
import com.google.gwtorm.server.StandardKeyEncoder;
import java.io.IOException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.junit.MockitoJUnitRunner;
@RunWith(MockitoJUnitRunner.class)
public class IndexAccountRestApiServletTest {
private static final String ACCOUNT_NUMBER = "1";
@Mock private AccountIndexer indexer;
@Mock private HttpServletRequest req;
@Mock private HttpServletResponse rsp;
private Account.Id id;
private IndexAccountRestApiServlet servlet;
@BeforeClass
public static void setup() {
KeyUtil.setEncoderImpl(new StandardKeyEncoder());
}
@Before
public void setUpMocks() {
servlet = new IndexAccountRestApiServlet(indexer);
id = Account.Id.parse(ACCOUNT_NUMBER);
when(req.getPathInfo()).thenReturn("/index/account/" + ACCOUNT_NUMBER);
}
@Test
public void accountIsIndexed() throws Exception {
servlet.doPost(req, rsp);
verify(indexer, times(1)).index(id);
verify(rsp).setStatus(SC_NO_CONTENT);
}
@Test
public void indexerThrowsIOExceptionTryingToIndexAccount() throws Exception {
doThrow(new IOException("io-error")).when(indexer).index(id);
servlet.doPost(req, rsp);
verify(rsp).sendError(SC_CONFLICT, "io-error");
}
@Test
public void sendErrorThrowsIOException() throws Exception {
doThrow(new IOException("io-error")).when(indexer).index(id);
doThrow(new IOException("someError")).when(rsp).sendError(SC_CONFLICT, "io-error");
servlet.doPost(req, rsp);
verify(rsp).sendError(SC_CONFLICT, "io-error");
}
}