mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 13:07:50 +02:00
The only remaining methods on ExceptionRule after this are methods that also exist on ExpectedException, which will allow us to, in the next CL, swap out the one for the other and then run the automated refactoring to turn it all into assertThrows/expectThrows. Note that there were some assertions about root causes that couldn't easily be turned into ExpectedException invocations, so I simply converted them directly to usages of assertThrows/expectThrows. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=178623431
117 lines
4.1 KiB
Java
117 lines
4.1 KiB
Java
// Copyright 2017 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// 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 google.registry.tools;
|
|
|
|
import static google.registry.request.JsonResponse.JSON_SAFETY_PREFIX;
|
|
import static google.registry.util.ResourceUtils.readResourceUtf8;
|
|
import static org.mockito.Matchers.any;
|
|
import static org.mockito.Matchers.anyMapOf;
|
|
import static org.mockito.Matchers.eq;
|
|
import static org.mockito.Mockito.reset;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import com.beust.jcommander.ParameterException;
|
|
import com.google.common.base.VerifyException;
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.common.net.MediaType;
|
|
import google.registry.tools.ServerSideCommand.Connection;
|
|
import google.registry.tools.server.CreatePremiumListAction;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.mockito.Mock;
|
|
|
|
/** Unit tests for {@link CreatePremiumListCommand}. */
|
|
public class CreatePremiumListCommandTest<C extends CreatePremiumListCommand>
|
|
extends CreateOrUpdatePremiumListCommandTestCase<C> {
|
|
|
|
@Mock
|
|
Connection connection;
|
|
|
|
String premiumTermsPath;
|
|
String premiumTermsCsv;
|
|
String servletPath;
|
|
|
|
@Before
|
|
public void init() throws Exception {
|
|
command.setConnection(connection);
|
|
premiumTermsPath = writeToNamedTmpFile(
|
|
"example_premium_terms.csv",
|
|
readResourceUtf8(
|
|
CreatePremiumListCommandTest.class,
|
|
"testdata/example_premium_terms.csv"));
|
|
servletPath = "/_dr/admin/createPremiumList";
|
|
when(connection.send(
|
|
eq(CreatePremiumListAction.PATH),
|
|
anyMapOf(String.class, String.class),
|
|
any(MediaType.class),
|
|
any(byte[].class)))
|
|
.thenReturn(JSON_SAFETY_PREFIX + "{\"status\":\"success\",\"lines\":[]}");
|
|
}
|
|
|
|
@Test
|
|
public void testRun() throws Exception {
|
|
runCommandForced("-i=" + premiumTermsPath, "-n=foo");
|
|
assertInStdout("Successfully");
|
|
verifySentParams(
|
|
connection,
|
|
servletPath,
|
|
ImmutableMap.of("name", "foo", "inputData", generateInputData(premiumTermsPath)));
|
|
}
|
|
|
|
@Test
|
|
public void testRun_noProvidedName_usesBasenameOfInputFile() throws Exception {
|
|
runCommandForced("-i=" + premiumTermsPath);
|
|
assertInStdout("Successfully");
|
|
verifySentParams(
|
|
connection,
|
|
servletPath,
|
|
ImmutableMap.of(
|
|
"name", "example_premium_terms", "inputData", generateInputData(premiumTermsPath)));
|
|
}
|
|
|
|
@Test
|
|
public void testRun_errorResponse() throws Exception {
|
|
reset(connection);
|
|
command.setConnection(connection);
|
|
when(connection.send(
|
|
eq(CreatePremiumListAction.PATH),
|
|
anyMapOf(String.class, String.class),
|
|
any(MediaType.class),
|
|
any(byte[].class)))
|
|
.thenReturn(
|
|
JSON_SAFETY_PREFIX + "{\"status\":\"error\",\"error\":\"foo already exists\"}");
|
|
thrown.expect(VerifyException.class);
|
|
thrown.expectMessage("Server error:");
|
|
runCommandForced("-i=" + premiumTermsPath, "-n=foo");
|
|
}
|
|
|
|
@Test
|
|
public void testRun_noInputFileSpecified_throwsException() throws Exception {
|
|
thrown.expect(ParameterException.class);
|
|
thrown.expectMessage("The following option is required");
|
|
runCommand();
|
|
}
|
|
|
|
@Test
|
|
public void testRun_invalidInputData() throws Exception {
|
|
premiumTermsPath = writeToNamedTmpFile(
|
|
"tmp_file2",
|
|
readResourceUtf8(
|
|
CreatePremiumListCommandTest.class, "testdata/example_invalid_premium_terms.csv"));
|
|
thrown.expect(IllegalArgumentException.class);
|
|
thrown.expectMessage("Could not parse line in premium list");
|
|
runCommandForced("-i=" + premiumTermsPath, "-n=foo");
|
|
}
|
|
}
|