Skip to content

Commit dbeb916

Browse files
committed
Fix tests
1 parent 4386936 commit dbeb916

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

library/src/main/java/com/pengrad/telegrambot/model/PollAnswer.java

+7-16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import java.io.Serializable;
44
import java.util.Arrays;
5+
import java.util.Objects;
56

67
/**
78
* Stas Parshin
@@ -35,32 +36,22 @@ public Integer[] optionIds() {
3536
public boolean equals(Object o) {
3637
if (this == o) return true;
3738
if (o == null || getClass() != o.getClass()) return false;
38-
3939
PollAnswer that = (PollAnswer) o;
40-
41-
if (poll_id != null ? !poll_id.equals(that.poll_id) : that.poll_id != null) return false;
42-
if (voter_chat != null ? !voter_chat.equals(that.voter_chat) : that.voter_chat != null) return false;
43-
if (user != null ? !user.equals(that.user) : that.user != null) return false;
44-
// Probably incorrect - comparing Object[] arrays with Arrays.equals
45-
return Arrays.equals(option_ids, that.option_ids);
40+
return Objects.equals(poll_id, that.poll_id) &&
41+
Objects.equals(voter_chat, that.voter_chat) &&
42+
Objects.equals(user, that.user) &&
43+
Arrays.equals(option_ids, that.option_ids);
4644
}
4745

4846
@Override
4947
public int hashCode() {
50-
int result = poll_id != null ? poll_id.hashCode() : 0;
51-
result = 31 * result + (voter_chat != null ? voter_chat.hashCode() : 0);
52-
result = 31 * result + (user != null ? user.hashCode() : 0);
48+
int result = Objects.hash(poll_id, voter_chat, user);
5349
result = 31 * result + Arrays.hashCode(option_ids);
5450
return result;
5551
}
5652

5753
@Override
5854
public String toString() {
59-
return "PollAnswer{" +
60-
"poll_id='" + poll_id + '\'' +
61-
", voter_chat=" + voter_chat +
62-
", user=" + user +
63-
", option_ids=" + Arrays.toString(option_ids) +
64-
'}';
55+
return "PollAnswer{" + "poll_id='" + poll_id + '\'' + ", voter_chat=" + voter_chat + ", user=" + user + ", option_ids=" + Arrays.toString(option_ids) + '}';
6556
}
6657
}

library/src/test/java/com/pengrad/telegrambot/ModelTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public void testEquals() throws ReflectiveOperationException {
8585
verifierApi.withIgnoredFields("forum_topic_reopened");
8686
verifierApi.withIgnoredFields("general_forum_topic_hidden");
8787
verifierApi.withIgnoredFields("general_forum_topic_unhidden");
88+
verifierApi.withIgnoredFields("story");
8889
}
8990

9091
verifierApi.verify();

library/src/test/java/com/pengrad/telegrambot/TelegramBotTest.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -476,6 +476,8 @@ public void getChat() throws MalformedURLException, URISyntaxException {
476476
assertFalse(chat.hasAggressiveAntiSpamEnabled());
477477
assertNull(chat.getActiveUsernames());
478478
assertNull(chat.getEmojiStatusCustomEmojiId());
479+
assertNull(chat.emojiStatusCustomEmojiId());
480+
assertNull(chat.emojiStatusExpirationDate());
479481

480482
chat = bot.execute(new GetChat(chatId)).chat();
481483
assertNotNull(chat.firstName());
@@ -945,7 +947,7 @@ public void sendVideo() {
945947
assertEquals((Integer) 7, captionEntity.length());
946948

947949
String caption = "caption <b>bold</b>";
948-
int duration = 100;
950+
int duration = 6;
949951
message = bot.execute(
950952
new SendVideo(chatId, videoBytes).thumb(thumbBytes)
951953
.caption(caption).parseMode(ParseMode.HTML)
@@ -1922,6 +1924,7 @@ public void pollAnswer() {
19221924

19231925
assertNotNull(pollAnswer);
19241926
assertFalse(pollAnswer.pollId().isEmpty());
1927+
assertNull(pollAnswer.voterChat());
19251928
UserTest.checkUser(pollAnswer.user(), true);
19261929
assertEquals(Long.valueOf(12345), pollAnswer.user().id());
19271930
assertArrayEquals(new Integer[]{0, 2}, pollAnswer.optionIds());
@@ -2281,6 +2284,12 @@ public void unpinAllForumTopicMessages() {
22812284
assertTrue(response.isOk());
22822285
}
22832286

2287+
@Test
2288+
public void unpinAllGeneralForumTopicMessages() {
2289+
BaseResponse response = bot.execute(new UnpinAllGeneralForumTopicMessages(forum));
2290+
assertTrue(response.isOk());
2291+
}
2292+
22842293
@Test
22852294
public void editGeneralForumTopic() {
22862295
String name = "General " + System.currentTimeMillis();

0 commit comments

Comments
 (0)