|
13 | 13 | // limitations under the License.
|
14 | 14 |
|
15 | 15 | using System;
|
| 16 | +using OnixLabs.Core.UnitTests.Data; |
16 | 17 | using Xunit;
|
17 | 18 |
|
18 | 19 | namespace OnixLabs.Core.UnitTests;
|
19 | 20 |
|
20 | 21 | public sealed class PreconditionTests
|
21 | 22 | {
|
22 |
| - [Fact(DisplayName = "Check should throw an ArgumentException when the condition is false")] |
23 |
| - public void CheckShouldProduceExpectedResult() |
| 23 | + [Fact(DisplayName = "Check should throw an InvalidOperationException when the condition is false")] |
| 24 | + public void CheckShouldThrowInvalidOperationExceptionWhenConditionIsFalse() |
24 | 25 | {
|
25 | 26 | // When
|
26 |
| - InvalidOperationException exception = Assert.Throws<InvalidOperationException>(() => Check(false)); |
| 27 | + Exception exception = Assert.Throws<InvalidOperationException>(() => Check(false)); |
27 | 28 |
|
28 | 29 | // Then
|
29 |
| - Assert.Equal("Check failed.", exception.Message); |
| 30 | + Assert.Equal("Argument must satisfy the specified condition.", exception.Message); |
30 | 31 | }
|
31 | 32 |
|
32 |
| - [Fact(DisplayName = "CheckNotNull should throw an ArgumentNullException when the condition is null")] |
33 |
| - public void CheckNotNullShouldProduceExpectedResult() |
| 33 | + [Fact(DisplayName = "CheckNotNull should throw an InvalidOperationException when the condition is null")] |
| 34 | + public void CheckNotNullShouldThrowInvalidOperationExceptionWhenConditionIsNull() |
34 | 35 | {
|
35 | 36 | // When
|
36 |
| - InvalidOperationException exception = Assert.Throws<InvalidOperationException>(() => CheckNotNull<object>(null)); |
| 37 | + Exception exception = Assert.Throws<InvalidOperationException>(() => CheckNotNull<object>(null)); |
37 | 38 |
|
38 | 39 | // Then
|
39 | 40 | Assert.Equal("Argument must not be null.", exception.Message);
|
40 | 41 | }
|
41 | 42 |
|
| 43 | + [Fact(DisplayName = "CheckNotNullOrEmpty should throw an InvalidOperationException when the value is null")] |
| 44 | + public void CheckNotNullOrEmptyShouldThrowInvalidOperationExceptionWhenValueIsNull() |
| 45 | + { |
| 46 | + // When |
| 47 | + Exception exception = Assert.Throws<InvalidOperationException>(() => CheckNotNullOrEmpty(null)); |
| 48 | + |
| 49 | + // Then |
| 50 | + Assert.Equal("Argument must not be null or empty.", exception.Message); |
| 51 | + } |
| 52 | + |
| 53 | + [Fact(DisplayName = "CheckNotNullOrEmpty should throw an InvalidOperationException when the value is empty")] |
| 54 | + public void CheckNotNullOrEmptyShouldThrowInvalidOperationExceptionWhenValueIsEmpty() |
| 55 | + { |
| 56 | + // When |
| 57 | + Exception exception = Assert.Throws<InvalidOperationException>(() => CheckNotNullOrEmpty(string.Empty)); |
| 58 | + |
| 59 | + // Then |
| 60 | + Assert.Equal("Argument must not be null or empty.", exception.Message); |
| 61 | + } |
| 62 | + |
| 63 | + [Fact(DisplayName = "CheckNotNullOrWhiteSpace should throw an InvalidOperationException when the value is null")] |
| 64 | + public void CheckNotNullOrWhiteSpaceShouldThrowInvalidOperationExceptionWhenValueIsNull() |
| 65 | + { |
| 66 | + // When |
| 67 | + Exception exception = Assert.Throws<InvalidOperationException>(() => CheckNotNullOrWhiteSpace(null)); |
| 68 | + |
| 69 | + // Then |
| 70 | + Assert.Equal("Argument must not be null or whitespace.", exception.Message); |
| 71 | + } |
| 72 | + |
| 73 | + [Fact(DisplayName = "CheckNotNullOrWhiteSpace should throw an InvalidOperationException when the value is whitespace")] |
| 74 | + public void CheckNotNullOrWhiteSpaceShouldThrowInvalidOperationExceptionWhenValueIsWhiteSpace() |
| 75 | + { |
| 76 | + // When |
| 77 | + Exception exception = Assert.Throws<InvalidOperationException>(() => CheckNotNullOrWhiteSpace(" ")); |
| 78 | + |
| 79 | + // Then |
| 80 | + Assert.Equal("Argument must not be null or whitespace.", exception.Message); |
| 81 | + } |
| 82 | + |
42 | 83 | [Fact(DisplayName = "Require should throw an ArgumentException when the condition is false")]
|
43 |
| - public void RequireShouldProduceExpectedResult() |
| 84 | + public void RequireShouldThrowArgumentExceptionWhenConditionIsFalse() |
44 | 85 | {
|
45 | 86 | // When
|
46 |
| - ArgumentException exception = Assert.Throws<ArgumentException>(() => Require(false)); |
| 87 | + Exception exception = Assert.Throws<ArgumentException>(() => Require(false)); |
47 | 88 |
|
48 | 89 | // Then
|
49 |
| - Assert.Equal("Argument requirement failed.", exception.Message); |
| 90 | + Assert.Equal("Argument must satisfy the specified condition.", exception.Message); |
50 | 91 | }
|
51 | 92 |
|
52 | 93 | [Fact(DisplayName = "RequireWithinRange should throw an ArgumentOutOfRangeException when the condition is false")]
|
53 |
| - public void RequireWithinRangeShouldProduceExpectedResult() |
| 94 | + public void RequireWithinRangeShouldThrowArgumentOutOfRangeExceptionWhenConditionIsFalse() |
54 | 95 | {
|
55 | 96 | // When
|
56 |
| - ArgumentOutOfRangeException exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireWithinRange(false)); |
| 97 | + Exception exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireWithinRange(false)); |
| 98 | + |
| 99 | + // Then |
| 100 | + Assert.Equal("Argument must be within range.", exception.Message); |
| 101 | + } |
| 102 | + |
| 103 | + [Fact(DisplayName = "RequireWithinRangeInclusive should throw an ArgumentOutOfRangeException when the value falls below the specified range")] |
| 104 | + public void RequireWithinRangeInclusiveShouldThrowArgumentOutOfRangeExceptionWhenValueFallsBelowSpecifiedRange() |
| 105 | + { |
| 106 | + // Given |
| 107 | + Exception exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireWithinRangeInclusive(1, 2, 3)); |
| 108 | + |
| 109 | + // Then |
| 110 | + Assert.Equal("Argument must be within range.", exception.Message); |
| 111 | + } |
| 112 | + |
| 113 | + [Fact(DisplayName = "RequireWithinRangeInclusive should throw an ArgumentOutOfRangeException when the value falls above the specified range")] |
| 114 | + public void RequireWithinRangeInclusiveShouldThrowArgumentOutOfRangeExceptionWhenValueFallsAboveSpecifiedRange() |
| 115 | + { |
| 116 | + // Given |
| 117 | + Exception exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireWithinRangeInclusive(4, 2, 3)); |
| 118 | + |
| 119 | + // Then |
| 120 | + Assert.Equal("Argument must be within range.", exception.Message); |
| 121 | + } |
| 122 | + |
| 123 | + [Fact(DisplayName = "RequireWithinRangeExclusive should throw an ArgumentOutOfRangeException when the value falls below the specified range")] |
| 124 | + public void RequireWithinRangeExclusiveShouldThrowArgumentOutOfRangeExceptionWhenValueFallsBelowSpecifiedRange() |
| 125 | + { |
| 126 | + // Given |
| 127 | + Exception exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireWithinRangeExclusive(2, 2, 4)); |
| 128 | + |
| 129 | + // Then |
| 130 | + Assert.Equal("Argument must be within range.", exception.Message); |
| 131 | + } |
| 132 | + |
| 133 | + [Fact(DisplayName = "RequireWithinRangeExclusive should throw an ArgumentOutOfRangeException when the value falls above the specified range")] |
| 134 | + public void RequireWithinRangeExclusiveShouldThrowArgumentOutOfRangeExceptionWhenValueFallsAboveSpecifiedRange() |
| 135 | + { |
| 136 | + // Given |
| 137 | + Exception exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireWithinRangeExclusive(4, 2, 4)); |
57 | 138 |
|
58 | 139 | // Then
|
59 |
| - Assert.Equal("Argument is out of range.", exception.Message); |
| 140 | + Assert.Equal("Argument must be within range.", exception.Message); |
60 | 141 | }
|
61 | 142 |
|
62 | 143 | [Fact(DisplayName = "RequireNotNull should throw an ArgumentNullException when the condition is null")]
|
63 |
| - public void RequireNotNullShouldProduceExpectedResult() |
| 144 | + public void RequireNotNullShouldThrowArgumentNullExceptionWhenConditionIsNull() |
64 | 145 | {
|
65 | 146 | // When
|
66 |
| - ArgumentNullException exception = Assert.Throws<ArgumentNullException>(() => RequireNotNull<object>(null)); |
| 147 | + Exception exception = Assert.Throws<ArgumentNullException>(() => RequireNotNull<object>(null)); |
67 | 148 |
|
68 | 149 | // Then
|
69 | 150 | Assert.Equal("Argument must not be null.", exception.Message);
|
70 | 151 | }
|
| 152 | + |
| 153 | + [Fact(DisplayName = "RequireNotNullOrEmpty should throw an ArgumentException when the value is null")] |
| 154 | + public void RequireNotNullOrEmptyShouldThrowArgumentExceptionWhenValueIsNull() |
| 155 | + { |
| 156 | + // When |
| 157 | + Exception exception = Assert.Throws<ArgumentException>(() => RequireNotNullOrEmpty(null)); |
| 158 | + |
| 159 | + // Then |
| 160 | + Assert.Equal("Argument must not be null or empty.", exception.Message); |
| 161 | + } |
| 162 | + |
| 163 | + [Fact(DisplayName = "RequireNotNullOrEmpty should throw an ArgumentException when the value is empty")] |
| 164 | + public void RequireNotNullOrEmptyShouldThrowArgumentExceptionWhenValueIsEmpty() |
| 165 | + { |
| 166 | + // When |
| 167 | + Exception exception = Assert.Throws<ArgumentException>(() => RequireNotNullOrEmpty(string.Empty)); |
| 168 | + |
| 169 | + // Then |
| 170 | + Assert.Equal("Argument must not be null or empty.", exception.Message); |
| 171 | + } |
| 172 | + |
| 173 | + [Fact(DisplayName = "RequireNotNullOrWhiteSpace should throw an ArgumentException when the value is null")] |
| 174 | + public void RequireNotNullOrWhiteSpaceShouldThrowArgumentExceptionWhenValueIsNull() |
| 175 | + { |
| 176 | + // When |
| 177 | + Exception exception = Assert.Throws<ArgumentException>(() => RequireNotNullOrWhiteSpace(null)); |
| 178 | + |
| 179 | + // Then |
| 180 | + Assert.Equal("Argument must not be null or whitespace.", exception.Message); |
| 181 | + } |
| 182 | + |
| 183 | + [Fact(DisplayName = "RequireNotNullOrWhiteSpace should throw an ArgumentException when the value is whitespace")] |
| 184 | + public void RequireNotNullOrWhiteSpaceShouldThrowArgumentExceptionWhenValueIsWhiteSpace() |
| 185 | + { |
| 186 | + // When |
| 187 | + Exception exception = Assert.Throws<ArgumentException>(() => RequireNotNullOrWhiteSpace(" ")); |
| 188 | + |
| 189 | + // Then |
| 190 | + Assert.Equal("Argument must not be null or whitespace.", exception.Message); |
| 191 | + } |
| 192 | + |
| 193 | + [Fact(DisplayName = "RequireIsDefined should throw an ArgumentOutOfRangeException when the specified enum value is not defined")] |
| 194 | + public void RequireIsDefinedShouldThrowArgumentOutOfRangeExceptionWhenSpecifiedEnumValueIsNotDefined() |
| 195 | + { |
| 196 | + // When |
| 197 | + Exception exception = Assert.Throws<ArgumentOutOfRangeException>(() => RequireIsDefined((Shape)2)); |
| 198 | + |
| 199 | + // Then |
| 200 | + Assert.Equal("Invalid Shape enum value: 2. Valid values include: Square, Circle.", exception.Message); |
| 201 | + } |
71 | 202 | }
|
0 commit comments