mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 04:57:51 +02:00
The link was previously being sent using a JS redirect, which doesn't work because the endpoints that trigger mapreduces can only be hit from the command line (because they require auth). This commit switches the link to be in plaintext and renders the full URL instead of just the path, so that clicking it directly from the terminal works. This also improves how these links are sent from callsites by using a fluent style. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=228764606
99 lines
2.9 KiB
Java
99 lines
2.9 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.testing;
|
|
|
|
import static com.google.common.base.Preconditions.checkArgument;
|
|
import static com.google.common.base.Preconditions.checkNotNull;
|
|
import static com.google.common.base.Preconditions.checkState;
|
|
import static java.util.Collections.unmodifiableMap;
|
|
|
|
import com.google.common.base.Throwables;
|
|
import com.google.common.net.MediaType;
|
|
import google.registry.request.Response;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
import org.joda.time.DateTime;
|
|
|
|
/** Fake implementation of {@link Response} for testing. */
|
|
public final class FakeResponse implements Response {
|
|
|
|
private int status = 200;
|
|
private MediaType contentType = MediaType.HTML_UTF_8;
|
|
private String payload = "";
|
|
private final Map<String, Object> headers = new HashMap<>();
|
|
private boolean wasMutuallyExclusiveResponseSet;
|
|
private String lastResponseStackTrace;
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public MediaType getContentType() {
|
|
return contentType;
|
|
}
|
|
|
|
public String getPayload() {
|
|
return payload;
|
|
}
|
|
|
|
public Map<String, Object> getHeaders() {
|
|
return unmodifiableMap(headers);
|
|
}
|
|
|
|
@Override
|
|
public void setStatus(int status) {
|
|
checkArgument(status >= 100);
|
|
this.status = status;
|
|
}
|
|
|
|
@Override
|
|
public void setContentType(MediaType contentType) {
|
|
checkArgument(payload.isEmpty(), "setContentType must be called before setPayload");
|
|
this.contentType = checkNotNull(contentType);
|
|
}
|
|
|
|
@Override
|
|
public void setPayload(String payload) {
|
|
checkResponsePerformedOnce();
|
|
this.payload = checkNotNull(payload);
|
|
}
|
|
|
|
@Override
|
|
public void setHeader(String header, String value) {
|
|
headers.put(checkNotNull(header), checkNotNull(value));
|
|
}
|
|
|
|
@Override
|
|
public void setDateHeader(String header, DateTime timestamp) {
|
|
headers.put(checkNotNull(header), checkNotNull(timestamp));
|
|
}
|
|
|
|
private void checkResponsePerformedOnce() {
|
|
checkState(
|
|
!wasMutuallyExclusiveResponseSet,
|
|
"Two responses were sent. Here's the previous call:\n%s",
|
|
lastResponseStackTrace);
|
|
wasMutuallyExclusiveResponseSet = true;
|
|
lastResponseStackTrace = getStackTrace();
|
|
}
|
|
|
|
private static String getStackTrace() {
|
|
try {
|
|
throw new Exception();
|
|
} catch (Exception e) {
|
|
return Throwables.getStackTraceAsString(e);
|
|
}
|
|
}
|
|
}
|