Search in sources :

Example 1 with AvatarAssociation

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"));
}
Also used : PlayerResponse(com.faforever.server.player.PlayerResponse) Clan(com.faforever.server.entity.Clan) GlobalRating(com.faforever.server.entity.GlobalRating) Ladder1v1Rating(com.faforever.server.entity.Ladder1v1Rating) ClanMembership(com.faforever.server.entity.ClanMembership) AvatarAssociation(com.faforever.server.entity.AvatarAssociation) Avatar(com.faforever.server.entity.Avatar) Test(org.junit.Test)

Example 2 with AvatarAssociation

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)));
}
Also used : PlayerResponse(com.faforever.server.player.PlayerResponse) Rating(com.faforever.server.player.PlayerResponse.Player.Rating) GlobalRating(com.faforever.server.entity.GlobalRating) AvatarAssociation(com.faforever.server.entity.AvatarAssociation)

Aggregations

AvatarAssociation (com.faforever.server.entity.AvatarAssociation)2 GlobalRating (com.faforever.server.entity.GlobalRating)2 PlayerResponse (com.faforever.server.player.PlayerResponse)2 Avatar (com.faforever.server.entity.Avatar)1 Clan (com.faforever.server.entity.Clan)1 ClanMembership (com.faforever.server.entity.ClanMembership)1 Ladder1v1Rating (com.faforever.server.entity.Ladder1v1Rating)1 Rating (com.faforever.server.player.PlayerResponse.Player.Rating)1 Test (org.junit.Test)1