mirror of
https://github.com/google/nomulus.git
synced 2025-05-09 00:08:21 +02:00
They were failing because the maximum App Engine task batch size is 1,000, and we currently have more than 4,000 tasks in the pull queue. We keep re-uploading those to NORDN because we're unable to delete the tasks after successful upload, so the leases expire and they get processed again. Also renames TaskEnqueuer to TaskQueueUtils to reflect its newly expanded role. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=197060903
68 lines
2.4 KiB
Java
68 lines
2.4 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.cron;
|
|
|
|
import static google.registry.cron.CommitLogFanoutAction.BUCKET_PARAM;
|
|
import static google.registry.testing.TaskQueueHelper.assertTasksEnqueued;
|
|
|
|
import com.google.common.base.Joiner;
|
|
import google.registry.model.ofy.CommitLogBucket;
|
|
import google.registry.testing.AppEngineRule;
|
|
import google.registry.testing.TaskQueueHelper.TaskMatcher;
|
|
import google.registry.util.Retrier;
|
|
import google.registry.util.TaskQueueUtils;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Optional;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
|
|
/** Unit tests for {@link CommitLogFanoutAction}. */
|
|
@RunWith(JUnit4.class)
|
|
public class CommitLogFanoutActionTest {
|
|
|
|
private static final String ENDPOINT = "/the/servlet";
|
|
private static final String QUEUE = "the-queue";
|
|
|
|
@Rule
|
|
public final AppEngineRule appEngine = AppEngineRule.builder()
|
|
.withDatastore()
|
|
.withTaskQueue(Joiner.on('\n').join(
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>",
|
|
"<queue-entries>",
|
|
" <queue>",
|
|
" <name>the-queue</name>",
|
|
" <rate>1/s</rate>",
|
|
" </queue>",
|
|
"</queue-entries>"))
|
|
.build();
|
|
|
|
@Test
|
|
public void testSuccess() throws Exception {
|
|
CommitLogFanoutAction action = new CommitLogFanoutAction();
|
|
action.taskQueueUtils = new TaskQueueUtils(new Retrier(null, 1));
|
|
action.endpoint = ENDPOINT;
|
|
action.queue = QUEUE;
|
|
action.jitterSeconds = Optional.empty();
|
|
action.run();
|
|
List<TaskMatcher> matchers = new ArrayList<>();
|
|
for (int bucketId : CommitLogBucket.getBucketIds()) {
|
|
matchers.add(new TaskMatcher().url(ENDPOINT).param(BUCKET_PARAM, Integer.toString(bucketId)));
|
|
}
|
|
assertTasksEnqueued(QUEUE, matchers);
|
|
}
|
|
}
|