Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khesualdo/unit-testing
:lemon: :cherries: :watermelon: My cheatsheet for writing unit tests with Moq.NET and MSTest
https://github.com/khesualdo/unit-testing
csharp dotnet microsoft moq moq-framework mstest testing unit-testing
Last synced: about 16 hours ago
JSON representation
:lemon: :cherries: :watermelon: My cheatsheet for writing unit tests with Moq.NET and MSTest
- Host: GitHub
- URL: https://github.com/khesualdo/unit-testing
- Owner: khesualdo
- Created: 2019-02-19T05:22:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-03-29T23:02:11.000Z (over 5 years ago)
- Last Synced: 2023-10-07T02:32:16.576Z (about 1 year ago)
- Topics: csharp, dotnet, microsoft, moq, moq-framework, mstest, testing, unit-testing
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unit-Testing
### `Strict` vs. `Loose`
Strict mocking means that we must set up expectations (`Verify`, `Returns`) on all members of a mock object otherwise an exception is thrown. Loose mocking on the other hand does not require explicit expectations on all class members, instead default values are returned when no expectation is explicitly declared.
Default behaviour in Moq is loose mocking.
```C#
interface IGuidUtility{CreateGuid();
DeleteGuid();
}
class Utility{IGuidUtility _guidUtility;
void DoSomething(){
_guidUtility.CreateGuid();
...
_guidUtility.DeleteGuid();
}
}// This test will pass in loose mode
// This test will fail in strict mode, because we did not set up expectations for all members of the `moq`
// Specifically, we did not setup expectation for `DeleteGuid()`
[Test]
moq = new Mock(MockBehavior.Strict);
utility = new Utility(moq.Object);
moq.Setup(x => x.CreateGuid()).Returns(...);// This test will pass in loose mode
// This test will pass in strict mode, because we setup expectations for all members of the `moq`
[Test]
moq = new Mock(MockBehavior.Strict);
utility = new Utility(moq.Object);
moq.Setup(x => x.CreateGuid()).Returns(...);
moq.Setup(x => x.DeleteGuid()).Returns(...);
```### `Setup`
#### High-level Steps
1. Create an instance of Moq class that takes a interface or class with virtual methods as a generic parameter
2. Tell the Mock what you want to happen, specifying parameters, and even return values
3. Get back the mocked object which will behave in the way in which you told it to. Use this mocked object in your code.
4. Call `Verify` or `VerifyAll` on the mocked object to ensure that what you said would happen actually happened. This step is not always required.#### Low-level Steps
```C#
// A either has to be an interface or an abstract class,
// it may also be a regular class as long as B is a virtual method
Mock mock = new Mock(MockBehavior.Strict);// B either has to be a method declared in an interface or an abstract class,
// or be a virtual method in a regular class
// R is any valid object of return type of B
mock.Setup(m => m.B(...)).Returns(R);// When B is called on mock.Object, R is returned
ValidateOpenIdConnectJSONWebToken(..., mock.Object, ...);
```Such specific properties are required from `A` and `B`, because Moq will create its own version of `B` (for that it either needs to extend `A` and override `B` or implement `A` and define `B`) that follows the requirements set by the `Setup` and `Returns` method calls.
#### `It.IsAny`
Allows any value of type Guid to be used as a parameter.```C#
moq = new Mock(MockBehavior.Strict);
moq.Setup(m => m.CompareGuids(It.IsAny, It.IsAny, It.IsAny)).Returns(True);// Case 1 - Pass
moq.Object.CompareGuids(Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid());// Case 2 - Pass
Guid sameGuid = Guid.NewGuid();
moq.Object.CompareGuids(sameGuid, sameGuid, sameGuid);// Case 3 - Pass
moq.Object.CompareGuids(Guid.Empty, Guid.NewGuid(), sameGuid);
```#### `It.Is`
Restricts allowable parameters (of type Guid).```C#
moq.Setup(m => m.CompareGuids(
It.Is(g => g.ToString().StartsWith("4"),
It.Is(g => g != Guid.Empty),
It.Is(g => g == expectedGuid))
).Returns(True);
```#### Variable
Forces to pass the exact variable that was used for mocking.```C#
Guid first = Guid.NewGuid();
Guid second = Guid.NewGuid();
Guid third = Guid.NewGuid();moq.Setup(m => m.CompareGuids(first, second, third)).Returns(True);
// Case 1 - Pass
moq.Object.CompareGuids(first, second, third);// Case 2 - Fail
moq.Object.CompareGuids(first, first, second);
```### `Verify` vs. `VerifyAll` vs. `Assert`
`Verify` is used for verifying expected behaviour.
```C#
var mockFileWriter = new Mock();
useMockFileWriter(mockFileWriter.Object);// Verify that `WriteLine` was called exactly 1 time on `mockFileWriter` in `useMockFileWriter()`
mockFileWriter.Verify(fw => fw.WriteLine("1001,10.53"), Times.Exactly(1));
````VerifyAll` will verify that all `Setup` calls were called (eg. in this case will check that `CopyLine` was called on `mockFileWriter` in `useMockFileWriter()`) as well as verify expected behaviour.
```C#
var mockFileWriter = new Mock();
mockFileWriter.Setup(fw => fw.CopyLine("1001,10.53")).Returns("1001,10.53");
mockFileWriter.Setup(fw => fw.WriteLine("1001,10.53")).AtMostOnce();
mockFileWriter.Setup(fw => fw.ReadLine()).AtMostOnce();
useMockFileWriter(mockFileWriter.Object);
mockFileWriter.VerifyAll();
````Assert` is used for verifying expected result.
```C#
var actual = DoSomething();
var expected = 1002;
Assert.AreEqual(expected, actual);
```### Exceptions
Assert on exception message.
```C#
try
{
somethingThatFillThrowAnException();
Assert.Fail();
}
catch (ArgumentException e)
{
Assert.AreEqual("Erro message", e.Message);
}
catch (Exception)
{
Assert.Fail();
}
```Assert on exception type.
```C#
try
{
somethingThatFillThrowAnException();
Assert.Fail();
}
catch (Exception e)
{
Assert.IsTrue(e is ArgumentException);
}
```Assert on exception type.
```C#
[TestMethod]
[ExpectedException(typeof(ArgumentNullException))]
public void MethodTest()
{
somethingThatFillThrowAnException();
}
```### `Protected` Methods
> `Protected()` is found in the `Moq.Protected` namespace. Also `ItExpr` is the same as `It`, but is used when mocking protected methods.
This example mocks `HttpClient`. The trick to mocking `HttpClient`, is to not mock it, but to mock `HttpMessageHandler` instead. `HttpClient` acts as a manager / wrapper for `HttpMessageHandler`, so calls to `DeleteAsync()`, `GetAsync()`, `PostAsync()`, `PutAsync()`, and `SendAsync()`, will all return the `HttpResponseMessage` you setup on the `SendAsync()` method of the `HttpMessageHandler` class.
```C#
Mock mockMessageHandler = new Mock();mockMessageHandler.Protected()
.Setup>("SendAsync", ItExpr.IsAny(), ItExpr.IsAny())
.ReturnsAsync(
new HttpResponseMessage
{
StatusCode = HttpStatusCode.OK,
Content = new StringContent("Whatever content")
}
);HttpClient httpClient = new HttpClient(mockMessageHandler.Object);
// One thing to note is that response.IsSuccessStatusCode will be true only if 200 >=response.StatusCode <= 299
HttpResponseMessage response = await httpClient.PostAsync("Any valid endpoint", null);
string content = await response.Content.ReadAsStringAsync(); // Content is stored in ASCII
HttpStatusCode statusCode = response.StatusCode;
```### Partial Mock
Used when mocking the behaviour of a member (method or property) from the same test class. This technique will require making all the target members of the class you are testing public / protected and virtual.
Partially mocking a class ignores parts of its behavior, this means the class is doing more than one thing. This violates the Single Responsibility Principle, and that is a code smell.
> Important to note that `mock.Object.someFunction();` will take us into the implementation of the method, because we are mocking a class. When mocking an interface default values will be returned.
```C#
public MyClass{
public void someFunction(){
someOtherFunction();
someFunFunction();
}
private void someOtherFunction(){ ... }
public void someFunFunction(){ ... }
}// Change access to public / protected virtual
public MyClass{
public void someFunction(){
someOtherFunction();
}
public virtual void someOtherFunction(){ ... }
public virtual void someFunFunction(){ ... }
}Mock mock = new Mock();
mock.Setup(x => x.someOtherFunction()).Returns("Whatever I want");
mock.Setup(x => x.someFunFunction()).Returns("Whatever I want");
mock.Object.someFunction();
```