mirror of
https://github.com/google/nomulus.git
synced 2025-05-14 16:37:13 +02:00
Most of the changes in this CL were made manually. I've tried to preserve all information (and of course behavior!), but the format and grammar of the messages does change. For example before-and-after messages, see the LSC doc. In some of the CLs in this round (e.g., jscomp), I don't know a lot about the domain being tested, and the assertions are complex, so please let me know if my new phrasing is wrong or confusing. Thanks again for your patience with all the Truth changes lately. END_PUBLIC More information: [] Tested: TAP for global presubmit queue [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=248543745
82 lines
2.9 KiB
Java
82 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.truth.Fact.simpleFact;
|
|
import static com.google.common.truth.OptionalSubject.optionals;
|
|
import static com.google.common.truth.Truth.assertAbout;
|
|
import static google.registry.util.PreconditionsUtils.checkArgumentNotNull;
|
|
|
|
import com.google.common.truth.FailureMetadata;
|
|
import com.google.common.truth.Subject;
|
|
import google.registry.model.eppoutput.Result.Code;
|
|
import google.registry.monitoring.whitebox.EppMetric;
|
|
import google.registry.testing.TruthChainer.And;
|
|
import java.util.Optional;
|
|
|
|
/** Utility methods for asserting things about {@link EppMetric} instances. */
|
|
public class EppMetricSubject extends Subject<EppMetricSubject, EppMetric> {
|
|
|
|
private final EppMetric actual;
|
|
|
|
public EppMetricSubject(FailureMetadata failureMetadata, EppMetric subject) {
|
|
super(failureMetadata, subject);
|
|
this.actual = subject;
|
|
}
|
|
|
|
public static EppMetricSubject assertThat(EppMetric subject) {
|
|
return assertAbout(SUBJECT_FACTORY).that(subject);
|
|
}
|
|
|
|
public And<EppMetricSubject> hasClientId(String clientId) {
|
|
return hasValue(clientId, actual.getClientId(), "getClientId()");
|
|
}
|
|
|
|
public And<EppMetricSubject> hasCommandName(String commandName) {
|
|
return hasValue(commandName, actual.getCommandName(), "getCommandName()");
|
|
}
|
|
|
|
public And<EppMetricSubject> hasStatus(Code status) {
|
|
return hasValue(status, actual.getStatus(), "getStatus()");
|
|
}
|
|
|
|
public And<EppMetricSubject> hasNoStatus() {
|
|
if (actual.getStatus().isPresent()) {
|
|
failWithActual(simpleFact("expected to have no status"));
|
|
}
|
|
return new And<>(this);
|
|
}
|
|
|
|
public And<EppMetricSubject> hasTld(String tld) {
|
|
return hasValue(tld, actual.getTld(), "getTld()");
|
|
}
|
|
|
|
public And<EppMetricSubject> hasNoTld() {
|
|
if (actual.getTld().isPresent()) {
|
|
failWithActual(simpleFact("expected to have no tld"));
|
|
}
|
|
return new And<>(this);
|
|
}
|
|
|
|
private <E> And<EppMetricSubject> hasValue(E expected, Optional<E> actual, String name) {
|
|
checkArgumentNotNull(expected, "Expected value cannot be null");
|
|
check(name).about(optionals()).that(actual).hasValue(expected);
|
|
return new And<>(this);
|
|
}
|
|
|
|
/** {@link Subject.Factory} for assertions about {@link EppMetric} objects. */
|
|
private static final Subject.Factory<EppMetricSubject, EppMetric> SUBJECT_FACTORY =
|
|
EppMetricSubject::new;
|
|
}
|