mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-21 07:09:56 +01:00
[bramble] Implement equals() and hashCode() for AuthorView
This commit is contained in:
@@ -35,4 +35,18 @@ public class AuthorInfo {
|
|||||||
return alias;
|
return alias;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int hashCode() {
|
||||||
|
int hashCode = status.ordinal();
|
||||||
|
if (alias != null) hashCode += alias.hashCode();
|
||||||
|
return hashCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean equals(Object o) {
|
||||||
|
if (!(o instanceof AuthorInfo)) return false;
|
||||||
|
AuthorInfo info = (AuthorInfo) o;
|
||||||
|
return status == info.status &&
|
||||||
|
(alias == null ? info.alias == null : alias.equals(info.alias));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,42 @@
|
|||||||
|
package org.briarproject.bramble.api.identity;
|
||||||
|
|
||||||
|
import org.briarproject.bramble.test.BrambleTestCase;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import static org.briarproject.bramble.api.identity.AuthorInfo.Status.NONE;
|
||||||
|
import static org.briarproject.bramble.api.identity.AuthorInfo.Status.VERIFIED;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
|
||||||
|
public class AuthorInfoTest extends BrambleTestCase {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEquals() {
|
||||||
|
assertEquals(
|
||||||
|
new AuthorInfo(NONE),
|
||||||
|
new AuthorInfo(NONE, null)
|
||||||
|
);
|
||||||
|
assertEquals(
|
||||||
|
new AuthorInfo(NONE, "test"),
|
||||||
|
new AuthorInfo(NONE, "test")
|
||||||
|
);
|
||||||
|
|
||||||
|
assertNotEquals(
|
||||||
|
new AuthorInfo(NONE),
|
||||||
|
new AuthorInfo(VERIFIED)
|
||||||
|
);
|
||||||
|
assertNotEquals(
|
||||||
|
new AuthorInfo(NONE, "test"),
|
||||||
|
new AuthorInfo(NONE)
|
||||||
|
);
|
||||||
|
assertNotEquals(
|
||||||
|
new AuthorInfo(NONE),
|
||||||
|
new AuthorInfo(NONE, "test")
|
||||||
|
);
|
||||||
|
assertNotEquals(
|
||||||
|
new AuthorInfo(NONE, "a"),
|
||||||
|
new AuthorInfo(NONE, "b")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user