mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
The dark lord Gosling designed the Java package naming system so that ownership flows from the DNS system. Since we own the domain name registry.google, it seems only appropriate that we should use google.registry as our package name.
225 lines
8.4 KiB
Java
225 lines
8.4 KiB
Java
// Copyright 2016 The Domain Registry 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.export;
|
|
|
|
import static com.google.common.collect.Iterables.getOnlyElement;
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static com.google.common.truth.Truth.assert_;
|
|
import static google.registry.testing.TaskQueueHelper.assertTasksEnqueued;
|
|
import static java.util.logging.Level.INFO;
|
|
import static java.util.logging.Level.SEVERE;
|
|
import static org.mockito.Mockito.when;
|
|
|
|
import com.google.api.services.bigquery.Bigquery;
|
|
import com.google.api.services.bigquery.model.ErrorProto;
|
|
import com.google.api.services.bigquery.model.Job;
|
|
import com.google.api.services.bigquery.model.JobReference;
|
|
import com.google.api.services.bigquery.model.JobStatus;
|
|
import com.google.appengine.api.taskqueue.QueueFactory;
|
|
import com.google.appengine.api.taskqueue.TaskOptions;
|
|
import com.google.appengine.api.taskqueue.TaskOptions.Method;
|
|
import com.google.appengine.api.taskqueue.dev.QueueStateInfo.TaskStateInfo;
|
|
|
|
import dagger.Lazy;
|
|
|
|
import google.registry.export.BigqueryPollJobAction.BigqueryPollJobEnqueuer;
|
|
import google.registry.request.HttpException.BadRequestException;
|
|
import google.registry.request.HttpException.NotModifiedException;
|
|
import google.registry.testing.AppEngineRule;
|
|
import google.registry.testing.ExceptionRule;
|
|
import google.registry.testing.FakeClock;
|
|
import google.registry.testing.FakeSleeper;
|
|
import google.registry.testing.TaskQueueHelper;
|
|
import google.registry.testing.TaskQueueHelper.TaskMatcher;
|
|
import google.registry.util.CapturingLogHandler;
|
|
import google.registry.util.Retrier;
|
|
import google.registry.util.TaskEnqueuer;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.mockito.Mock;
|
|
import org.mockito.runners.MockitoJUnitRunner;
|
|
|
|
import java.io.ByteArrayInputStream;
|
|
import java.io.ByteArrayOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.ObjectInputStream;
|
|
import java.io.ObjectOutputStream;
|
|
import java.util.logging.Level;
|
|
import java.util.logging.LogRecord;
|
|
import java.util.logging.Logger;
|
|
|
|
/** Unit tests for {@link BigqueryPollJobAction}. */
|
|
@RunWith(MockitoJUnitRunner.class)
|
|
public class BigqueryPollJobActionTest {
|
|
|
|
@Rule
|
|
public final AppEngineRule appEngine = AppEngineRule.builder()
|
|
.withDatastore()
|
|
.withTaskQueue()
|
|
.build();
|
|
|
|
@Rule
|
|
public final ExceptionRule thrown = new ExceptionRule();
|
|
|
|
@Mock Bigquery bigquery;
|
|
@Mock Bigquery.Jobs bigqueryJobs;
|
|
@Mock Bigquery.Jobs.Get bigqueryJobsGet;
|
|
|
|
static final String PROJECT_ID = "project_id";
|
|
static final String JOB_ID = "job_id";
|
|
static final String CHAINED_QUEUE_NAME = "default";
|
|
static final TaskEnqueuer ENQUEUER =
|
|
new TaskEnqueuer(new Retrier(new FakeSleeper(new FakeClock()), 1));
|
|
|
|
private final CapturingLogHandler logHandler = new CapturingLogHandler();
|
|
private BigqueryPollJobAction action = new BigqueryPollJobAction();
|
|
|
|
@Before
|
|
public void before() throws Exception {
|
|
action.bigquery = bigquery;
|
|
when(bigquery.jobs()).thenReturn(bigqueryJobs);
|
|
when(bigqueryJobs.get(PROJECT_ID, JOB_ID)).thenReturn(bigqueryJobsGet);
|
|
action.enqueuer = ENQUEUER;
|
|
action.projectId = PROJECT_ID;
|
|
action.jobId = JOB_ID;
|
|
action.chainedQueueName =
|
|
new Lazy<String>() {
|
|
@Override
|
|
public String get() {
|
|
return CHAINED_QUEUE_NAME;
|
|
}};
|
|
Logger.getLogger(BigqueryPollJobAction.class.getName()).addHandler(logHandler);
|
|
}
|
|
|
|
private static TaskMatcher newPollJobTaskMatcher(String method) throws Exception {
|
|
return new TaskMatcher()
|
|
.method(method)
|
|
.url(BigqueryPollJobAction.PATH)
|
|
.header(BigqueryPollJobAction.PROJECT_ID_HEADER, PROJECT_ID)
|
|
.header(BigqueryPollJobAction.JOB_ID_HEADER, JOB_ID);
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_enqueuePollTask() throws Exception {
|
|
new BigqueryPollJobEnqueuer(ENQUEUER).enqueuePollTask(
|
|
new JobReference().setProjectId(PROJECT_ID).setJobId(JOB_ID));
|
|
assertTasksEnqueued(BigqueryPollJobAction.QUEUE, newPollJobTaskMatcher("GET"));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_enqueuePollTask_withChainedTask() throws Exception {
|
|
TaskOptions chainedTask = TaskOptions.Builder
|
|
.withUrl("/_dr/something")
|
|
.method(Method.POST)
|
|
.header("X-Testing", "foo")
|
|
.param("testing", "bar");
|
|
new BigqueryPollJobEnqueuer(ENQUEUER).enqueuePollTask(
|
|
new JobReference().setProjectId(PROJECT_ID).setJobId(JOB_ID),
|
|
chainedTask,
|
|
QueueFactory.getQueue(CHAINED_QUEUE_NAME));
|
|
assertTasksEnqueued(BigqueryPollJobAction.QUEUE, newPollJobTaskMatcher("POST"));
|
|
TaskStateInfo taskInfo = getOnlyElement(
|
|
TaskQueueHelper.getQueueInfo(BigqueryPollJobAction.QUEUE).getTaskInfo());
|
|
ByteArrayInputStream taskBodyBytes = new ByteArrayInputStream(taskInfo.getBodyAsBytes());
|
|
TaskOptions taskOptions = (TaskOptions) new ObjectInputStream(taskBodyBytes).readObject();
|
|
assertThat(taskOptions).isEqualTo(chainedTask);
|
|
}
|
|
|
|
private void assertLogMessage(Level level, String message) {
|
|
for (LogRecord logRecord : logHandler.getRecords()) {
|
|
if (logRecord.getLevel() == level && logRecord.getMessage().contains(message)) {
|
|
return;
|
|
}
|
|
}
|
|
assert_().fail(String.format("Log message \"%s\" not found", message));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_jobCompletedSuccessfully() throws Exception {
|
|
when(bigqueryJobsGet.execute()).thenReturn(
|
|
new Job().setStatus(new JobStatus().setState("DONE")));
|
|
action.run();
|
|
assertLogMessage(INFO,
|
|
String.format("Bigquery job succeeded - %s:%s", PROJECT_ID, JOB_ID));
|
|
}
|
|
|
|
@Test
|
|
public void testSuccess_chainedPayloadAndJobSucceeded_enqueuesChainedTask() throws Exception {
|
|
when(bigqueryJobsGet.execute()).thenReturn(
|
|
new Job().setStatus(new JobStatus().setState("DONE")));
|
|
|
|
TaskOptions chainedTask = TaskOptions.Builder
|
|
.withUrl("/_dr/something")
|
|
.method(Method.POST)
|
|
.header("X-Testing", "foo")
|
|
.param("testing", "bar")
|
|
.taskName("my_task_name");
|
|
ByteArrayOutputStream bytes = new ByteArrayOutputStream();
|
|
new ObjectOutputStream(bytes).writeObject(chainedTask);
|
|
action.payload = bytes.toByteArray();
|
|
|
|
action.run();
|
|
assertLogMessage(INFO,
|
|
String.format("Bigquery job succeeded - %s:%s", PROJECT_ID, JOB_ID));
|
|
assertLogMessage(INFO,
|
|
String.format(
|
|
"Added chained task my_task_name for /_dr/something to queue default:",
|
|
PROJECT_ID, JOB_ID));
|
|
assertTasksEnqueued(CHAINED_QUEUE_NAME, new TaskMatcher()
|
|
.url("/_dr/something")
|
|
.method("POST")
|
|
.header("X-Testing", "foo")
|
|
.param("testing", "bar")
|
|
.taskName("my_task_name"));
|
|
}
|
|
|
|
@Test
|
|
public void testJobFailed() throws Exception {
|
|
when(bigqueryJobsGet.execute()).thenReturn(new Job().setStatus(
|
|
new JobStatus()
|
|
.setState("DONE")
|
|
.setErrorResult(new ErrorProto().setMessage("Job failed"))));
|
|
action.run();
|
|
assertLogMessage(SEVERE, String.format("Bigquery job failed - %s:%s", PROJECT_ID, JOB_ID));
|
|
}
|
|
|
|
@Test
|
|
public void testJobPending() throws Exception {
|
|
when(bigqueryJobsGet.execute()).thenReturn(
|
|
new Job().setStatus(new JobStatus().setState("PENDING")));
|
|
thrown.expect(NotModifiedException.class);
|
|
action.run();
|
|
}
|
|
|
|
@Test
|
|
@SuppressWarnings("unchecked")
|
|
public void testJobStatusUnreadable() throws Exception {
|
|
when(bigqueryJobsGet.execute()).thenThrow(IOException.class);
|
|
thrown.expect(NotModifiedException.class);
|
|
action.run();
|
|
}
|
|
|
|
@Test
|
|
public void testFailure_badChainedTaskPayload() throws Exception {
|
|
when(bigqueryJobsGet.execute()).thenReturn(
|
|
new Job().setStatus(new JobStatus().setState("DONE")));
|
|
action.payload = "payload".getBytes();
|
|
thrown.expect(BadRequestException.class, "Cannot deserialize task from payload");
|
|
action.run();
|
|
}
|
|
}
|