RavenDB.TestDriver 7.0.8

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package RavenDB.TestDriver --version 7.0.8
                    
NuGet\Install-Package RavenDB.TestDriver -Version 7.0.8
                    
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="RavenDB.TestDriver" Version="7.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RavenDB.TestDriver" Version="7.0.8" />
                    
Directory.Packages.props
<PackageReference Include="RavenDB.TestDriver" />
                    
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 RavenDB.TestDriver --version 7.0.8
                    
#r "nuget: RavenDB.TestDriver, 7.0.8"
                    
#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 RavenDB.TestDriver@7.0.8
                    
#: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=RavenDB.TestDriver&version=7.0.8
                    
Install as a Cake Addin
#tool nuget:?package=RavenDB.TestDriver&version=7.0.8
                    
Install as a Cake Tool

RavenDB .NET Test Driver

You're looking at RavenDB Test Driver Client (SDK) NuGet release.
It makes it easy to write tests that require RavenDB instance, leveraging embedded server and providing you friendly API.

RavenDB is a NoSQL database that fuses extreme performance with ease-of-use, offering above the roof developer experience.
Learn more at https://ravendb.net or visit our GitHub repository.

Installation

Get the latest stable version from NuGet.

Learning resources

Community

Getting started

Configure

var testServerOptions = new TestServerOptions
{
    // Looks for the newest version on your machine including 3.1.15 and any newer patches
    // but not major new releases (default is .NET version at time of server release).
    FrameworkVersion = "3.1.15+",

    // Specifies where ravendb server binaries are located (Optional)
    ServerDirectory = "PATH_TO_RAVENDB_SERVER",

    // Specifies where ravendb data will be placed/located (Optional)
    DataDirectory = "PATH_TO_RAVENDB_DATADIR", 
};

ConfigureServer(testServerOptions);

Write a test

using Raven.Client.Documents;
using Raven.TestDriver;
using Xunit;
using System.Linq;
using Raven.Client.Documents.Indexes;

namespace RavenDBTestDriverFullExample
{

    public class RavenDBTestDriver : RavenTestDriver
    {
        static RavenDBTestDriver()
        {
            // ConfigureServer() must be set before calling GetDocumentStore()
            // and can only be set once per test run.
            ConfigureServer(new TestServerOptions
            {
                DataDirectory = "C:\\RavenDBTestDir"
            });
        }
        // This allows us to modify the conventions of the store we get from 'GetDocumentStore'
        protected override void PreInitialize(IDocumentStore documentStore)
        {
            documentStore.Conventions.MaxNumberOfRequestsPerSession = 50;
        }

        [Fact]
        public void MyFirstTest()
        {
            // GetDocumentStore() evokes the Document Store, which establishes and manages communication
            // between your client application and a RavenDB cluster via HTTP requests.
            using (var store = GetDocumentStore())
            {
                store.ExecuteIndex(new TestDocumentByName());
                using (var session = store.OpenSession())
                {
                    session.Store(new TestDocument { Name = "Hello world!" });
                    session.Store(new TestDocument { Name = "Goodbye..." });
                    session.SaveChanges();
                }
                // If we want to query documents, sometimes we need to wait for the indexes to catch up  
                // to prevent using stale indexes.
                WaitForIndexing(store);

                // Sometimes we want to debug the test itself. This method redirects us to the studio
                // so that we can see if the code worked as expected (in this case, created two documents).
                WaitForUserToContinueTheTest(store);

                // Queries are defined in the session scope.
                // If there is no relevant index to quickly answer the query, RavenDB creates an auto-index
                // based on the query parameters.
                // This query will use the static index defined in lines 63-70 and filter the results by name.
                using (var session = store.OpenSession())
                {
                    var query = session.Query<TestDocument, TestDocumentByName>()
                        .Where(x => x.Name == "hello").ToList();
                    Assert.Single(query);
                }
            }
        }
    }
    // AbstractIndexCreationTask allows you to create and manually define a static index. 
    public class TestDocumentByName : AbstractIndexCreationTask<TestDocument>
    {
        public TestDocumentByName()
        {
            Map = docs => from doc in docs select new { doc.Name };
            Indexes.Add(x => x.Name, FieldIndexing.Search);
        }
    }

    public class TestDocument
    {
        public string Name { get; set; }
    }
}

Contributing

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on RavenDB.TestDriver:

Package Downloads
ECommerce.Data.RavenDbProvider

a resilient abstract data access. StartPoint ECommerce.DataAccess based on Hexagonal architecture gives you the capacity to access any data source with retrying and fallback action

GitHub repositories (10)

Showing the top 10 popular GitHub repositories that depend on RavenDB.TestDriver:

Repository Stars
JasperFx/wolverine
Supercharged .NET server side development!
Aguafrommars/TheIdServer
OpenID/Connect, OAuth2, WS-Federation and SAML 2.0 server based on Duende IdentityServer and ITFoxtec Identity SAML 2.0 with its admin UI
CommunityToolkit/Aspire
A community project with additional components and extensions for Aspire
linkdotnet/Blog
A blog (engine) completely written in C# and Blazor. It aims to be a simple use and easy to extend platform. Blogposts are written in Markdown and are rendered to HTML. This gives all the flexibility needed to express yourself but also have an easy way of creating posts in the first place.
TcOpenGroup/TcOpen
Application framework for industrial automation built on top of TwinCAT3 and .NET.
RemyDuijkeren/NodaMoney
NodaMoney provides a library that treats Money as a first class citizen and handles all the ugly bits like currencies and formatting.
stoveproject/Stove
Domain Driven Design oriented application framework, meets CRUD needs
linkdotnet/BlogExamples
Contains all of my examples from various blog posts
RemiBou/Toss.Blazor
Experimental project using AspNetCore Blazor
ravendb/samples-yabt
"Yet Another Bug Tracker" solution sample for RavenDB and .NET with Angular UI
Version Downloads Last Updated
7.1.4 1,182 11/12/2025
7.1.4-rc-71023 130 11/7/2025
7.1.4-rc-71022 175 10/29/2025
7.1.4-rc-71020 193 10/27/2025
7.1.3 5,263 10/2/2025
7.1.3-rc-71017 178 10/2/2025
7.1.3-rc-71014 321 9/17/2025
7.1.2 7,658 8/19/2025
7.1.2-rc-71011 174 8/11/2025
7.1.2-rc-71008 269 8/6/2025
7.1.1 4,593 7/22/2025
7.1.1-rc-71006 190 7/8/2025
7.1.0 5,564 7/1/2025
7.1.0-rc-71004 188 6/25/2025
7.1.0-rc-71003 184 6/18/2025
7.1.0-rc-71000 211 5/29/2025
7.0.8 270 11/12/2025
7.0.7 202 10/2/2025
7.0.6 236 8/19/2025
7.0.5 630 7/22/2025
7.0.4 914 6/25/2025
7.0.3 1,287 6/10/2025
7.0.2 10,773 4/29/2025
7.0.1 6,260 3/27/2025
7.0.0 14,475 2/4/2025
6.2.11 818 11/12/2025
6.2.10 2,662 10/2/2025
6.2.9 3,027 8/19/2025
6.2.8 1,428 7/22/2025
6.2.7 370 6/25/2025
6.2.6 2,604 6/10/2025
6.2.5 6,602 4/29/2025
6.2.4 2,671 3/18/2025
6.2.3 33,989 1/21/2025
6.2.2 39,256 12/11/2024
6.2.1 24,281 10/30/2024
6.2.0 9,763 9/17/2024
6.0.110 791 3/18/2025
6.0.109 1,051 1/21/2025
6.0.108 391 12/11/2024
6.0.107 1,057 10/30/2024
6.0.106 8,912 9/17/2024
6.0.105 21,280 7/23/2024
6.0.104 11,010 6/17/2024
6.0.103 6,810 5/16/2024
6.0.102 14,142 4/29/2024
6.0.101 42,818 3/19/2024
6.0.100 56,674 2/12/2024
6.0.4 6,520 1/19/2024
6.0.3 60,575 1/16/2024
6.0.2 2,571 12/27/2023
6.0.1 5,301 11/14/2023
6.0.0 4,390 10/2/2023
5.4.213 312 11/12/2025
5.4.212 635 10/2/2025
5.4.211 2,778 8/19/2025
5.4.210 962 7/22/2025
5.4.209 663 6/10/2025
5.4.208 2,894 4/29/2025
5.4.207 1,324 3/18/2025
5.4.206 12,927 1/21/2025
5.4.205 8,464 12/11/2024
5.4.204 10,392 10/30/2024
5.4.203 11,953 10/2/2024
5.4.202 693 9/17/2024
5.4.201 13,607 7/23/2024
5.4.200 18,767 6/17/2024
5.4.119 2,801 5/16/2024
5.4.118 3,775 4/29/2024
5.4.117 11,853 3/19/2024
5.4.116 9,178 2/12/2024
5.4.115 2,701 1/18/2024
5.4.114 247 1/16/2024
5.4.113 8,428 12/27/2023
5.4.112 164,603 11/14/2023
5.4.111 10,371 10/3/2023
5.4.110 3,598 9/12/2023
5.4.109 15,145 8/1/2023
5.4.107 5,187 6/23/2023
5.4.106 411 6/22/2023
5.4.105 827 6/20/2023
5.4.104 37,154 5/12/2023
5.4.103 27,287 3/30/2023
5.4.102 4,286 3/27/2023
5.4.101 15,522 2/13/2023
5.4.100 18,784 1/9/2023
5.4.5 55,411 11/21/2022
5.4.4 14,031 10/12/2022
5.4.3 897 10/10/2022
5.4.2 18,701 9/1/2022
5.4.1 36,055 7/19/2022
5.4.0 11,948 7/18/2022
5.3.108 40,298 1/9/2023
5.3.107 3,349 11/21/2022
5.3.106 639 10/10/2022
5.3.105 714 9/1/2022
5.3.104 2,009 7/18/2022
5.3.103 29,709 6/7/2022
5.3.102 56,341 4/19/2022
5.3.101 24,493 3/15/2022
5.3.100 32,373 2/1/2022
5.3.2 9,874 1/7/2022
5.3.1 5,842 12/21/2021
5.3.0 4,888 11/29/2021
5.2.116 292 8/1/2023
5.2.115 309 6/23/2023
5.2.114 295 6/22/2023
5.2.113 306 6/20/2023
5.2.112 600 5/12/2023
5.2.111 687 3/30/2023
5.2.110 957 3/27/2023
5.2.109 761 2/13/2023
5.2.108 3,579 1/9/2023
5.2.107 541 11/21/2022
5.2.106 641 10/10/2022
5.2.105 660 9/1/2022
5.2.104 689 7/18/2022
5.2.103 718 6/7/2022
5.2.102 11,327 4/19/2022
5.2.101 18,796 3/15/2022
5.2.100 1,012 2/1/2022
5.2.6 923 1/7/2022
5.2.5 614 12/21/2021
5.2.4 13,688 11/15/2021
5.2.3 8,730 9/29/2021
5.2.2 17,649 8/16/2021
5.2.1 2,353 7/1/2021
5.2.0 4,042 6/21/2021
5.1.13 589 12/21/2021
5.1.12 686 11/15/2021
5.1.11 701 9/29/2021
5.1.10 717 8/16/2021
5.1.9 11,986 7/1/2021
5.1.8 3,946 5/26/2021
5.1.7 20,670 4/23/2021
5.1.6 2,633 4/13/2021
5.1.5 7,972 3/1/2021
5.1.4 9,453 2/1/2021
5.1.3 996 1/25/2021
5.1.2 6,035 12/11/2020
5.1.1 2,493 12/1/2020
5.1.0 1,607 11/18/2020
5.0.14 1,258 6/16/2021
5.0.13 756 5/24/2021
5.0.12 12,155 4/23/2021
5.0.11 4,066 4/13/2021
5.0.10 905 3/1/2021
5.0.9 900 2/1/2021
5.0.8 2,477 1/25/2021
5.0.7 3,674 12/11/2020
5.0.6 823 12/1/2020
5.0.5 18,067 11/16/2020
5.0.4 1,043 11/10/2020
5.0.3 4,812 9/28/2020
5.0.2 7,551 8/17/2020
5.0.1 1,582 8/5/2020
5.0.0 4,349 7/23/2020
4.2.124 363 6/19/2023
4.2.123 3,288 6/7/2022
4.2.122 1,394 4/19/2022
4.2.121 1,184 3/15/2022
4.2.120 2,323 2/1/2022
4.2.119 605 12/21/2021
4.2.118 1,230 11/15/2021
4.2.117 1,125 9/29/2021
4.2.116 1,294 8/16/2021
4.2.115 1,119 7/1/2021
4.2.114 2,625 5/24/2021
4.2.113 2,703 4/23/2021
4.2.112 915 4/13/2021
4.2.111 3,244 3/1/2021
4.2.110 1,940 2/1/2021
4.2.109 818 1/25/2021
4.2.108 3,514 11/16/2020
4.2.107 826 11/10/2020
4.2.106 6,501 9/28/2020
4.2.105 10,966 8/17/2020
4.2.104 2,454 7/22/2020
4.2.103 13,817 5/25/2020
4.2.102 5,393 4/15/2020
4.2.101 11,885 3/3/2020
4.2.100 973 3/2/2020
4.2.8 15,848 1/21/2020
4.2.6 7,195 12/9/2019
4.2.5 2,819 11/25/2019
4.2.5-patch-42026 632 11/13/2019
4.2.4 3,542 10/14/2019
4.2.4-patch-42020 632 9/27/2019
4.2.3 13,031 8/26/2019
4.2.2 9,591 7/15/2019
4.2.1 1,911 6/27/2019
4.2.0 3,714 5/21/2019
4.2.0-rc-42008 689 5/8/2019
4.2.0-rc-42007 712 4/25/2019
4.2.0-rc-42005 693 4/17/2019
4.2.0-rc-42003 677 4/12/2019
4.2.0-rc-42002 690 4/5/2019
4.2.0-rc-42001 682 3/22/2019
4.2.0-rc-42000 707 3/22/2019
4.1.10 1,380 11/25/2019
4.1.9 885 10/14/2019
4.1.9-patch-41022 616 9/27/2019
4.1.8 2,259 8/26/2019
4.1.8-patch-41017 641 7/15/2019
4.1.7 952 6/27/2019
4.1.6 1,042 5/21/2019
4.1.5 1,697 4/15/2019
4.1.5-patch-41012 753 3/15/2019
4.1.4 11,147 2/13/2019
4.1.4-patch-41009 800 2/1/2019
4.1.4-patch-41008 2,303 1/7/2019
4.1.3 4,778 11/19/2018
4.1.3-patch-41006 1,327 11/5/2018
4.1.3-patch-41005 914 10/22/2018
4.1.2 5,773 10/15/2018
4.1.1 4,359 9/14/2018
4.1.0 1,769 8/31/2018
4.1.0-rc-41000 963 8/17/2018
4.0.11 1,320 2/28/2019
4.0.10 1,046 2/13/2019
4.0.10-patch-40057 753 2/1/2019
4.0.10-patch-40056 789 1/7/2019
4.0.9 1,091 11/19/2018
4.0.9-patch-40054 897 11/5/2018
4.0.9-patch-40052 877 10/22/2018
4.0.8 1,177 10/15/2018
4.0.7 1,193 8/31/2018
4.0.6 2,728 8/3/2018
4.0.6-patch-40047 1,151 7/2/2018
4.0.5 6,433 6/12/2018
4.0.4-patch-40038 1,375 5/18/2018
4.0.3 18,482 4/23/2018
4.0.3-patch-40034 1,888 3/30/2018
4.0.3-patch-40033 1,384 3/19/2018
4.0.3-patch-40031 1,422 3/7/2018
4.0.2 3,763 2/26/2018
4.0.1 1,720 2/20/2018
4.0.0 2,126 2/6/2018