Open Source Alternative to Microsoft Fakes
This project is maintained by urasandesu
Prig(PRototyping jIG) is a framework that generates a Test Double like Microsoft Fakes/Typemock Isolator/Telerik JustMock based on Unmanaged Profiler APIs. This framework enables that any methods are replaced with mocks. For example, a static property, a private method, a non-virtual member and so on.
As of Mar 12, 2017, Released V2.3.2.
Let’s say you want to test the following code:
using System;
namespace QuickTour
{
public class LifeInfo
{
public static bool IsNowLunchBreak()
{
var now = DateTime.Now;
return 12 <= now.Hour && now.Hour < 13;
}
}
}
You probably can’t test this code, because DateTime.Now
returns the value that depends on an external environment. To make be testable, you should replace DateTime.Now
to the Test Double that returns the fake information. If you use Prig, it will enable you to generate a Test Double by the following steps without any editing the product code:
Run Visual Studio 2013(Community or more, 2015 is also supported) as Administrator and choose TOOLS
- Extensions and Updates...
.
Now in the Extensions and Updates window, take the following steps:
Visual Studio Gallery
is selected under Online
.prig
.Prig
package, and click Download
.NOTE: Prig requires PowerShell v3.0+. If you want to use Prig in Windows 7, please install Windows Management Framework 3.0+ beforehand. See also this issue.
Once restart Visual Studio, you can find PRIG
in the menu. Choose PRIG
- Register Prig (Needs Restarting)
.
Finally restart Visual Studio then you are now ready.
Add test project(e.g. QuickTourTest
). Then, right click References
and choose Add Prig Assembly for mscorlib
:
You can find the Stub Settings File <assembly name>.<runtime version>.v<assembly version>.prig
in the project(in this case, it is mscorlib.v4.0.30319.v4.0.0.0.prig
). So, right click the file and choose Edit Prig Indirection Settings
:
Then, Prig Setup Session will start:
Welcome to Prig Setup Session!!
You can add the Stub Settings File from here. In this session, you can use `$ReferencedAssemblies` that contains all
referenced assemblies information of current project. For example, if you want to get the indirection settings for all
members of the type `Foo` that belongs to the referenced assembly `UntestableLibrary`, the following commands will achi
eve it:
PS> $ReferencedAssemblies
FullName
--------
mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
MyLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
UntestableLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
PS> padd -ra $ReferencedAssemblies[-1]
PS> $ReferencedAssemblies[-1].GetTypes() | ? { $_.Name -eq 'Foo' } | pfind | pget | clip
PS> exit # Then, paste the content on the clipboard to the Stub Settings File(e.g. `UntestableLibrary.v4.0.30319.v1.0.
0.0.prig`).
See also the command's help `padd`, `pfind` and `pget`.
Current Project: QuickTourTest
WARNING: Change the Current Project from `Default Project: ` on the Package Manager Console if it isn't what you want.
-EditorialInclude parameter is specified. You can also use the global variable $TargetReferencedAssembly in addition to
$ReferencedAssemblies. Currently $TargetReferencedAssembly is:
FullName
--------
mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
PS 01.QuickTour>
Now, we want to get the indirection setting for DateTime.Now
. In this case, execute the following commands and copy it to the clipboard:
PS 01.QuickTour> $TargetReferencedAssembly.GetTypes() | ? { $_.Name -eq 'datetime' } | pfind -m 'get_Now' | pget | clip
PS 01.QuickTour> exit
Exit the Prig Setup Session, and paste the copied information to the Stub Settings File:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="prig" type="Urasandesu.Prig.Framework.PilotStubberConfiguration.PrigSection, Urasandesu.Prig.Framework" />
</configSections>
<prig>
<stubs>
<!-- PASTE HERE -->
<!--
PDateTime.NowGet().Body =
() =>
{
throw new NotImplementedException();
};
-->
<add name="NowGet" alias="NowGet">
<RuntimeMethodInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:x="http://www.w3.org/2001/XMLSchema" z:Id="1" z:FactoryType="MemberInfoSerializationHolder" z:Type="System.Reflection.MemberInfoSerializationHolder" z:Assembly="0" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" xmlns="http://schemas.datacontract.org/2004/07/System.Reflection">
<Name z:Id="2" z:Type="System.String" z:Assembly="0" xmlns="">get_Now</Name>
<AssemblyName z:Id="3" z:Type="System.String" z:Assembly="0" xmlns="">mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</AssemblyName>
<ClassName z:Id="4" z:Type="System.String" z:Assembly="0" xmlns="">System.DateTime</ClassName>
<Signature z:Id="5" z:Type="System.String" z:Assembly="0" xmlns="">System.DateTime get_Now()</Signature>
<Signature2 z:Id="6" z:Type="System.String" z:Assembly="0" xmlns="">System.DateTime get_Now()</Signature2>
<MemberType z:Id="7" z:Type="System.Int32" z:Assembly="0" xmlns="">8</MemberType>
<GenericArguments i:nil="true" xmlns="" />
</RuntimeMethodInfo>
</add>
<!-- PASTE HERE -->
</stubs>
</prig>
</configuration>
NOTE: You can also get the same result using Prig ILSpy plug-in.
Were you able to build successfully? OK, now you’re ready to test them.
In the test code, it becomes testable through the use of the stub and the replacement to Test Double that returns the fake information:
using NUnit.Framework;
using QuickTour;
using System;
using System.Prig;
using Urasandesu.Prig.Framework;
namespace QuickTourTest
{
[TestFixture]
public class LifeInfoTest
{
[Test]
public void IsNowLunchBreak_should_return_false_when_11_oclock()
{
// `IndirectionsContext` can minimize the influence of the API replacement.
using (new IndirectionsContext())
{
// Arrange
// `PDateTime` is the class that is generated automatically by Prig.
// We call such class "Prig Type". You can replace the method body of
// `DateTime.Now` by using that.
PDateTime.NowGet().Body = () => new DateTime(2013, 12, 13, 11, 00, 00);
// Hereafter, `DateTime.Now` will return only `2013/12/13 11:00:00`.
// Act
var result = LifeInfo.IsNowLunchBreak();
// Assert
Assert.IsFalse(result);
}
}
// In the same way, add the test case to cover other branches...
[Test]
public void IsNowLunchBreak_should_return_true_when_12_oclock()
{
using (new IndirectionsContext())
{
// Arrange
PDateTime.NowGet().Body = () => new DateTime(2013, 12, 13, 12, 00, 00);
// Act
var result = LifeInfo.IsNowLunchBreak();
// Assert
Assert.IsTrue(result);
}
}
[Test]
public void IsNowLunchBreak_should_return_false_when_13_oclock()
{
using (new IndirectionsContext())
{
// Arrange
PDateTime.NowGet().Body = () => new DateTime(2013, 12, 13, 13, 00, 00);
// Act
var result = LifeInfo.IsNowLunchBreak();
// Assert
Assert.IsFalse(result);
}
}
}
}
Before running tests in Visual Studio Test Explorer, you have to install a Test Adapter. Currently, Prig supports the following Test Adapters: NUnit, MSTest, xUnit.net. As the above described sample, let we use NUnit. Now, in the Package Manager Console, change the Package source
to Prig Source
, the Default project
to QuickTourTest
and execute the following command:
PM> Install-Package NUnitTestAdapterForPrig
NOTE: Unfortunately, you can’t use official NUnit Test Adapter because it doesn’t support any configurations like prime NUnit which is supported, e.g. NUnit Gui Runner’s Settings and NUnit-Console’s Settings.
After install, build the test project and choose the menu TEST
- Windows
- Test Explorer
. Then, you can find runnable tests in the Test Explorer.
When Test Adapter was installed successfully, you can also modify the Test Settings
. As the following image, change Default Processor Architecture
to x64
and uncheck Keep Test Execution Engine Running
:
In fact, to enable any profiler based mocking tool, you have to set the environment variables. Therefore, such libraries - Microsoft Fakes/Typemock Isolator/Telerik JustMock provide small runner to satisfy the requisition, also it is true at Prig. Choose the menu PRIG
- Enable Test Adapter for ConsoleApplicationTest
:
Then, execute TEST
- Run
- All Tests
, you can get test results in the Test Explorer.
If tests have been created, you can refactor illimitably! For example, you probably can find the result of refactoring as follows:
using System;
namespace QuickTour
{
public class LifeInfo
{
public static bool IsNowLunchBreak()
{
// 1. Add overload to isolate from external environment then call it from original method.
return IsNowLunchBreak(DateTime.Now);
}
public static bool IsNowLunchBreak(DateTime now)
{
// 2. Also, I think the expression '12 <= now.Hour && now.Hour < 13' is too complex.
// Better this way, isn't it?
return now.Hour == 12;
}
// 3. After refactoring, no longer need to use Prig, because you can test this overload.
}
}
As just described, Prig helps the code that depends on an untestable library gets trig back. I guarantee you will enjoy your development again!!
For more information, see also Prig’s wiki.
To build this project needs the following dependencies:
CMD boost_1_60_0>bootstrap.bat Building Boost.Build engine
Bootstrapping is done. To build, run:
.\b2
To adjust configuration, edit ‘project-config.jam’. Further information: …
CMD boost_1_60_0>.\b2 link=static threading=multi variant=debug,release runtime-link=shared,static -j 4
Building the Boost C++ Libraries.
Performing configuration checks …
CMD boost_1_60_0>.\b2 link=static threading=multi variant=debug,release runtime-link=shared,static -j 4 –stagedir=.\stage\x64 address-model=64
Building the Boost C++ Libraries.
Performing configuration checks …
* [Google Test 1.6](https://code.google.com/p/googletest/)
Extract to C:\gtest-1.6.0, and upgrade C:\gtest-1.6.0\msvc\gtest.sln to Visual Studio 2013. Choose the `Build` menu, and open `Configuration Manager...`. On `Configuration Manager` dialog box, in the `Active Solution Platform` drop-down list, choose the `<New...>` option. After the `New Solution Platform` dialog box is opened, in the `Type or select the new platform` drop-down list, select a 64-bit platform. Then build all(Debug/Release) configurations.
* [NUnit 2.6.4.14350](http://www.nunit.org/)
Install using with the installer(NUnit-2.6.4.msi). As more easy way, you can install it by using Chocolatey: `cinst nunit -version 2.6.4 -y`.
* [Microsoft Visual Studio 2013 SDK](http://www.microsoft.com/en-us/download/details.aspx?id=40758)
Install using with the installer(vssdk_full.exe).
* [Modeling SDK for Microsoft Visual Studio 2013](http://www.microsoft.com/en-us/download/details.aspx?id=40754)
Install using with the installer(VS_VmSdk.exe).
* [NAnt](http://nant.sourceforge.net/)
You can also install in accordance with [the help](http://nant.sourceforge.net/release/latest/help/introduction/installation.html), but the easiest way is using Chocolatey: `cinst nant -y`.
* [Microsoft .NET Framework 3.5 Service Pack 1](https://www.microsoft.com/en-us/download/details.aspx?id=22)
Install using with the installer(dotnetfx35setup.exe).
* [Jekyll](http://jekyllrb.com/docs/windows/)(Optional)
This is used to only edit and test locally [Prig's GitHub Pages](http://urasandesu.github.io/Prig/). The installation steps are too complex. I think that [you had better use Chocolatey](https://davidburela.wordpress.com/2015/11/28/easily-install-jekyll-on-windows-with-3-command-prompt-entries-and-chocolatey/)(just executing a few commands).
## BUILD
### From PowerShell Script
Run Developer Command Prompt for VS2013 as Administrator, and execute the following commands:
```dos
CMD Prig> cd
C:\Users\User\Prig
CMD Prig> powershell
Windows PowerShell
Copyright (C) 2014 Microsoft Corporation. All rights reserved.
PS Prig> .\Build.ps1
...
PS Prig>
NOTE: It takes somewhere round 30 minutes.
NOTE: Probably, the reference assembly path of NuGet.VisualStudio
will be changed to another path like this commit. It seems that it will be created randomly when installing Visual Studio, so temporarily change it correct path for your development.
After preparing all dependencies, you can build this project in the following steps:
$(SolutionDir)$(Configuration)\$(PlatformTarget)\
.If you built Prig by PowerShell script, Prig.vsix
will be output to <top level directory you cloned>\Release\x86
directory. You can install by double clicking that. After that, do installation procedure same as the beginning; choose the menu PRIG
- Register Prig (Needs Restarting)
.
At first, choose the menu PRIG
- Unregister Prig (Needs Restarting)
. After you once restart Visual Studio, uninstall the VSIX; choose TOOLS
- Extensions and Updates...
, search Installed
for prig
and click Uninstall
.