Skip to content

Commit

Permalink
validate DropwizardMetricName equals (#12559)
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis authored Mar 6, 2024
1 parent edebbab commit 3c2b100
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
*/
package org.apache.pinot.plugin.metrics.dropwizard;

import java.util.Objects;
import org.apache.pinot.spi.metrics.PinotMetricName;


public class DropwizardMetricName implements PinotMetricName {
public final class DropwizardMetricName implements PinotMetricName {
private final String _metricName;

public DropwizardMetricName(Class<?> klass, String name) {
Expand Down Expand Up @@ -49,15 +50,15 @@ public boolean equals(Object obj) {
return false;
}
DropwizardMetricName that = (DropwizardMetricName) obj;
return _metricName.equals(that._metricName);
return Objects.equals(_metricName, that._metricName);
}

/**
* Overrides hashCode method by calling the hashCode method from the actual metric name.
*/
@Override
public int hashCode() {
return _metricName.hashCode();
return Objects.hashCode(_metricName);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.pinot.plugin.metrics.dropwizard;

import nl.jqno.equalsverifier.EqualsVerifier;
import org.testng.annotations.Test;


public class DropwizardMetricNameTest {
@Test
public void testEqualsContract() {
EqualsVerifier.forClass(DropwizardMetricName.class).verify();
}
}
5 changes: 5 additions & 0 deletions pinot-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
Expand Down

0 comments on commit 3c2b100

Please sign in to comment.