mirror of
https://github.com/google/nomulus.git
synced 2025-06-28 07:13:34 +02:00
mv com/google/domain/registry google/registry
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
This commit is contained in:
parent
a41677aea1
commit
5012893c1d
2396 changed files with 0 additions and 0 deletions
105
javatests/google/registry/testing/FakeResponse.java
Normal file
105
javatests/google/registry/testing/FakeResponse.java
Normal file
|
@ -0,0 +1,105 @@
|
|||
// 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 com.google.domain.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 com.google.domain.registry.request.Response;
|
||||
|
||||
import org.joda.time.DateTime;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/** 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) {
|
||||
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));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendJavaScriptRedirect(String redirectUrl) {
|
||||
checkResponsePerformedOnce();
|
||||
this.status = 200;
|
||||
this.payload = "Javascript redirect to " + redirectUrl;
|
||||
}
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue