Files
Aaru/DiscImageChef.Tests/Checksums/SpamSum.cs

98 lines
3.7 KiB
C#
Raw Normal View History

2017-06-29 21:23:39 +01:00
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
2017-06-29 22:09:41 +01:00
// Filename : SpamSum.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
2017-06-29 21:23:39 +01:00
//
// Component : DiscImageChef unit testing.
2017-06-29 21:23:39 +01:00
//
// --[ License ] --------------------------------------------------------------
//
// 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 (at your option) 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 © 2011-2018 Natalia Portillo
2017-06-29 21:23:39 +01:00
// ****************************************************************************/
2017-06-29 21:23:39 +01:00
using System.IO;
2017-12-19 19:33:46 +00:00
using DiscImageChef.Checksums;
using DiscImageChef.CommonTypes.Interfaces;
2017-12-19 19:33:46 +00:00
using NUnit.Framework;
2017-06-29 21:23:39 +01:00
namespace DiscImageChef.Tests.Checksums
{
[TestFixture]
2017-06-29 22:09:41 +01:00
public class SpamSum
2017-06-29 21:23:39 +01:00
{
const string EXPECTED_EMPTY = "3::";
const string EXPECTED_RANDOM = "24576:3dvzuAsHTQ16pc7O1Q/gS9qze+Swwn9s6IX:8/TQQpaVqze+JN6IX";
2017-06-29 21:23:39 +01:00
[Test]
2017-06-29 22:09:41 +01:00
public void SpamSumEmptyData()
2017-06-29 21:23:39 +01:00
{
2018-06-22 08:08:38 +01:00
byte[] data = new byte[1048576];
FileStream fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "checksums", "empty"), FileMode.Open,
FileAccess.Read);
2017-06-29 21:23:39 +01:00
fs.Read(data, 0, 1048576);
fs.Close();
fs.Dispose();
string result = SpamSumContext.Data(data, out _);
Assert.AreEqual(EXPECTED_EMPTY, result);
2017-06-29 21:23:39 +01:00
}
[Test]
2017-06-29 22:09:41 +01:00
public void SpamSumEmptyInstance()
2017-06-29 21:23:39 +01:00
{
2018-06-22 08:08:38 +01:00
byte[] data = new byte[1048576];
FileStream fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "checksums", "empty"), FileMode.Open,
FileAccess.Read);
2017-06-29 21:23:39 +01:00
fs.Read(data, 0, 1048576);
fs.Close();
fs.Dispose();
2018-02-03 17:01:17 +00:00
IChecksum ctx = new SpamSumContext();
2017-06-29 21:23:39 +01:00
ctx.Update(data);
2017-06-29 22:09:41 +01:00
string result = ctx.End();
Assert.AreEqual(EXPECTED_EMPTY, result);
2017-06-29 21:23:39 +01:00
}
[Test]
2017-06-29 22:09:41 +01:00
public void SpamSumRandomData()
2017-06-29 21:23:39 +01:00
{
2018-06-22 08:08:38 +01:00
byte[] data = new byte[1048576];
FileStream fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "checksums", "random"), FileMode.Open,
FileAccess.Read);
2017-06-29 21:23:39 +01:00
fs.Read(data, 0, 1048576);
fs.Close();
fs.Dispose();
string result = SpamSumContext.Data(data, out _);
Assert.AreEqual(EXPECTED_RANDOM, result);
2017-06-29 21:23:39 +01:00
}
[Test]
2017-06-29 22:09:41 +01:00
public void SpamSumRandomInstance()
2017-06-29 21:23:39 +01:00
{
2018-06-22 08:08:38 +01:00
byte[] data = new byte[1048576];
FileStream fs = new FileStream(Path.Combine(Consts.TestFilesRoot, "checksums", "random"), FileMode.Open,
FileAccess.Read);
2017-06-29 21:23:39 +01:00
fs.Read(data, 0, 1048576);
fs.Close();
fs.Dispose();
2018-02-03 17:01:17 +00:00
IChecksum ctx = new SpamSumContext();
2017-06-29 21:23:39 +01:00
ctx.Update(data);
2017-06-29 22:09:41 +01:00
string result = ctx.End();
Assert.AreEqual(EXPECTED_RANDOM, result);
2017-06-29 21:23:39 +01:00
}
}
2017-12-19 20:33:03 +00:00
}