mirror of
https://github.com/google/nomulus.git
synced 2025-05-16 17:37:13 +02:00
Import code from internal repository to git
This commit is contained in:
commit
0ef0c933d2
2490 changed files with 281594 additions and 0 deletions
168
javatests/com/google/domain/registry/tools/CommandTestCase.java
Normal file
168
javatests/com/google/domain/registry/tools/CommandTestCase.java
Normal file
|
@ -0,0 +1,168 @@
|
|||
// Copyright 2016 Google Inc. 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 com.google.domain.registry.tools;
|
||||
|
||||
import static com.google.common.truth.Truth.assertThat;
|
||||
import static com.google.domain.registry.model.ofy.ObjectifyService.ofy;
|
||||
import static java.nio.charset.StandardCharsets.UTF_8;
|
||||
|
||||
import com.google.common.base.Joiner;
|
||||
import com.google.common.base.Splitter;
|
||||
import com.google.common.collect.FluentIterable;
|
||||
import com.google.common.collect.ObjectArrays;
|
||||
import com.google.common.io.Files;
|
||||
import com.google.common.reflect.TypeToken;
|
||||
import com.google.domain.registry.model.poll.PollMessage;
|
||||
import com.google.domain.registry.testing.AppEngineRule;
|
||||
import com.google.domain.registry.testing.CertificateSamples;
|
||||
import com.google.domain.registry.testing.ExceptionRule;
|
||||
import com.google.domain.registry.tools.params.ParameterFactory;
|
||||
|
||||
import com.beust.jcommander.JCommander;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.rules.TemporaryFolder;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.mockito.runners.MockitoJUnitRunner;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.PrintStream;
|
||||
import java.util.List;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/**
|
||||
* Base class for all command tests.
|
||||
*
|
||||
* @param <C> the command type
|
||||
*/
|
||||
@RunWith(MockitoJUnitRunner.class)
|
||||
public abstract class CommandTestCase<C extends Command> {
|
||||
|
||||
private ByteArrayOutputStream stdout = new ByteArrayOutputStream();
|
||||
|
||||
C command = newCommandInstance();
|
||||
|
||||
@Rule
|
||||
public final AppEngineRule appEngine = AppEngineRule.builder()
|
||||
.withDatastore()
|
||||
.withTaskQueue()
|
||||
.build();
|
||||
|
||||
@Rule
|
||||
public final ExceptionRule thrown = new ExceptionRule();
|
||||
|
||||
@Rule
|
||||
public TemporaryFolder tmpDir = new TemporaryFolder();
|
||||
|
||||
@Before
|
||||
public final void initStreams() {
|
||||
System.setOut(new PrintStream(stdout));
|
||||
}
|
||||
|
||||
void runCommand(String... args) throws Exception {
|
||||
RegistryToolEnvironment.UNITTEST.setup();
|
||||
JCommander jcommander = new JCommander(command);
|
||||
jcommander.addConverterFactory(new ParameterFactory());
|
||||
jcommander.parse(args);
|
||||
command.run();
|
||||
// Clear the session cache so that subsequent reads for verification purposes hit datastore.
|
||||
// This primarily matters for AutoTimestamp fields, which otherwise won't have updated values.
|
||||
ofy().clearSessionCache();
|
||||
}
|
||||
|
||||
/** Adds "--force" as the first parameter, then runs the command. */
|
||||
void runCommandForced(String... args) throws Exception {
|
||||
runCommand(ObjectArrays.concat("--force", args));
|
||||
}
|
||||
|
||||
/** Writes the data to a named temporary file and then returns a path to the file. */
|
||||
String writeToNamedTmpFile(String filename, byte[] data) throws IOException {
|
||||
File tmpFile = tmpDir.newFile(filename);
|
||||
Files.write(data, tmpFile);
|
||||
return tmpFile.getPath();
|
||||
}
|
||||
|
||||
/** Writes the data to a named temporary file and then returns a path to the file. */
|
||||
String writeToNamedTmpFile(String filename, String...data) throws IOException {
|
||||
return writeToNamedTmpFile(filename, Joiner.on('\n').join(data).getBytes(UTF_8));
|
||||
}
|
||||
|
||||
/** Writes the data to a temporary file and then returns a path to the file. */
|
||||
String writeToNamedTmpFile(String filename, Iterable<String> data) throws IOException {
|
||||
return writeToNamedTmpFile(filename, FluentIterable.from(data).toArray(String.class));
|
||||
}
|
||||
|
||||
/** Writes the data to a temporary file and then returns a path to the file. */
|
||||
String writeToTmpFile(byte[] data) throws IOException {
|
||||
return writeToNamedTmpFile("tmp_file", data);
|
||||
}
|
||||
|
||||
/** Writes the data to a temporary file and then returns a path to the file. */
|
||||
String writeToTmpFile(String...data) throws IOException {
|
||||
return writeToNamedTmpFile("tmp_file", data);
|
||||
}
|
||||
|
||||
/** Writes the data to a temporary file and then returns a path to the file. */
|
||||
String writeToTmpFile(Iterable<String> data) throws IOException {
|
||||
return writeToNamedTmpFile("tmp_file", FluentIterable.from(data).toArray(String.class));
|
||||
}
|
||||
|
||||
/** Returns a path to a known good certificate file. */
|
||||
String getCertFilename() throws IOException {
|
||||
return writeToNamedTmpFile("cert.pem", CertificateSamples.SAMPLE_CERT);
|
||||
}
|
||||
|
||||
/** Reloads the given resource from Datastore. */
|
||||
<T> T reloadResource(T resource) {
|
||||
return ofy().load().entity(resource).now();
|
||||
}
|
||||
|
||||
/** Returns count of all poll messages in Datastore. */
|
||||
int getPollMessageCount() {
|
||||
return ofy().load().type(PollMessage.class).count();
|
||||
}
|
||||
|
||||
void assertInStdout(String expected) throws Exception {
|
||||
assertThat(stdout.toString(UTF_8.toString())).contains(expected);
|
||||
}
|
||||
|
||||
void assertInStdout(Pattern expected) throws Exception {
|
||||
assertThat(stdout.toString(UTF_8.toString())).containsMatch(expected);
|
||||
}
|
||||
|
||||
void assertNotInStdout(String expected) throws Exception {
|
||||
assertThat(stdout.toString(UTF_8.toString())).doesNotContain(expected);
|
||||
}
|
||||
|
||||
String getStdoutAsString() {
|
||||
return new String(stdout.toByteArray(), UTF_8);
|
||||
}
|
||||
|
||||
List<String> getStdoutAsLines() {
|
||||
return Splitter.on('\n').omitEmptyStrings().trimResults().splitToList(getStdoutAsString());
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
protected C newCommandInstance() {
|
||||
try {
|
||||
return (C) new TypeToken<C>(getClass()){}.getRawType().newInstance();
|
||||
} catch (InstantiationException | IllegalAccessException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue