| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- //
- // IPEndPointTest.cs - NUnit Test Cases for System.Net.IPEndPoint
- //
- // Authors:
- // Lawrence Pit ([email protected])
- // Martin Willemoes Hansen ([email protected])
- //
- // (C) 2003 Martin Willemoes Hansen
- //
- using NUnit.Framework;
- using System;
- using System.Net;
- using System.Runtime.InteropServices;
- namespace MonoTests.System.Net
- {
- [TestFixture]
- public class IPEndPointTest
- {
- private const int MyPort = 42;
- private const int MyMaxPort = 65535;
- private const int MyMinPort = 0;
- private const string MyIPAddressString = "192.168.1.1";
- private IPAddress ipAddress;
- private long ip;
- private IPEndPoint endPoint1;
- private IPEndPoint endPoint2;
- [SetUp]
- public void GetReady()
- {
- ipAddress = IPAddress.Parse (MyIPAddressString);
- ip = ipAddress.Address;
- endPoint1 = new IPEndPoint (ipAddress, MyPort);
- endPoint2 = new IPEndPoint (ip, MyPort);
- }
- [Test]
- public void PublicFields ()
- {
- Assertion.AssertEquals ("MinPort", IPEndPoint.MinPort, MyMinPort);
- Assertion.AssertEquals ("MaxPort", IPEndPoint.MaxPort, MyMaxPort);
- }
- [Test]
- public void Constructors ()
- {
- try {
- new IPEndPoint (null, 0);
- Assertion.Fail ("Should raise an ArgumentNullException");
- } catch (ArgumentNullException) {
- }
- try {
- new IPEndPoint (ipAddress, MyMinPort - 1);
- Assertion.Fail ("Should raise an ArgumentOutOfRangeException #1");
- } catch (ArgumentOutOfRangeException) {
- }
- try {
- new IPEndPoint (ipAddress, MyMaxPort + 1);
- Assertion.Fail ("Should raise an ArgumentOutOfRangeException #2");
- } catch (ArgumentOutOfRangeException) {
- }
- try {
- new IPEndPoint (ip, MyMinPort -1);
- Assertion.Fail ("Should raise an ArgumentOutOfRangeException #3");
- } catch (ArgumentOutOfRangeException) {
- }
- try {
- new IPEndPoint (ip, MyMaxPort + 1);
- Assertion.Fail ("Should raise an ArgumentOutOfRangeException #4");
- } catch (ArgumentOutOfRangeException) {
- }
- }
- [Test]
- public void PortProperty ()
- {
- try {
- endPoint1.Port = MyMinPort - 1;
- Assertion.Fail ("Should raise an ArgumentOutOfRangeException #1");
- } catch (ArgumentOutOfRangeException) {
- }
- try {
- endPoint1.Port = MyMaxPort + 1;
- Assertion.Fail ("Should raise an ArgumentOutOfRangeException #2");
- } catch (ArgumentOutOfRangeException) {
- }
- }
- [Test]
- public void CreateAndSerialize()
- {
- SocketAddress addr = endPoint1.Serialize ();
- EndPoint endPoint3 = endPoint2.Create (addr);
- Assertion.Assert ("#1", endPoint1.Equals (endPoint3));
- IPAddress ipAddress = IPAddress.Parse ("255.255.255.255");
- IPEndPoint endPoint4 = new IPEndPoint (ipAddress, MyMaxPort);
- addr = endPoint4.Serialize ();
- EndPoint endPoint5 = endPoint2.Create(addr);
- Assertion.Assert ("#2", endPoint4.Equals (endPoint5));
- Assertion.AssertEquals ("#3", endPoint5.ToString (), "255.255.255.255:" + MyMaxPort);
- }
- [Test]
- public void Equals ()
- {
- Assertion.Assert("Equals", endPoint1.Equals (endPoint2));
- Assertion.Assert("Not Equals", !endPoint1.Equals (new IPEndPoint (ip, MyPort + 1)));
- }
- [Test]
- public void GetHashCodeTest ()
- {
- Assertion.AssertEquals(endPoint1.GetHashCode(), endPoint2.GetHashCode());
- }
- [Test]
- public void ToStringTest ()
- {
- Assertion.AssertEquals("ToString #1", endPoint1.ToString (), MyIPAddressString + ":" + MyPort);
- Assertion.AssertEquals("ToString #2", endPoint2.ToString (), MyIPAddressString + ":" + MyPort);
- }
- }
- }
|