|
| 1 | +// Copyright 2020 ONIXLabs |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +using System; |
| 16 | +using System.Collections.Generic; |
| 17 | +using System.Linq; |
| 18 | +using System.Security.Cryptography; |
| 19 | +using OnixLabs.Core; |
| 20 | +using OnixLabs.Security.Cryptography.UnitTests.Data; |
| 21 | +using Xunit; |
| 22 | + |
| 23 | +namespace OnixLabs.Security.Cryptography.UnitTests; |
| 24 | + |
| 25 | +public sealed class MerkleTreeGenericTests |
| 26 | +{ |
| 27 | + private static readonly HashAlgorithm Algorithm = SHA256.Create(); |
| 28 | + |
| 29 | + private readonly IEnumerable<MerkleNode> setA = |
| 30 | + [ |
| 31 | + new MerkleNode("abc", 123, "1953-05-08T01:00:59Z".ToDateTime(), Guid.Parse("18d1e14c-9762-4b2c-8774-3f053e8579e0")), |
| 32 | + new MerkleNode("def", 456, "1953-05-08T06:30:00Z".ToDateTime(), Guid.Parse("a5d0ad36-f9a6-4fb0-9374-aa658eb19a51")), |
| 33 | + new MerkleNode("hij", 789, "1953-05-08T12:00:33Z".ToDateTime(), Guid.Parse("0d324d48-d451-416e-ac4d-fed1a324d446")), |
| 34 | + new MerkleNode("klm", 101, "1953-05-08T18:30:00Z".ToDateTime(), Guid.Parse("dc2bb378-114e-4f5d-8674-92729a67fe3d")), |
| 35 | + new MerkleNode("nop", 112, "1953-05-08T23:00:59Z".ToDateTime(), Guid.Parse("193863c7-3bfa-4a3c-874a-a99d98b38358")) |
| 36 | + ]; |
| 37 | + |
| 38 | + private readonly IEnumerable<MerkleNode> setB = |
| 39 | + [ |
| 40 | + new MerkleNode("qrs", 123, "1900-05-08T01:00:59Z".ToDateTime(), Guid.Parse("893576c9-7cb1-4653-a7c4-21e5ba9e7275")), |
| 41 | + new MerkleNode("tuv", 456, "1901-05-08T06:30:00Z".ToDateTime(), Guid.Parse("e7543a7e-3a52-48f5-842e-9448931f1cde")), |
| 42 | + new MerkleNode("qxy", 789, "1902-05-08T12:00:33Z".ToDateTime(), Guid.Parse("d228ab75-d36a-4392-9c51-888a5b7f9db7")), |
| 43 | + new MerkleNode("zab", 101, "1903-05-08T18:30:00Z".ToDateTime(), Guid.Parse("f73180c0-1fc8-4492-ae5d-f0b8962177a8")) |
| 44 | + ]; |
| 45 | + |
| 46 | + [Fact(DisplayName = "Identical Merkle trees should be considered equal")] |
| 47 | + public void IdenticalMerkleTreesShouldBeConsideredEqual() |
| 48 | + { |
| 49 | + // Given / When |
| 50 | + MerkleTree<MerkleNode> a = MerkleTree.Create(setA, Algorithm); |
| 51 | + MerkleTree<MerkleNode> b = MerkleTree.Create(setA, Algorithm); |
| 52 | + |
| 53 | + // Then |
| 54 | + Assert.Equal(a, b); |
| 55 | + Assert.Equal(a.Hash, b.Hash); |
| 56 | + } |
| 57 | + |
| 58 | + [Fact(DisplayName = "Different Merkle trees should not be considered equal")] |
| 59 | + public void DifferentMerkleTreesShouldNotBeConsideredEqual() |
| 60 | + { |
| 61 | + // Given / When |
| 62 | + MerkleTree<MerkleNode> a = MerkleTree.Create(setA, Algorithm); |
| 63 | + MerkleTree<MerkleNode> b = MerkleTree.Create(setB, Algorithm); |
| 64 | + |
| 65 | + // Then |
| 66 | + Assert.NotEqual(a, b); |
| 67 | + Assert.NotEqual(a.Hash, b.Hash); |
| 68 | + } |
| 69 | + |
| 70 | + [Fact(DisplayName = "MerkleTree.GetLeafHashes should produce the same leaf hashes that the tree was constructed with")] |
| 71 | + public void MerkleTreeGetLeafHashesShouldProduceTheSameLeafHashesThatTheTreeWasConstructedWith() |
| 72 | + { |
| 73 | + // Given |
| 74 | + IEnumerable<Hash> expected = setA.Select(value => value.ComputeHash(Algorithm)); |
| 75 | + MerkleTree<MerkleNode> candidate = MerkleTree.Create(setA, Algorithm); |
| 76 | + |
| 77 | + // When |
| 78 | + IEnumerable<Hash> actual = candidate.GetLeafHashes(); |
| 79 | + |
| 80 | + // Then |
| 81 | + Assert.Equal(expected, actual); |
| 82 | + } |
| 83 | + |
| 84 | + [Fact(DisplayName = "MerkleTree.GetLeafValues should produce the same leaf values that the tree was constructed with")] |
| 85 | + public void MerkleTreeGetLeafValuesShouldProduceTheSameLeafValuesThatTheTreeWasConstructedWith() |
| 86 | + { |
| 87 | + // Given |
| 88 | + MerkleTree<MerkleNode> candidate = MerkleTree.Create(setA, Algorithm); |
| 89 | + |
| 90 | + // When |
| 91 | + IEnumerable<MerkleNode> actual = candidate.GetLeafValues(); |
| 92 | + |
| 93 | + // Then |
| 94 | + Assert.Equal(setA, actual); |
| 95 | + } |
| 96 | + |
| 97 | + [Fact(DisplayName = "MerkleTree.ToMerkleTree should produce a hash-only, non-generic Merkle tree that is equal in value")] |
| 98 | + public void MerkleTreeToMerkleTreeShouldProduceAHashOnlyNonGenericMerkleTreeThatIsEqualInValue() |
| 99 | + { |
| 100 | + // Given |
| 101 | + MerkleTree<MerkleNode> a = MerkleTree.Create(setA, Algorithm); |
| 102 | + |
| 103 | + // When |
| 104 | + MerkleTree b = a.ToMerkleTree(Algorithm); |
| 105 | + |
| 106 | + // Then |
| 107 | + Assert.Equal(a, b); |
| 108 | + Assert.Equal(a.Hash, b.Hash); |
| 109 | + } |
| 110 | +} |
0 commit comments