Verify.MongoDB 3.0.147

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Verify.MongoDB --version 3.0.147
                    
NuGet\Install-Package Verify.MongoDB -Version 3.0.147
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Verify.MongoDB" Version="3.0.147" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Verify.MongoDB" Version="3.0.147" />
                    
Directory.Packages.props
<PackageReference Include="Verify.MongoDB" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Verify.MongoDB --version 3.0.147
                    
#r "nuget: Verify.MongoDB, 3.0.147"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Verify.MongoDB@3.0.147
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Verify.MongoDB&version=3.0.147
                    
Install as a Cake Addin
#tool nuget:?package=Verify.MongoDB&version=3.0.147
                    
Install as a Cake Tool

Verify.MongoDB

.NET NuGet Status

Extends Verify to allow verification of MongoDB bits.

Verify.MongoDB is heavily inspired by @SimonCropp's Verify.EntityFramework

Enable

Enable VerifyMongoDb once at assembly load time:

VerifyMongoDb.Enable();

Recording

Recording allows all commands executed by the MongoDB driver to be captured and then (optionally) verified.

Call MongoDbRecording.EnableRecording() on MongoClientSettings.

var clientSettings = MongoClientSettings.FromUrl(new MongoUrl(configuration["MongoConnectionString"]));

clientSettings.EnableRecording();

By default, all three event types (Started, Succeeded and Failed) are recorded. You can optionally specify the events required.

clientSettings.EnableRecording(MongoDbEvents.Succeeded | MongoDbEvents.Failed);

EnableRecording should only be called in the test context.

Usage

To start recording call MongoDbRecording.StartRecording(). The results will be automatically included in the verified file.

MongoDBRecording.StartRecording();

await collection.FindAsync(Builders<BsonDocument>.Filter.Eq("_id", "blah"),
    new FindOptions<BsonDocument, BsonDocument>());
    
await Verifier.Verify("collection");

Will result in the following verified file:

{
  target: collection,
  mongo: [
    {
      Database: VerifyTests,
      Document: {
        filter: {
          _id: blah
        },
        find: docs
      },
      Type: Started,
      Command: find,
      StartTime: DateTimeOffset_1,
      OperationId: Id_1,
      RequestId: Id_2
    },
    {
      Document: {
        cursor: {
          firstBatch: [],
          id: 0,
          ns: VerifyTests.docs
        },
        ok: 1.0
      },
      Type: Succeeded,
      Command: find,
      StartTime: DateTimeOffset_2,
      OperationId: Id_1,
      RequestId: Id_2
    }
  ]
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.2 131 7/15/2025
5.0.24 131 7/15/2025
5.0.12 550 1/11/2025
5.0.6 109 1/11/2025
5.0.2 108 1/11/2025
4.0.52 222 12/18/2024
4.0.12 345 8/29/2024
4.0.10 135 8/29/2024
4.0.2 132 8/8/2024
3.0.167 810 4/25/2024
3.0.155 662 2/7/2024
3.0.151 236 1/26/2024
3.0.149 135 1/26/2024
3.0.147 142 1/26/2024
3.0.137 198 12/17/2023
3.0.135 153 12/17/2023
3.0.133 145 12/17/2023
3.0.131 139 12/17/2023
3.0.105 165 9/15/2023
3.0.85 193 6/24/2023
3.0.23 1,887 3/4/2023
3.0.18 274 3/4/2023
3.0.2 645 2/6/2023
2.0.99 315 2/6/2023
2.0.82 457 10/5/2022
2.0.2 570 6/3/2022
1.0.79 594 4/28/2022
1.0.75 538 4/16/2022
1.0.73 556 3/30/2022
1.0.71 569 3/30/2022