mpir/build.vc11/mpir.net/mpir.net-tests/HugeIntTests/ConstructionAndDisposal.cs

164 lines
5.0 KiB
C#

/*
Copyright 2014 Alex Dyachenko
This file is part of the MPIR Library.
The MPIR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
The MPIR Library 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the MPIR Library. If not, see http://www.gnu.org/licenses/.
*/
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace MPIR.Tests.HugeIntTests
{
[TestClass]
public class ConstructionAndDisposal
{
[TestMethod]
public void DefaultConstructor()
{
using (var a = new HugeInt())
{
Assert.AreNotEqual(0, a.NumberOfLimbsAllocated());
Assert.AreEqual(0, a.NumberOfLimbsUsed());
Assert.AreNotEqual(IntPtr.Zero, a.Limbs());
Assert.AreEqual("0", a.ToString());
}
}
[TestMethod]
public void Dispose()
{
var a = new HugeInt();
a.Dispose();
Assert.AreEqual(0, a.NumberOfLimbsAllocated());
Assert.AreEqual(0, a.NumberOfLimbsUsed());
Assert.AreEqual(IntPtr.Zero, a.Limbs());
}
[TestMethod]
public void ConstructorFromLong()
{
var n = "123456789123456";
using (var a = HugeInt.FromLong(long.Parse(n)))
{
Assert.AreEqual(1, a.NumberOfLimbsAllocated());
Assert.AreEqual(1, a.NumberOfLimbsUsed());
Assert.AreEqual(n, a.ToString());
}
}
[TestMethod]
public void ConstructorFromLongNegative()
{
var n = "-123456789123456";
using (var a = HugeInt.FromLong(long.Parse(n)))
{
Assert.AreEqual(1, a.NumberOfLimbsAllocated());
Assert.AreEqual(-1, a.NumberOfLimbsUsed());
Assert.AreEqual(n, a.ToString());
}
}
[TestMethod]
public void ConstructorFromULong()
{
using (var a = HugeInt.FromUlong(ulong.MaxValue))
{
Assert.AreEqual(1, a.NumberOfLimbsAllocated());
Assert.AreEqual(1, a.NumberOfLimbsUsed());
Assert.AreEqual(ulong.MaxValue.ToString(), a.ToString());
}
}
[TestMethod]
public void ConstructorFromDouble()
{
using (var a = HugeInt.FromDouble(123456789123456.9))
{
Assert.AreEqual("123456789123456", a.ToString());
}
}
[TestMethod]
public void ConstructorFromDoubleNegative()
{
using (var a = HugeInt.FromDouble(-123456789123456.9))
{
Assert.AreEqual("-123456789123456", a.ToString());
}
}
[TestMethod]
public void Allocate()
{
using (var a = new HugeInt(129))
{
Assert.AreEqual(3, a.NumberOfLimbsAllocated());
Assert.AreEqual(0, a.NumberOfLimbsUsed());
Assert.AreEqual("0", a.ToString());
}
}
[TestMethod]
public void Reallocate()
{
using (var a = new HugeInt("543209879487374938579837"))
{
Assert.AreEqual(3, a.NumberOfLimbsAllocated());
Assert.AreEqual("543209879487374938579837", a.ToString());
a.Reallocate(257);
Assert.AreEqual(5, a.NumberOfLimbsAllocated());
Assert.AreEqual("543209879487374938579837", a.ToString());
a.Reallocate(129);
Assert.AreEqual(3, a.NumberOfLimbsAllocated());
Assert.AreEqual("543209879487374938579837", a.ToString());
a.Reallocate(64);
Assert.AreEqual(1, a.NumberOfLimbsAllocated());
Assert.AreEqual("0", a.ToString());
}
}
[TestMethod]
public void StringConstructor()
{
var n = "5432109876543212345789023245987";
using (var a = new HugeInt(n))
{
Assert.AreEqual(2, a.NumberOfLimbsUsed());
Assert.AreEqual(n, a.ToString());
}
}
[TestMethod]
[ExpectedException(typeof(ArgumentException))]
public void StringConstructorInvalid()
{
var a = new HugeInt("12345A");
}
[TestMethod]
public void StringConstructorHex()
{
using (var a = new HugeInt("143210ABCDEF32123457ACDB324598799", 16))
{
Assert.AreEqual(3, a.NumberOfLimbsUsed());
}
}
}
}