|
| 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 Xunit; |
| 16 | + |
| 17 | +namespace OnixLabs.Security.Cryptography.UnitTests; |
| 18 | + |
| 19 | +public sealed class SecretTests |
| 20 | +{ |
| 21 | + [Fact(DisplayName = "Secret should be constructable from bytes")] |
| 22 | + public void SecretShouldBeConstructableFromBytes() |
| 23 | + { |
| 24 | + // Given |
| 25 | + byte[] value = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; |
| 26 | + const string expected = "000102030405060708090a0b0c0d0e0f"; |
| 27 | + |
| 28 | + // When |
| 29 | + Secret candidate = new(value); |
| 30 | + string actual = candidate.ToString(); |
| 31 | + |
| 32 | + // Then |
| 33 | + Assert.Equal(expected, actual); |
| 34 | + } |
| 35 | + |
| 36 | + [Fact(DisplayName = "Secret value should not be modified when altering the original byte array")] |
| 37 | + public void SecretValueShouldNotBeModifiedWhenAlteringTheOriginalByteArray() |
| 38 | + { |
| 39 | + // Given |
| 40 | + byte[] value = [1, 2, 3, 4]; |
| 41 | + Secret candidate = new(value); |
| 42 | + const string expected = "01020304"; |
| 43 | + |
| 44 | + // When |
| 45 | + value[0] = 0; |
| 46 | + string actual = candidate.ToString(); |
| 47 | + |
| 48 | + // Then |
| 49 | + Assert.Equal(expected, actual); |
| 50 | + } |
| 51 | + |
| 52 | + [Fact(DisplayName = "Secret value should not be modified when altering the obtained byte array")] |
| 53 | + public void SecretValueShouldNotBeModifiedWhenAlteringTheObtainedByteArray() |
| 54 | + { |
| 55 | + // Given |
| 56 | + Secret candidate = new([1, 2, 3, 4]); |
| 57 | + const string expected = "01020304"; |
| 58 | + |
| 59 | + // When |
| 60 | + byte[] value = candidate.ToByteArray(); |
| 61 | + value[0] = 0; |
| 62 | + string actual = candidate.ToString(); |
| 63 | + |
| 64 | + // Then |
| 65 | + Assert.Equal(expected, actual); |
| 66 | + } |
| 67 | + |
| 68 | + [Fact(DisplayName = "Identical secret values should be considered equal")] |
| 69 | + public void IdenticalSecretValuesShouldBeConsideredEqual() |
| 70 | + { |
| 71 | + // Given |
| 72 | + Secret left = new([1, 2, 3, 4]); |
| 73 | + Secret right = new([1, 2, 3, 4]); |
| 74 | + |
| 75 | + // Then |
| 76 | + Assert.Equal(left, right); |
| 77 | + Assert.True(left.Equals(right)); |
| 78 | + Assert.True(left == right); |
| 79 | + } |
| 80 | + |
| 81 | + [Fact(DisplayName = "Different secret values should not be considered equal")] |
| 82 | + public void DifferentSecretValuesShouldNotBeConsideredEqual() |
| 83 | + { |
| 84 | + // Given |
| 85 | + Secret left = new([1, 2, 3, 4]); |
| 86 | + Secret right = new([5, 6, 7, 8]); |
| 87 | + |
| 88 | + // Then |
| 89 | + Assert.NotEqual(left, right); |
| 90 | + Assert.False(left.Equals(right)); |
| 91 | + Assert.True(left != right); |
| 92 | + } |
| 93 | + |
| 94 | + [Fact(DisplayName = "Identical secret values should produce identical hash codes")] |
| 95 | + public void IdenticalSecretValuesShouldProduceIdenticalSecretCodes() |
| 96 | + { |
| 97 | + // Given |
| 98 | + Secret left = new([1, 2, 3, 4]); |
| 99 | + Secret right = new([1, 2, 3, 4]); |
| 100 | + |
| 101 | + // When |
| 102 | + int leftHashCode = left.GetHashCode(); |
| 103 | + int rightHashCode = right.GetHashCode(); |
| 104 | + |
| 105 | + // Then |
| 106 | + Assert.Equal(leftHashCode, rightHashCode); |
| 107 | + } |
| 108 | + |
| 109 | + [Fact(DisplayName = "Different secret values should produce different hash codes")] |
| 110 | + public void DifferentSecretValuesShouldProduceDifferentSecretCodes() |
| 111 | + { |
| 112 | + // Given |
| 113 | + Secret left = new([1, 2, 3, 4]); |
| 114 | + Secret right = new([5, 6, 7, 8]); |
| 115 | + |
| 116 | + // When |
| 117 | + int leftHashCode = left.GetHashCode(); |
| 118 | + int rightHashCode = right.GetHashCode(); |
| 119 | + |
| 120 | + // Then |
| 121 | + Assert.NotEqual(leftHashCode, rightHashCode); |
| 122 | + } |
| 123 | +} |
0 commit comments