mirror of
https://github.com/google/nomulus
synced 2026-01-05 04:56:03 +00:00
Add a converter for CurrencyUnits stored in the database (#334)
* Add a converter for CurrencyUnits stored in the database This uses the well-known String representation for currency units. It also provides a base class for other converters that will be persisting the toString() representation. * Add DB and formatting changes * Add tests, make minor fixes
This commit is contained in:
@@ -35,7 +35,7 @@ public abstract class BaseMetrics {
|
||||
* nomulus -e production list_registrars -f clientCertificateHash | grep $HASH
|
||||
* </pre>
|
||||
*/
|
||||
protected static final ImmutableSet<LabelDescriptor> LABELS =
|
||||
protected static final ImmutableSet<LabelDescriptor> LABELS =
|
||||
ImmutableSet.of(
|
||||
LabelDescriptor.create("protocol", "Name of the protocol."),
|
||||
LabelDescriptor.create(
|
||||
|
||||
@@ -158,12 +158,9 @@ public class FrontendMetricsHandlerTest {
|
||||
Duration latency2 = new Duration(requestTime2, responseTime2);
|
||||
Duration latency3 = new Duration(requestTime3, responseTime3);
|
||||
|
||||
verify(metrics)
|
||||
.responseSent(PROTOCOL_NAME, CLIENT_CERT_HASH, latency1);
|
||||
verify(metrics)
|
||||
.responseSent(PROTOCOL_NAME, CLIENT_CERT_HASH, latency2);
|
||||
verify(metrics)
|
||||
.responseSent(PROTOCOL_NAME, CLIENT_CERT_HASH, latency3);
|
||||
verify(metrics).responseSent(PROTOCOL_NAME, CLIENT_CERT_HASH, latency1);
|
||||
verify(metrics).responseSent(PROTOCOL_NAME, CLIENT_CERT_HASH, latency2);
|
||||
verify(metrics).responseSent(PROTOCOL_NAME, CLIENT_CERT_HASH, latency3);
|
||||
verifyNoMoreInteractions(metrics);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user