Pororoca.Test 3.3.0

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

// Install Pororoca.Test as a Cake Tool
#tool nuget:?package=Pororoca.Test&version=3.3.0

Pororoca.Test

This is the official Pororoca package for running automated tests. Pororoca is a tool for HTTP inspection, and this package can be used for HTTP integration tests, or simply for making HTTP requests.

To use it, you will need a Pororoca collection file to include inside your test project. Any .NET test framework can be used: xUnit, MSTest, and others, even console applications.

A full tutorial is available on the documentation website.

Example of usage within a test

The code below shows how to use the Pororoca.Test in a xUnit test. First, it loads a Pororoca collection from a file. Then, defines the environment that will be used.

using Xunit;
using System.Net;
using Pororoca.Test;

namespace Pororoca.Test.Tests;

public class MyPororocaTest
{
    private readonly PororocaTest pororocaTest;

    public MyPororocaTest()
    {
        string filePath = @"C:\Tests\MyCollection.pororoca_collection.json";
        pororocaTest = PororocaTest.LoadCollectionFromFile(filePath)
                                   .AndUseTheEnvironment("Local");
    }

    [Fact]
    public async Task Should_get_JSON_successfully()
    {
        var res = await pororocaTest.SendRequestAsync("Get JSON");

        Assert.NotNull(res);
        Assert.Equal(HttpStatusCode.OK, res.StatusCode);
        Assert.Equal("application/json; charset=utf-8", res.ContentType);
        Assert.Contains("\"id\": 1", res.GetBodyAsText());
    }
}

To load a Pororoca collection file that is in your test project folder, you can do it like this:

private static string GetTestCollectionFilePath()
{
    var testDataDirInfo = new DirectoryInfo(Environment.CurrentDirectory).Parent!.Parent!.Parent!;
    return Path.Combine(testDataDirInfo.FullName, "MyPororocaCollection.pororoca_collection.json");
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

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
3.3.0 0 4/29/2024
3.2.0 85 4/9/2024
3.1.1 95 3/13/2024
3.1.0 85 2/15/2024
3.0.1 137 1/10/2024
3.0.0 122 1/2/2024
2.5.0 148 11/14/2023
2.4.0 140 10/16/2023
2.3.0 101 9/25/2023
2.2.0 129 8/6/2023
2.1.0 137 4/24/2023
2.0.1 236 2/26/2023
2.0.0 262 12/21/2022
1.6.0 299 11/20/2022
1.5.0 391 9/21/2022
1.4.0 393 7/3/2022
1.3.0 407 5/15/2022
1.2.0 377 4/11/2022
1.1.1 405 3/21/2022
1.1.0 410 3/18/2022
0.1.1 380 3/15/2022
0.1.0 398 3/15/2022