mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 12:07:51 +02:00
aka regexing for fun and profit. This also makes sure that there are no statements after the throwing statement, since these would be dead code. There were a surprising number of places with assertions after the throw, and none of these are actually triggered in tests ever. When I found these, I replaced them with try/catch/rethrow which makes the assertions actually happen: before: // This is the ExceptionRule that checks EppException marshaling thrown.expect(FooException.class); doThrowingThing(); assertSomething(); // Dead code! after: try { doThrowingThing(); assertWithMessage("...").fail(); } catch (FooException e) { assertSomething(); // For EppExceptions: assertAboutEppExceptins().that(e).marshalsToXml(); } To make this work, I added EppExceptionSubject. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=135793407
69 lines
2.7 KiB
Java
69 lines
2.7 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.testing;
|
|
|
|
import static com.google.common.truth.Truth.assertAbout;
|
|
import static com.google.common.truth.Truth.assertThat;
|
|
import static google.registry.flows.EppXmlTransformer.marshal;
|
|
import static google.registry.util.DateTimeUtils.START_OF_TIME;
|
|
|
|
import com.google.common.truth.AbstractVerb.DelegatedVerb;
|
|
import com.google.common.truth.FailureStrategy;
|
|
import com.google.common.truth.Subject;
|
|
import com.google.common.truth.SubjectFactory;
|
|
import google.registry.flows.EppException;
|
|
import google.registry.model.eppcommon.Trid;
|
|
import google.registry.model.eppoutput.EppOutput;
|
|
import google.registry.model.eppoutput.EppResponse;
|
|
import google.registry.testing.TruthChainer.And;
|
|
import google.registry.xml.ValidationMode;
|
|
import google.registry.xml.XmlException;
|
|
|
|
/** Utility methods for asserting things about {@link EppException} instances. */
|
|
public class EppExceptionSubject extends Subject<EppExceptionSubject, EppException> {
|
|
|
|
public EppExceptionSubject(FailureStrategy strategy, EppException subject) {
|
|
super(strategy, subject);
|
|
}
|
|
|
|
public And<EppExceptionSubject> hasMessage(String expected) {
|
|
assertThat(actual()).hasMessage(expected);
|
|
return new And<>(this);
|
|
}
|
|
|
|
public And<EppExceptionSubject> marshalsToXml() {
|
|
// Attempt to marshal the exception to EPP. If it doesn't work, this will throw.
|
|
try {
|
|
marshal(
|
|
EppOutput.create(new EppResponse.Builder()
|
|
.setTrid(Trid.create(null))
|
|
.setResult(actual().getResult())
|
|
.setExecutionTime(START_OF_TIME)
|
|
.build()),
|
|
ValidationMode.STRICT);
|
|
} catch (XmlException e) {
|
|
fail("fails to marshal to XML: " + e.getMessage());
|
|
}
|
|
return new And<>(this);
|
|
}
|
|
|
|
public static DelegatedVerb<EppExceptionSubject, EppException> assertAboutEppExceptions() {
|
|
return assertAbout(new SubjectFactory<EppExceptionSubject, EppException>() {
|
|
@Override
|
|
public EppExceptionSubject getSubject(FailureStrategy strategy, EppException subject) {
|
|
return new EppExceptionSubject(strategy, subject);
|
|
}});
|
|
}
|
|
}
|