/*
This file is part of Peers, a java SIP softphone.
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 3 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Copyright 2007, 2008, 2009, 2010 Yohann Martineau
*/
package net.sourceforge.peers.sip.transport;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.net.DatagramSocket;
import java.net.InetAddress;
import java.net.SocketException;
import java.net.UnknownHostException;
import net.sourceforge.peers.Config;
import net.sourceforge.peers.Logger;
import net.sourceforge.peers.media.MediaMode;
import net.sourceforge.peers.sip.PortProvider;
import net.sourceforge.peers.sip.syntaxencoding.SipParser;
import net.sourceforge.peers.sip.syntaxencoding.SipParserException;
import net.sourceforge.peers.sip.syntaxencoding.SipURI;
import net.sourceforge.peers.sip.transaction.TransactionManager;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
public class TransportManagerTestNG {
private TransportManager transportManager;
private volatile int port;
@BeforeTest
protected void init() throws UnknownHostException {
port = PortProvider.getNextPort();
//TODO interface between transport manager and transaction manager
Config config = new Config() {
@Override public void setUserPart(String userPart) {}
@Override public void setSipPort(int sipPort) {}
@Override public void setRtpPort(int rtpPort) {}
@Override public void setPassword(String password) {}
@Override public void setOutboundProxy(SipURI outboundProxy) {}
@Override public void setMediaMode(MediaMode mediaMode) {}
@Override public void setMediaDebug(boolean mediaDebug) {}
@Override public void setLocalInetAddress(InetAddress inetAddress) {}
@Override public void setPublicInetAddress(InetAddress inetAddress) {}
@Override public void setDomain(String domain) {}
@Override public void save() {}
@Override public boolean isMediaDebug() {
return false;
}
@Override public String getUserPart() {
return null;
}
@Override
public int getSipPort() {
return port;
}
@Override
public int getRtpPort() {
return 0;
}
@Override
public String getPassword() {
return null;
}
@Override
public SipURI getOutboundProxy() {
return null;
}
@Override
public MediaMode getMediaMode() {
return null;
}
@Override
public InetAddress getLocalInetAddress() {
InetAddress inetAddress;
try {
inetAddress = InetAddress.getLocalHost();
} catch (UnknownHostException e) {
throw new AssertionError();
}
return inetAddress;
}
@Override
public InetAddress getPublicInetAddress() {
return null;
}
@Override
public String getDomain() {
return null;
}
};
Logger logger = new Logger(null);
transportManager = new TransportManager(new TransactionManager(logger),
config, logger);
}
/*
* FIXME issue with this test: several transport managers are created from
* several tests. Then those transport managers are trying to create datagram
* sockets which binds on the same port (from default configuration file)
*/
//@Test
public void testCreateClientTransport()
throws IOException, SipParserException {
String testMessage = "MESSAGE sip:bob@bilox.com SIP/2.0\r\n" +
"Via: \r\n" +
"\r\n";
int port = 6061;
InetAddress localHost = InetAddress.getLocalHost();
SipRequest sipRequest = (SipRequest)parse(testMessage);
MessageSender messageSender = transportManager.createClientTransport(
sipRequest, localHost, port, "UDP");
assert messageSender != null;
assert messageSender.getLocalPort() > 1024;
String contact = messageSender.getContact();
assert contact != null;
assert !"".equals(contact.trim());
assert contact.indexOf(localHost.getHostAddress()) > -1;
}
//TODO test createClientTransport with ttl
//TODO test sendResponse
@Test (expectedExceptions = SocketException.class)
public void checkServerConnection()
throws SocketException, UnknownHostException {
try {
transportManager.createServerTransport("UDP", port);
} catch (IOException e) {
e.printStackTrace();
assert false;
}
new DatagramSocket(port, InetAddress.getLocalHost());
}
private SipMessage parse(String message) throws IOException, SipParserException {
ByteArrayInputStream bais = new ByteArrayInputStream(message.getBytes());
SipParser sipParser = new SipParser();
SipMessage sipMessage = sipParser.parse(bais);
return sipMessage;
}
}