mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 20:47:52 +02:00
This is the first in a series of CLs containing code from an old CL of Dai's that had never been completed, which compares zone data between Datastore and DNS. I had written a script to do this by calling two nomulus commands, but maybe it can be done directly in Java, which would be convenient. This CL is just the plumbing to check on the status of a Mapreduce. We will need this to know that we can proceed with the next step of comparing the output to the DNS data. Cloned from CL 134295050 by 'g4 patch'. Original change by dxy@dxy:zoneman-reader:1939:citc on 2016/09/26 10:34:22. Add a command for comparing zone data between DNS and datastore ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=167188979
91 lines
3.1 KiB
Java
91 lines
3.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.server;
|
|
|
|
import static com.google.appengine.tools.pipeline.PipelineServiceFactory.newPipelineService;
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
|
|
import com.google.appengine.tools.mapreduce.Counters;
|
|
import com.google.appengine.tools.mapreduce.MapReduceResult;
|
|
import com.google.appengine.tools.pipeline.Job0;
|
|
import com.google.appengine.tools.pipeline.JobInfo.State;
|
|
import com.google.appengine.tools.pipeline.Value;
|
|
import google.registry.testing.FakeJsonResponse;
|
|
import google.registry.testing.mapreduce.MapreduceTestCase;
|
|
import java.util.Map;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
|
|
/** Tests for {@link PollMapreduceAction}.*/
|
|
@RunWith(JUnit4.class)
|
|
public class PollMapreduceActionTest extends MapreduceTestCase<PollMapreduceAction> {
|
|
|
|
@Before
|
|
public void init() throws Exception {
|
|
action = new PollMapreduceAction();
|
|
}
|
|
|
|
@Test
|
|
public void testPollUntilSuccess() throws Exception {
|
|
action.jobId = newPipelineService().startNewPipeline(new SuccessfulJob());
|
|
assertThat(poll()).containsExactly("state", State.RUNNING.toString());
|
|
executeTasksUntilEmpty("default");
|
|
assertThat(poll()).containsExactly(
|
|
"state", State.COMPLETED_SUCCESSFULLY.toString(), "output", "foobar");
|
|
}
|
|
|
|
@Test
|
|
public void testPollUntilFailure() throws Exception {
|
|
action.jobId = newPipelineService().startNewPipeline(new ThrowingJob());
|
|
assertThat(poll()).containsExactly("state", State.RUNNING.toString());
|
|
executeTasksUntilEmpty("default");
|
|
assertThat(poll()).containsExactly("state", State.STOPPED_BY_ERROR.toString());
|
|
}
|
|
|
|
Map<String, ?> poll() {
|
|
action.response = new FakeJsonResponse();
|
|
action.run();
|
|
return ((FakeJsonResponse) action.response).getResponseMap();
|
|
}
|
|
|
|
/** A job that returns a string. */
|
|
static class SuccessfulJob extends Job0<MapReduceResult<String>> {
|
|
@Override
|
|
public Value<MapReduceResult<String>> run() {
|
|
MapReduceResult<String> result =
|
|
new MapReduceResult<String>() {
|
|
@Override
|
|
public Counters getCounters() {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
@Override
|
|
public String getOutputResult() {
|
|
return "foobar";
|
|
}};
|
|
return immediate(result);
|
|
}
|
|
}
|
|
|
|
/** A job that throws a RunTimeException when run. */
|
|
static class ThrowingJob extends Job0<Void> {
|
|
@Override
|
|
public Value<Void> run() {
|
|
throw new RuntimeException("expected");
|
|
}
|
|
}
|
|
}
|