2017-06-29 21:23:39 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
2017-06-29 22:09:41 +01:00
|
|
|
|
// Filename : SpamSum.cs
|
2017-12-19 03:50:57 +00:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2017-06-29 21:23:39 +01:00
|
|
|
|
//
|
2017-12-19 03:50:57 +00: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/>.
|
|
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2018-12-29 17:34:38 +00:00
|
|
|
|
// Copyright © 2011-2019 Natalia Portillo
|
2017-06-29 21:23:39 +01:00
|
|
|
|
// ****************************************************************************/
|
2017-12-19 03:50:57 +00:00
|
|
|
|
|
2017-06-29 21:23:39 +01:00
|
|
|
|
using System.IO;
|
2017-12-19 19:33:46 +00:00
|
|
|
|
using DiscImageChef.Checksums;
|
2018-06-25 19:08:16 +01:00
|
|
|
|
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
|
|
|
|
{
|
2018-02-03 17:39:49 +00:00
|
|
|
|
const string EXPECTED_EMPTY = "3::";
|
2017-12-22 22:18:21 +00:00
|
|
|
|
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();
|
2017-12-22 22:18:21 +00:00
|
|
|
|
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();
|
2017-12-22 22:18:21 +00:00
|
|
|
|
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();
|
2017-12-22 22:18:21 +00:00
|
|
|
|
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();
|
2017-12-22 22:18:21 +00:00
|
|
|
|
Assert.AreEqual(EXPECTED_RANDOM, result);
|
2017-06-29 21:23:39 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2017-12-19 20:33:03 +00:00
|
|
|
|
}
|