2014-03-04 21:08:50 -05:00
|
|
|
/*
|
|
|
|
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]
|
2014-03-23 15:08:30 -04:00
|
|
|
public class Conversions
|
2014-03-04 21:08:50 -05:00
|
|
|
{
|
|
|
|
[TestMethod]
|
|
|
|
public void ToStringDecimal()
|
|
|
|
{
|
|
|
|
var n = "-23429384756298357462983476598345623984756";
|
|
|
|
using (var a = new HugeInt(n))
|
|
|
|
{
|
|
|
|
Assert.AreEqual(n, a.ToString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
public void ToStringHex()
|
|
|
|
{
|
|
|
|
var n = "-23429abcdef298357462983fedcba345623984756";
|
|
|
|
using (var a = new HugeInt(n, 16))
|
|
|
|
{
|
|
|
|
Assert.AreEqual(n, a.ToString(16));
|
|
|
|
Assert.AreEqual(n.ToUpper(), a.ToString(-16));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-23 15:08:30 -04:00
|
|
|
[TestMethod]
|
|
|
|
public void ToAndFromUlong()
|
|
|
|
{
|
|
|
|
using (var a = new HugeInt())
|
|
|
|
{
|
|
|
|
ulong b = 0xF84739ABCDEF4876;
|
2014-03-23 23:29:30 -04:00
|
|
|
a.SetTo(b);
|
2014-03-23 15:08:30 -04:00
|
|
|
Assert.AreEqual(b.ToString(), a.ToString());
|
|
|
|
|
|
|
|
a.Value = -a;
|
2014-03-23 23:29:30 -04:00
|
|
|
ulong c = a.ToUlong();
|
2014-03-23 15:08:30 -04:00
|
|
|
Assert.AreEqual(b.ToString(), c.ToString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-23 15:11:57 -04:00
|
|
|
[TestMethod]
|
|
|
|
public void ToAndFromLong()
|
|
|
|
{
|
|
|
|
using (var a = new HugeInt())
|
|
|
|
{
|
|
|
|
long b = -0x784739ABCDEF4876;
|
2014-03-23 23:29:30 -04:00
|
|
|
a.SetTo(b);
|
2014-03-23 15:11:57 -04:00
|
|
|
Assert.AreEqual(b.ToString(), a.ToString());
|
|
|
|
|
2014-03-23 23:29:30 -04:00
|
|
|
long c = a.ToLong();
|
2014-03-23 15:11:57 -04:00
|
|
|
Assert.AreEqual(b.ToString(), c.ToString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-23 17:37:00 -04:00
|
|
|
[TestMethod]
|
|
|
|
public void ToAndFromDouble()
|
|
|
|
{
|
|
|
|
using (var a = new HugeInt())
|
|
|
|
using (var lo = new HugeInt())
|
|
|
|
using (var hi = new HugeInt())
|
|
|
|
{
|
2014-03-23 23:29:30 -04:00
|
|
|
a.SetTo(-123.45e20);
|
2014-03-23 17:37:00 -04:00
|
|
|
lo.Value = (a/10000000000).Rounding(RoundingModes.Floor);
|
|
|
|
hi.Value = (a/10000000000).Rounding(RoundingModes.Ceiling);
|
|
|
|
|
|
|
|
Assert.IsTrue(lo.ToString() == "-1234500000000" || hi.ToString() == "-1234500000000");
|
|
|
|
|
2014-03-23 23:29:30 -04:00
|
|
|
double c = a.ToDouble();
|
2014-03-23 17:37:00 -04:00
|
|
|
Assert.AreEqual(-123.45e20, c);
|
2014-03-24 00:04:42 -04:00
|
|
|
|
|
|
|
long exp;
|
|
|
|
a.Value = a + a;
|
|
|
|
c = a.ToDouble(out exp);
|
|
|
|
//TODO refactor (and verify) these asserts
|
|
|
|
Assert.AreEqual("-0.653538858365896", c.ToString());
|
|
|
|
Assert.AreEqual(75, exp);
|
2014-03-23 17:37:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-23 23:39:32 -04:00
|
|
|
[TestMethod]
|
|
|
|
public void FromString()
|
|
|
|
{
|
|
|
|
using (var a = new HugeInt())
|
|
|
|
{
|
|
|
|
var n = "98762934876529834765234123984761";
|
|
|
|
a.SetTo(n);
|
|
|
|
Assert.AreEqual(n, a.ToString());
|
|
|
|
|
|
|
|
n = "-98ABCDEF876529834765234123984761";
|
|
|
|
a.SetTo(n, 16);
|
|
|
|
Assert.AreEqual(n, a.ToString(-16));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
[ExpectedException(typeof(ArgumentException))]
|
|
|
|
public void FromInvalidString()
|
|
|
|
{
|
|
|
|
using (var a = new HugeInt())
|
|
|
|
{
|
|
|
|
a.SetTo("12345A");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-04 21:08:50 -05:00
|
|
|
//todo truncated test
|
|
|
|
}
|
|
|
|
}
|