Showing posts with label .NET Core. Show all posts
Showing posts with label .NET Core. Show all posts

Saturday, August 15, 2020

xUnit for Unit Testing

xUnit works on both .NET Core and .NET framework projects.

If you are planning to work with .NET Core, then there is a project template in VS 2019. Else if what you have is a .NET framework class library as your unit testing project then you need to install the below two Nugets.











            Common Asserts:

Assert.Equal()
Assert.NotEqual()
Assert.InRange()
Assert.True()
Assert.False()
Assert.Contains()
Assert.DoesNotContain()
Assert.All(collection, item => Assert.False(string.NUllOrWhiteSpace(item)))

Some other Asserts would be:

Assert.IsType<ObjectType>(actualResultingObject);
Assert.IsAssignableFrom<ObjectType>(resultingObject); //To check if the object is of particular type
Assert.Same(objectOne, objectTwo); //Check if two objects are the same
Assert.Throws<ArgumentNullException>(() => obj.Create(null));

In xUnit, unlike NUnit or MSTest, the test class is not attributed. xUnit simply finds public methods in the DLL which are attributed with [Fact] or [Theory]

Structure of a Test method:

class EmployeeShould
{
    [Fact]
    public void GetEmployeeNameById_ShouldReturnCorrectName()
    {
         EmployeeFactory employees = new EmployeeFactory() //Arrange
         var actualValue = employees.GetEmployeeById(001); //Act
         Assert.Euqal("ExpectedName", actualValue); //Assert
    }
}

Categorizing tests
To caegorize test you could use the Trait[] attribute.

Example:
    [Fact]
    [Trait("Category","Employee")]
    public void GetEmployeeNameById_ShouldReturnCorrectName()
    {
    }

You can view the Categories in the Test explorer view. You can also run the categorized test in the command-line interface;

Example: dotnet test --filter Employees

Skipping a test
Example:
    [Fact(Skip = "Dont need to run this test at the moment")]
    public void GetEmployeeNameById_ShouldReturnCorrectName()
    {
    }

Including additional test output text.
For this we need to implement the xUnit's ITestOutputHelper interface

Example:
using Xunit.Abstractions;

public class EmployeeShould
{
    private readonly ITestOutputHelper _output;

    public EmployeeShould(ITestOutputHelper output)
    {
        _output = output;
    }

    [Fact]
    public void GetEmployeeNameById_ShouldReturnCorrectName()
    {
         _output.WriteLine("Starting Employee Test");

         EmployeeFactory employees = new EmployeeFactory();//Arrange
         var actualValue = employees.GetEmployeeById(001); //Act
         Assert.Equal("ExpectedName", actualValue); //Assert
    }
}

You can view the output in the Test explorer. Also when you execute through the command-line, you can view the TRX file result.

Example:  dotnet test --filter Employees --logger:trx

Setup and disposing after test run
Create a constructor in the test class to do the setting up and implement IDisposable interface to dispose.

Example:
public class EmployeeShould : IDisposable
{
    private readonly ITestOutputHelper _output;

    public EmployeeShould(ITestOutputHelper output)
    {
       _employees = new EmployeeFactory(); //Create the object to be used in all test methods 
        _output = output;
    }

    [Fact]
    public void GetEmployeeNameById_ShouldReturnCorrectName()
    {
         _output.WriteLine("Starting Employee Test");

         var actualValue = _employees.GetEmployeeById(001); //Act
         Assert.Euqal("ExpectedName", actualValue); //Assert
    }

    public void Dispose()
    {
        _output.WriteLine("Disposing all EmployeeShould Test class resources");
    }
}

Sharing context between tests
You can use a Fixture class for this purpose. Then implement xUnits IClassFixure interface
Example:

public class CompanyState 
{
    public List<Employee> Employees= new List<Employee>();
    //Add method to load employees from repo

   public void UpgradeEmployeeDesignation()
   {
   }

    public Employee GetEmployeeById(int id)
   {
   }
}

//create new fixture class
public class EmployeeFixture : IDisposable
{
    public CompanyState State { get; private set; }
 
    public EmployeeFixture()
    {
          State = new CompanyState();
    }
   
    //Disposing resources
    public void Dispose()
    {
        //cleanup
    }
}

//implementing the IClassFixture interface in your test class
using Xunit.Abstractions;

public class EmployeeShould : IClassFixure<EmployeeFixture > 
{
    private readonly EmployeeFixture _employeeFixture;
    private readonly ITestOutputHelper _output;

    //constructor
    public EmployeeShould(EmployeeFixture employeeFixtureITestOutputHelper output)
    {
       _employeeFixture = employeeFixture;
        _output = output;
    }

    [Fact]
    public void GetEmployeeNameById_ShouldReturnCorrectName()
    {
         _output.WriteLine("Starting Employee Test");
     
         _employeeFixture.State.UpgradeEmployeeDesignation();  //update employee config across org before test
         var actualValue = _employeeFixture.State.GetEmployeeById(001); //Act
         Assert.Equal("ExpectedDesignation", actualValue.Designation); //Assert
    }
}

Sharing context across multiple test classes
Step 1) Create a fixture class.
Step 2)  Create a new class which implements xUnits ICollectionFixture interface.

Example:
[CollectionDefinition("EmployeeState Collection")]
public class CompanyStateCollection : ICollectionFixture<EmployeeFixture>
{}

Notice here that the CollectionDefinition Attribute is used.

Step 3) Using the collection in the test classes

Example:
//Test class one
[Collection("EmployeeState Collection")]
public class TestClass1
{
    private readonly EmployeeFixture _employeeFixture;
    private readonly ITestOutputHelper _output;

    //constructor
    public EmployeeShould(EmployeeFixture employeeFixtureITestOutputHelper output)
    {
       _employeeFixture = employeeFixture;
        _output = output;
    }

    [Fact]
    public void Test1()
   {}

    [Fact]
    public void Test2()
   {}
}

//Second test class
[Collection("EmployeeState Collection")]
public class TestClass2
{
    private readonly EmployeeFixture _employeeFixture;
    private readonly ITestOutputHelper _output;

    //constructor
    public EmployeeShould(EmployeeFixture employeeFixtureITestOutputHelper output)
    {
       _employeeFixture = employeeFixture;
        _output = output;
    }

    [Fact]
    public void Test3()
   {}

    [Fact]
    public void Test4()
   {}
}

Notice here we have only attributed the collection in test class, and not implemented any interface.

Data Driven Testing


Data driven testing comes in handy for scenarios where the same test method has to be executed for different data inputs.

Example:
Lets say there is a class called Student and it has properties to store the score for each subject. A method to get student grade by deriving the median of all subjects. and another method to get the overall semester pass of fail status though another method. And lets say we need to test the semester pass or fail status. A sample test method for the above mentioned scenario would be something like below:

[Theory]
[InlineData(67,68,69)]
[InlineData(100,100,100)]
[InlineData(100,80,90)]
public void ExamResult_StudentGetsHighMarks_ShouldPassSemester(int math, int science, int english, boolean result)
{
    // test code
}

Theory attribute tells that this test method will be executed multiple times and the InlineData attribute provide the various test data scenarios. The test explorer shows three test cases for the above test method.

How to share test data across tests

In the below sample i will store the test data in a new class file

public class StudentTestData
{
   public static IEnumerable<object[]> TestData
   {
       get
      {
          yield return new object[] {67, 68, 69};
          yield return new object[] {100,100,100};
          yield return new object[] {100,80,90};
      }
   }
}

Now we can update the test method

[Theory]
[DataMember(nameof(StudentTestData.TestData), MemberType = typeof(StudentTestData))]
public void ExamResult_StudentGetsHighMarks_ShouldPassSemester(int math, int science, int english, boolean result)
{
    // test code
}

Reading test data from a file such as a CSV

Sample csv file content:

67,68,69
100,100,100
100,80,90

Create a class to read external test data file:

public class ExternalTestData
{
   public static IEnumerable<object[]> TestData
   {
      get
     {
          string[] csvLines = File.ReadAlLines("TestData.csv");
          var testCases = new List<object[]>();

           foreach(var csvLine in csvLines)
           {
              IEnumerable<int> values = csvLine.Split(',').Select(int.Parse);
              object[] testCase =  values.Cast<object>().ToArray();
              testCases.Add(testCase);
           }
            return testCases;
     }
   }
}

update test method references:

[Theory]
[DataMember(nameof(ExternalTestData.TestData), MemberType = typeof(ExternalTestData))]
public void ExamResult_StudentGetsHighMarks_ShouldPassSemester(int math, int science, int english, boolean result)
{
    // test code
}

If you get an error when you try to run the test such as "File Not Found Exception". Then right click on the CSV file in the project. Go to properties of the CSV. UNder General settings, select "Copy always" in the "Copy to output directory" setting.

Creating Custom Data Source Attributes

We will create a new class which implements xUnits DataAttribute

using Xunit.Sdk;

public class StudentDataAttribute : DataAttribute
{
   public override IEnumerable<object[]> GetData(MethodInfo testMethod)
   {
       yield return new object[] { 67, 68, 69 };
       yield return new object[] { 100, 100, 100 };
       yield return new object[] { 100, 80, 90 };
   }
}

Then update the test method,:

[Theory]
//[DataMember(nameof(ExternalTestData.TestData), MemberType = typeof(ExternalTestData))]
[StudentData]
public void ExamResult_StudentGetsHighMarks_ShouldPassSemester(int math, int science, int english, boolean result)
{
    // test code
}

If you are new to xUnit and have been using other unit testing frameworks you can get an easy comparison between the frameworks by  clicking on this link

Saturday, March 14, 2020

ASP.NET Core - The requested page cannot be accessed because the related configuration data for the page is invalid

Scenario:

You have installed the .NET Core SDK in your computer. Debugs in the Visual Studio are working fine. Then you publish the solution to a folder location in IIS. Then you get the below error:

Error:

The requested page cannot be accessed because the related configuration data for the page is invalid 

HTTP Internal Server Error 500.19

Error code 0x8007000d

Fix:

Install the Windows hosting bundle from this link: https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-aspnetcore-3.1.1-windows-hosting-bundle-installer

[Note: The version 3.1.1 is current as of this writing]

Installation:



VoilĂ  !! Your ASP.NET Core application starts to work in IIS

Wednesday, January 29, 2020

Renaming the wwwroot folder - .NET Core

In .NET Core, only the files with in the web root are served unlike in .NET. All the other files are blocked. So, you have to have all JavaScript, CSS and image files within the web root which by default is the wwwroot folder. Lets say you renamed the "wwwroot" folder to "Content", then you have to set the new name as the web root. Set it inside the main method of the Program.cs file.

public class Program
{
    public static void Main(string[] args)
    {
        var host = new WebHostBuilder()
            .UseKestrel()
            .UseContentRoot(Directory.GetCurrentDirectory())
            .UseWebRoot("Content")
            .UseIISIntegration()
            .UseStartup<MyStartup>()
            .Build();

        host.Run();
    }
}

Tuesday, January 7, 2020

AddSingleton vs AddScoped vs AddTransient methods - Dependency injection into controllers in .NET Core

The Model class

public class InventoryItems
{
public int Id { get; set; }
public string Name { get; set; }
public double Price { get; set; }
}

The interface for the service class

public interface IInventoryServices
{
InventoryItems AddInventoryItems(InventoryItems items);
Dictionary<string, InventoryItems> GetInventoryItems();
}

The service class

public class InventoryServices : IInventoryServices
{
private readonly Dictionary<string, InventoryItems> _inventoryItems;

public InventoryServices()
{
_inventoryItems = new Dictionary<string, InventoryItems>();
}
public InventoryItems AddInventoryItems(InventoryItems items)
{
_inventoryItems.Add(items.Name, items);
return items;
}

Dictionary<string, InventoryItems> IInventoryServices.GetInventoryItems()
{
return _inventoryItems;
}
}

The controller which the service is injected in the constructor

    [Route("api/[controller]")]
    [ApiController]
    public class InventoryController : ControllerBase
    {
private readonly IInventoryServices _service;

public InventoryController(IInventoryServices services)
{
_service = services;
}

[HttpPost]
[Route("AddInventoryItems")]
public ActionResult<InventoryItems> AddInventoryItem(InventoryItems items)
{
var inventoryItems = _service.AddInventoryItems(items);
return inventoryItems;
}

[HttpGet]
[Route("GetInventoryItems")]
public ActionResult<Dictionary<string, InventoryItems>> GetInventoryItems()
{
var inventoryItems = _service.GetInventoryItems();
return inventoryItems;
}
    }

Now in the Startup.cs we have to specify the dependency injection under the "ConfigureServices" method.

public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddSingleton<IInventoryServices, InventoryServices>();
}

There are three ways in which you could set the Dependency Injection. They are AddSingleton(), AddScoped() and AddTransient()

Singleton - An instance of the service class (InventoryServices) is created, when the interface of the service (IInventoryServices) is first requested and that single instance of the service class (InventoryServices) is used by all http requests throughout the application

Scoped - Here we get the same instance within the scope of a given http request but a new instance of the service is created during a different http request

Transient - a new instance of the service class is created every time an instance is requested whether it is the scope of the same http request or across different http requests 

Auxiliary
Postman Post Request:









  

                                                                                                                                               
  
             Postman Get Request:



Monday, January 6, 2020

This Project is configured to use SSL. Disable https in visual studio web project - Asp.Net Core

In the .NET Core WEb applications SSL are enabled by default.

You get a message as "This Project is configured to use SSL. To avoid SSL warnings in the browser you can choose to trust the self-signed certificate that IIS Express has generated. Would you like to trust the IIS SSL certificate?"

Even though it is recommended to have SSL, during debugging you may need to disable this option.

For that, Go to project properties. In the "Debug" tab, find the "Web Server Settings" section. Un-tick the "Enable SSL" option.