use of com.faforever.server.entity.AvatarAssociation in project faf-java-server by FAForever.
the class ClientServiceTest method sendUserDetails.
@Test
public void sendUserDetails() throws Exception {
Avatar avatar = new Avatar().setUrl("http://example.com").setDescription("Tooltip");
player.setAvailableAvatars(Collections.singletonList(new AvatarAssociation().setAvatar(avatar).setPlayer(player).setSelected(true))).setGlobalRating((GlobalRating) new GlobalRating().setNumGames(12).setMean(1100d).setDeviation(100d)).setLadder1v1Rating((Ladder1v1Rating) new Ladder1v1Rating().setMean(900d).setDeviation(50d)).setClanMemberships(Collections.singletonList(new ClanMembership().setClan(new Clan().setTag("FOO")))).setCountry("CH").setLogin("JUnit").setId(5);
instance.sendLoginDetails(player, player);
ArgumentCaptor<PlayerResponse> captor = ArgumentCaptor.forClass(PlayerResponse.class);
verify(clientGateway).send(captor.capture(), any());
PlayerResponse response = captor.getValue();
assertThat(response.getPlayerId(), is(5));
assertThat(response.getUsername(), is("JUnit"));
assertThat(response.getPlayer().getAvatar().getDescription(), is("Tooltip"));
assertThat(response.getPlayer().getAvatar().getUrl(), is("http://example.com"));
assertThat(response.getPlayer().getGlobalRating().getMean(), is(1100d));
assertThat(response.getPlayer().getGlobalRating().getDeviation(), is(100d));
assertThat(response.getPlayer().getLadder1v1Rating().getMean(), is(900d));
assertThat(response.getPlayer().getLadder1v1Rating().getDeviation(), is(50d));
assertThat(response.getPlayer().getNumberOfGames(), is(12));
assertThat(response.getPlayer().getClanTag(), is("FOO"));
assertThat(response.getCountry(), is("CH"));
}
use of com.faforever.server.entity.AvatarAssociation in project faf-java-server by FAForever.
the class ClientService method toPlayerInformationResponse.
private PlayerResponse toPlayerInformationResponse(Player player) {
Optional<PlayerResponse.Player.Avatar> avatar = player.getAvailableAvatars().stream().filter(AvatarAssociation::isSelected).findFirst().map(association -> {
com.faforever.server.entity.Avatar avatarEntity = association.getAvatar();
return new PlayerResponse.Player.Avatar(avatarEntity.getUrl(), avatarEntity.getDescription());
});
Optional<Rating> globalRating = Optional.ofNullable(player.getGlobalRating()).map(rating -> new Rating(rating.getMean(), rating.getDeviation()));
Optional<Rating> ladder1v1Rating = Optional.ofNullable(player.getLadder1v1Rating()).map(rating -> new Rating(rating.getMean(), rating.getDeviation()));
return new PlayerResponse(player.getId(), player.getLogin(), player.getCountry(), new PlayerResponse.Player(globalRating.orElse(null), ladder1v1Rating.orElse(null), Optional.ofNullable(player.getGlobalRating()).map(GlobalRating::getNumGames).orElse(0), avatar.orElse(null), Optional.ofNullable(player.getClan()).map(Clan::getTag).orElse(null)));
}
Aggregations