IPSAG.AbTesting
1.0.0-preview29.1
Prefix Reserved
See the version list below for details.
dotnet add package IPSAG.AbTesting --version 1.0.0-preview29.1
NuGet\Install-Package IPSAG.AbTesting -Version 1.0.0-preview29.1
<PackageReference Include="IPSAG.AbTesting" Version="1.0.0-preview29.1" />
paket add IPSAG.AbTesting --version 1.0.0-preview29.1
#r "nuget: IPSAG.AbTesting, 1.0.0-preview29.1"
// Install IPSAG.AbTesting as a Cake Addin #addin nuget:?package=IPSAG.AbTesting&version=1.0.0-preview29.1&prerelease // Install IPSAG.AbTesting as a Cake Tool #tool nuget:?package=IPSAG.AbTesting&version=1.0.0-preview29.1&prerelease
IPSAG.AbTesting library for .NET
Introduction
The A/B Testing Nuget is a .NET-based library designed to facilitate A/B testing experiments in a controlled environment. It should be included together with an npm package to complete the integration, see example in the playground.
playground | Source code | README |
---|---|---|
IPSAG.AbTesting | Source code | README |
@ips-ag/abtesting | Source code | README |
Getting Started
Install the package
Install the Azure Storage Blobs client library for .NET with NuGet:
dotnet add package IPSAG.AbTesting
Prerequisites
You need an Azure subscription and a App Configuration to use this package. The App Insight is not mandatory.
To create a new App Configuration, you can use the Azure Portal, or the Azure CLI. Here's an example using the Azure CLI:
az appconfig create --name MyAppConfig --resource-group MyResourceGroup --location westus
Before you can use the IPSAG.AbTesting, ensure you have the following prerequisites installed on your system:
- .NET 8.0 or higher SDK Application: Required to install the Nuget. You can download it from https://dotnet.microsoft.com/download.
With these prerequisites in place, you're ready to start using the A/B Testing libraries to conduct your A/B testing experiments.
How to use
In order to interact with the A/B Testing service, you'll need to configure connection to Azure App Configuration.
// Create Host builder
var builder = WebApplication.CreateBuilder(args);
// Sample connection strings
var (appConfigCs, appInsightsCs) = ("<AppConfigConnectionString>", "<AppInsightsConnectionString>");
// Configure A/B Testing by providing connection to App Configuration & App Insights
// By options
builder.AddAbTesting<TargetingContextService>(options =>
{
options.AppConfigConnectionString = appConfigCs;
options.AppInsightsConnectionString = appInsightsCs;
options.UseDefaultControllers = true; // default value
});
// By options & configuration
builder.AddAbTesting<TargetingContextService>((options, configuration) =>
{
options.AppConfigConnectionString = configuration.GetConnectionString("AppConfig");
options.AppInsightsConnectionString = configuration.GetConnectionString("AppInsights");
options.UseDefaultControllers = true; // default value
});
// OR by parameters
builder.AddAbTesting<TargetingContextService>(appConfigCs!,
appInsightsCs);
// Configure A/B Testing by providing connection to App Configuration only
//By options
builder.AddAbTesting<TargetingContextService>(options =>
{
options.AppConfigConnectionString = appConfigCs;
options.UseDefaultControllers = true; // default value
});
// By options & configuration
builder.AddAbTesting<TargetingContextService>((options, configuration) =>
{
options.AppConfigConnectionString = configuration.GetConnectionString("AppConfig");
options.UseDefaultControllers = true; // default value
});
// OR by parameters
builder.AddAbTesting<TargetingContextService>(appConfigCs!);
var app = builder.Build();
// If you are using Authorization information to build the TargetingContext,
// please ensure that app.UseAbTesting() was placed after app.UseAuthentication(); & app.UseAuthorization();
app.UseAbTesting();
//
The TargetingContextService
is an implementation from the interface IPSAG.AbTesting.Services.ITargetingContextService
which is required to use A/B Testing package.
There, you could define your own logic to create the TargetingContext
which can reflect to App Configuration
// Example
public class TargetingContextService(IHttpContextAccessor contextAccessor) : ITargetingContextService
{
public async Task<TargetingContext> GetTargetingContextAsync(CancellationToken ct = default)
{
HttpContext httpContext = contextAccessor.HttpContext!;
var user = httpContext.User;
if (user.Identity == null || !user.Identity.IsAuthenticated)
{
return new()
{
UserId = "anonymous",
Groups = []
};
}
var distributionGroup = user.Claims.SingleOrDefault(c => c.Type == ClaimTypes.GroupSid)?.Value;
return new()
{
UserId = user.Identity.Name,
Groups = string.IsNullOrEmpty(distributionGroup) ? [] : [distributionGroup]
};
}
}
By default, a default AbTestingController would be injected to your application
[Route("api/ab-testing")]
public class AbTestingController(IConfigurationService abTestingConfigService) : BaseApiController
{
[HttpGet("feature-flags")]
[ProducesResponseType(typeof(FeatureFlag[]), StatusCodes.Status200OK)]
public async Task<IActionResult> GetAllAsync(CancellationToken ct = default)
{
var featureFlags = await abTestingConfigService.ReadFeatureFlagsAsync(ct).ConfigureAwait(false);
return featureFlags.Match(Ok, ServerError);
}
}
Request sample
curl -X 'GET' \
'http://localhost:5103/api/ab-testing/feature-flags' \
-H 'accept: application/json'
Response body
[
{
"name": "ShopFilter",
"value": "False",
"isVariant": true
},
{
"name": "ShopFilterEarlyAccess",
"value": "False",
"isVariant": false
},
{
"name": "ShopFilterVersion",
"value": "0.0.1",
"isVariant": true
}
]
But you could also use your own controllers by removing the default controllers and defining your controllers and injecting IConfigurationService
// Remove default controllers
builder.AddAbTesting<TargetingContextService>(options =>
{
options.AppConfigConnectionString = appConfigCs;
options.AppInsightsConnectionString = appInsightsCs;
options.UseDefaultControllers = false; // <-- set to false
});
....
// Create new controller
[Route("api/my-route")]
public class MyController(IConfigurationService abTestingConfigService)
{
// Implementation
}
Related Packages
- JetBrains.Annotations (>= 2024.2.0)
- Microsoft.Azure.AppConfiguration.AspNetCore (>= 8.0.0-preview.2)
- Microsoft.FeatureManagement.AspNetCore (>= 4.0.0-preview3)
- Microsoft.FeatureManagement.Telemetry.ApplicationInsights (>= 4.0.0-preview3)
- Microsoft.FeatureManagement.Telemetry.ApplicationInsights.AspNetCore (>= 4.0.0-preview3)
License
- The
IPSAG.AbTesting
NuGet package and its source code under thepackages/Nuget
directory are distributed under the terms of the MIT License.
Feedback
We value your feedback! If you have any suggestions, bug reports, or feature requests, please open an issue on our GitHub repository.
Product | Versions 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. |
-
net8.0
- JetBrains.Annotations (>= 2024.2.0)
- Microsoft.Azure.AppConfiguration.AspNetCore (>= 8.0.0-preview.2)
- Microsoft.FeatureManagement.AspNetCore (>= 4.0.0-preview3)
- Microsoft.FeatureManagement.Telemetry.ApplicationInsights (>= 4.0.0-preview3)
- Microsoft.FeatureManagement.Telemetry.ApplicationInsights.AspNetCore (>= 4.0.0-preview3)
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.0-preview35.1 | 60 | 7/16/2024 |
1.0.0-preview34.1 | 58 | 7/11/2024 |
1.0.0-preview33.1 | 50 | 7/11/2024 |
1.0.0-preview32.1 | 38 | 7/11/2024 |
1.0.0-preview31.1 | 42 | 7/11/2024 |
1.0.0-preview30.1 | 38 | 7/11/2024 |
1.0.0-preview29.1 | 37 | 7/11/2024 |
1.0.0-preview28.1 | 46 | 7/11/2024 |
1.0.0-preview27.1 | 38 | 7/11/2024 |
1.0.0-preview25.1 | 30 | 7/11/2024 |
1.0.0-preview24.1 | 51 | 7/11/2024 |
1.0.0-preview23.1 | 47 | 7/9/2024 |
1.0.0-preview22.1 | 45 | 7/9/2024 |
1.0.0-preview21.1 | 41 | 7/9/2024 |
1.0.0-preview20.1 | 48 | 7/9/2024 |
1.0.0-preview19.1 | 44 | 7/4/2024 |
1.0.0-preview18.1 | 47 | 7/4/2024 |
1.0.0-preview17.1 | 75 | 7/4/2024 |
1.0.0-preview16.1 | 49 | 7/4/2024 |
1.0.0-preview15.1 | 56 | 7/4/2024 |
1.0.0-preview14.1 | 50 | 7/3/2024 |
1.0.0-preview13.1 | 64 | 7/2/2024 |