Package marauroa.common.net.message

Source Code of marauroa.common.net.message.MessageTest$MockMessage

/* $Id: MessageTest.java,v 1.3 2008/02/22 10:28:35 arianne_rpg Exp $ */
/***************************************************************************
*            (C) Copyright 2003 - Marauroa             *
***************************************************************************
***************************************************************************
*                                       *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License as published by  *
*   the Free Software Foundation; either version 2 of the License, or     *
*   (at your option) any later version.                   *
*                                       *
***************************************************************************/
package marauroa.common.net.message;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.nio.channels.SocketChannel;

import marauroa.common.net.InputSerializer;
import marauroa.common.net.OutputSerializer;
import marauroa.common.net.message.Message.MessageType;

import org.junit.Test;

public class MessageTest {

  private static class MockMessage extends Message {

    public MockMessage(MessageType type, SocketChannel channel) {
      super(type, channel);
    }

  }

  @Test
  public final void testGetAddress() throws IOException {
    MockMessage mm = new MockMessage(MessageType.C2S_ACTION, SocketChannel.open());
    assertNull(mm.getAddress());
  }

  @Test
  public final void testGetType() throws IOException {
    MockMessage mm = new MockMessage(MessageType.C2S_ACTION, SocketChannel.open());
    assertTrue(MessageType.C2S_ACTION == mm.getType());
  }

  @Test
  public final void testReadWriteObject() throws IOException {
    MockMessage mmOut = new MockMessage(MessageType.C2S_ACTION, SocketChannel.open());
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    mmOut.setClientID(1);
    mmOut.writeObject(new OutputSerializer(out));
    InputSerializer in = new InputSerializer(new ByteArrayInputStream(out.toByteArray()));
    MockMessage mmInn = new MockMessage(MessageType.C2S_ACTION, SocketChannel.open());

    mmInn.readObject(in);
    assertEquals(mmOut.getClientID(), mmInn.getClientID());
    assertEquals(mmOut.getMessageTimestamp(), mmInn.getMessageTimestamp());
    assertEquals(mmOut.getType(), mmInn.getType());
  }

  @Test
  public final void testInvalidClientId() throws IOException {
    MockMessage mmOut = new MockMessage(MessageType.C2S_ACTION, SocketChannel.open());
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    mmOut.setClientID(Message.CLIENTID_INVALID);
    mmOut.writeObject(new OutputSerializer(out));
    InputSerializer in = new InputSerializer(new ByteArrayInputStream(out.toByteArray()));
    MockMessage mmInn = new MockMessage(MessageType.C2S_ACTION, SocketChannel.open());

    mmInn.readObject(in);
    assertEquals(mmOut.getClientID(), mmInn.getClientID());
    assertEquals(mmOut.getMessageTimestamp(), mmInn.getMessageTimestamp());
    assertEquals(mmOut.getType(), mmInn.getType());
  }

}
TOP

Related Classes of marauroa.common.net.message.MessageTest$MockMessage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.