RainbowDeserializerToFakeDb 1.0.3

dotnet add package RainbowDeserializerToFakeDb --version 1.0.3
NuGet\Install-Package RainbowDeserializerToFakeDb -Version 1.0.3
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="RainbowDeserializerToFakeDb" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RainbowDeserializerToFakeDb --version 1.0.3
#r "nuget: RainbowDeserializerToFakeDb, 1.0.3"
#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.
// Install RainbowDeserializerToFakeDb as a Cake Addin
#addin nuget:?package=RainbowDeserializerToFakeDb&version=1.0.3

// Install RainbowDeserializerToFakeDb as a Cake Tool
#tool nuget:?package=RainbowDeserializerToFakeDb&version=1.0.3

Sitecore.FakeDb.RainbowDeserializer

A library that deserializes Rainbow (.yml) files into FakeDb items and templates for the purpose of unit/integration testing Sitecore projects.

What are Rainbow files?

Rainbow is a serialization framework that is an alternative to Sitecore's default serialization format and file system organization. It is most often used by Unicorn. The Github project can be found at: https://github.com/SitecoreUnicorn/Rainbow.

What is Sitecore FakeDb?

FakeDb is a testing framework that mocks the Sitecore context for your unit/integration tests. Code that integrates with Sitecore systems can be tested with relative ease. The Github project can be found at: https://github.com/sergeyshushlyapin/Sitecore.FakeDb

When is this library helpful?

If you are using Unicorn with Rainbow serialization in your Sitecore projects this library can be used to quickly setup tests. With a few lines of code you can add data from your serialized files to use in testing your code.

How do you use this library?

This library adds a couple extension methods to FakeDb's Db class. The most important method, AddYml(), accepts 1 or more filepaths to Rainbow files or directories as can be seen in the example below:

    public Sitecore.FakeDb.Db WithSerializedFiles()
    {
        var db = new Sitecore.FakeDb.Db();
        db.AddYml(true,
            @"c:\project\src\serialization\templates",
            @"c:\project\src\serialization\content"
            );
        return db;
    }

AddYml() also accepts a boolean parameter to determine if the serialized items should be merged with existing database entries. Set this to false for the fastest performance.

Once called, AddYml will try to find a file or directory for each of the file paths. If found, it will recursively look through the file system for child serialized items. It will then add these as items or templates to the FakeDb database.

Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
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
1.0.3 2,718 4/1/2019
1.0.2 533 4/1/2019
1.0.1 544 3/30/2019
1.0.0 541 3/30/2019

Fixes issues with indexing missing fields and adding duplicate fields for orphaned fields.