Compare commits
No commits in common. "main" and "take-a-number-implementation" have entirely different histories.
main
...
take-a-num
|
@ -1,17 +0,0 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Blazor.Bootstrap" Version="3.3.1" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\AccessQueueService\AccessQueueService.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
|
@ -1,23 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<base href="/" />
|
|
||||||
<link rel="stylesheet" href="app.css" />
|
|
||||||
<link rel="stylesheet" href="AccessQueuePlayground.styles.css" />
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
||||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" rel="stylesheet" />
|
|
||||||
<link href="_content/Blazor.Bootstrap/blazor.bootstrap.css" rel="stylesheet" />
|
|
||||||
<HeadOutlet @rendermode="InteractiveServer" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<Routes @rendermode="InteractiveServer" />
|
|
||||||
<script src="_framework/blazor.web.js"></script>
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
|
|
||||||
<script src="_content/Blazor.Bootstrap/blazor.bootstrap.js"></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
|
@ -1,9 +0,0 @@
|
||||||
@inherits LayoutComponentBase
|
|
||||||
|
|
||||||
@Body
|
|
||||||
|
|
||||||
<div id="blazor-error-ui">
|
|
||||||
An unhandled error has occurred.
|
|
||||||
<a href="" class="reload">Reload</a>
|
|
||||||
<a class="dismiss">🗙</a>
|
|
||||||
</div>
|
|
|
@ -1,18 +0,0 @@
|
||||||
#blazor-error-ui {
|
|
||||||
background: lightyellow;
|
|
||||||
bottom: 0;
|
|
||||||
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
|
|
||||||
display: none;
|
|
||||||
left: 0;
|
|
||||||
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
|
|
||||||
position: fixed;
|
|
||||||
width: 100%;
|
|
||||||
z-index: 1000;
|
|
||||||
}
|
|
||||||
|
|
||||||
#blazor-error-ui .dismiss {
|
|
||||||
cursor: pointer;
|
|
||||||
position: absolute;
|
|
||||||
right: 0.75rem;
|
|
||||||
top: 0.5rem;
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
@page "/Error"
|
|
||||||
@using System.Diagnostics
|
|
||||||
|
|
||||||
<PageTitle>Error</PageTitle>
|
|
||||||
|
|
||||||
<h1 class="text-danger">Error.</h1>
|
|
||||||
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
|
||||||
|
|
||||||
@if (ShowRequestId)
|
|
||||||
{
|
|
||||||
<p>
|
|
||||||
<strong>Request ID:</strong> <code>@RequestId</code>
|
|
||||||
</p>
|
|
||||||
}
|
|
||||||
|
|
||||||
<h3>Development Mode</h3>
|
|
||||||
<p>
|
|
||||||
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
|
||||||
It can result in displaying sensitive information from exceptions to end users.
|
|
||||||
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
|
||||||
and restarting the app.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
@code{
|
|
||||||
[CascadingParameter]
|
|
||||||
private HttpContext? HttpContext { get; set; }
|
|
||||||
|
|
||||||
private string? RequestId { get; set; }
|
|
||||||
private bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
||||||
|
|
||||||
protected override void OnInitialized() =>
|
|
||||||
RequestId = Activity.Current?.Id ?? HttpContext?.TraceIdentifier;
|
|
||||||
}
|
|
|
@ -1,117 +0,0 @@
|
||||||
@page "/"
|
|
||||||
@using AccessQueuePlayground.Models
|
|
||||||
@using AccessQueuePlayground.Services
|
|
||||||
@using BlazorBootstrap
|
|
||||||
|
|
||||||
@inject IAccessQueueManager Manager
|
|
||||||
|
|
||||||
<PageTitle>AccessQueue Playground</PageTitle>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<Button Color="ButtonColor.Success" @onclick="AddUser">Add User</Button>
|
|
||||||
<Button Color="ButtonColor.Danger" @onclick="RevokeAllAccess">Revoke All</Button>
|
|
||||||
<Button Color="ButtonColor.Warning" @onclick="Reset">Reset Data</Button>
|
|
||||||
</p>
|
|
||||||
@if (Status != null)
|
|
||||||
{
|
|
||||||
<h2>Users with access</h2>
|
|
||||||
<Grid TItem="User" Data="Status.AccessUsers" Class="table table-bordered mt-3" AllowSorting>
|
|
||||||
<GridColumns>
|
|
||||||
<GridColumn TItem="User" HeaderText="Id" PropertyName="Id" SortKeySelector="item => item.Id">
|
|
||||||
@context.Id
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Expiration" PropertyName="LatestResponse?.ExpiresOn" SortKeySelector="item => item.LatestResponse.ExpiresOn">
|
|
||||||
@context.LatestResponse?.ExpiresOn
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Active">
|
|
||||||
<ChildContent>
|
|
||||||
<Switch Value="context.Active" ValueExpression="() => context.Active" ValueChanged="(value) => SetUserActive(context.Id, value)" />
|
|
||||||
</ChildContent>
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Revoke">
|
|
||||||
<ChildContent>
|
|
||||||
<Button Color="ButtonColor.Danger" @onclick="() => RevokeAccess(context.Id)">Revoke Access</Button>
|
|
||||||
</ChildContent>
|
|
||||||
</GridColumn>
|
|
||||||
</GridColumns>
|
|
||||||
</Grid>
|
|
||||||
<h2>Users in queue</h2>
|
|
||||||
<Grid TItem="User" Data="Status.QueuedUsers" Class="table table-bordered mt-3">
|
|
||||||
<GridColumns>
|
|
||||||
<GridColumn TItem="User" HeaderText="Id" PropertyName="Id">
|
|
||||||
@context.Id
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Queue Postition" PropertyName="LatestResponse?.RequestsAhead">
|
|
||||||
@(context.LatestResponse?.RequestsAhead ?? 0 + 1)
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Active">
|
|
||||||
<ChildContent>
|
|
||||||
<Switch Value="context.Active" ValueExpression="() => context.Active" ValueChanged="(value) => SetUserActive(context.Id, value)" />
|
|
||||||
</ChildContent>
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Revoke">
|
|
||||||
<ChildContent>
|
|
||||||
<Button Color="ButtonColor.Danger" @onclick="() => RevokeAccess(context.Id)">Revoke Access</Button>
|
|
||||||
</ChildContent>
|
|
||||||
</GridColumn>
|
|
||||||
</GridColumns>
|
|
||||||
</Grid>
|
|
||||||
<h2>Inactive users</h2>
|
|
||||||
<Grid TItem="User" Data="Status.InactiveUsers" Class="table table-bordered mt-3" AllowSorting>
|
|
||||||
<GridColumns>
|
|
||||||
<GridColumn TItem="User" HeaderText="Id" PropertyName="Id" SortKeySelector="item => item.Id">
|
|
||||||
@context.Id
|
|
||||||
</GridColumn>
|
|
||||||
<GridColumn TItem="User" HeaderText="Active">
|
|
||||||
<ChildContent>
|
|
||||||
<Switch Value="context.Active" ValueExpression="() => context.Active" ValueChanged="(value) => SetUserActive(context.Id, value)" />
|
|
||||||
</ChildContent>
|
|
||||||
</GridColumn>
|
|
||||||
</GridColumns>
|
|
||||||
</Grid>
|
|
||||||
}
|
|
||||||
|
|
||||||
@code {
|
|
||||||
public AccessQueueStatus? Status;
|
|
||||||
|
|
||||||
protected override void OnInitialized()
|
|
||||||
{
|
|
||||||
Manager.StatusUpdated += OnStatusUpdated;
|
|
||||||
Status = Manager.GetStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnStatusUpdated()
|
|
||||||
{
|
|
||||||
InvokeAsync(() =>
|
|
||||||
{
|
|
||||||
Status = Manager.GetStatus();
|
|
||||||
StateHasChanged();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public void AddUser()
|
|
||||||
{
|
|
||||||
Manager.AddUser();
|
|
||||||
Status = Manager.GetStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetUserActive(Guid userId, bool isActive)
|
|
||||||
{
|
|
||||||
Manager.SetUserActive(userId, isActive);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RevokeAccess(Guid userId)
|
|
||||||
{
|
|
||||||
Manager.RevokeAccess(userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RevokeAllAccess()
|
|
||||||
{
|
|
||||||
Manager.RevokeAllAccess();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Reset()
|
|
||||||
{
|
|
||||||
Manager.Reset();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
<Router AppAssembly="typeof(Program).Assembly">
|
|
||||||
<Found Context="routeData">
|
|
||||||
<RouteView RouteData="routeData" DefaultLayout="typeof(Layout.MainLayout)" />
|
|
||||||
<FocusOnNavigate RouteData="routeData" Selector="h1" />
|
|
||||||
</Found>
|
|
||||||
</Router>
|
|
|
@ -1,10 +0,0 @@
|
||||||
@using System.Net.Http
|
|
||||||
@using System.Net.Http.Json
|
|
||||||
@using Microsoft.AspNetCore.Components.Forms
|
|
||||||
@using Microsoft.AspNetCore.Components.Routing
|
|
||||||
@using Microsoft.AspNetCore.Components.Web
|
|
||||||
@using static Microsoft.AspNetCore.Components.Web.RenderMode
|
|
||||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
||||||
@using Microsoft.JSInterop
|
|
||||||
@using AccessQueuePlayground
|
|
||||||
@using AccessQueuePlayground.Components
|
|
|
@ -1,11 +0,0 @@
|
||||||
using AccessQueueService.Models;
|
|
||||||
|
|
||||||
namespace AccessQueuePlayground.Models
|
|
||||||
{
|
|
||||||
public class AccessQueueStatus
|
|
||||||
{
|
|
||||||
public List<User> AccessUsers { get; set; } = [];
|
|
||||||
public List<User> QueuedUsers { get; set; } = [];
|
|
||||||
public List<User> InactiveUsers { get; set; } = [];
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
using AccessQueueService.Models;
|
|
||||||
|
|
||||||
namespace AccessQueuePlayground.Models
|
|
||||||
{
|
|
||||||
public class User
|
|
||||||
{
|
|
||||||
public Guid Id { get; set; }
|
|
||||||
public bool Active { get; set; }
|
|
||||||
public AccessResponse? LatestResponse { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,34 +0,0 @@
|
||||||
using AccessQueuePlayground.Components;
|
|
||||||
using AccessQueuePlayground.Services;
|
|
||||||
using AccessQueueService.Data;
|
|
||||||
using AccessQueueService.Services;
|
|
||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
|
||||||
|
|
||||||
// Add services to the container.
|
|
||||||
builder.Services.AddRazorComponents()
|
|
||||||
.AddInteractiveServerComponents();
|
|
||||||
builder.Services.AddSingleton<IAccessService, AccessService>();
|
|
||||||
builder.Services.AddSingleton<IAccessQueueRepo, TakeANumberAccessQueueRepo>();
|
|
||||||
builder.Services.AddSingleton<IAccessQueueManager, AccessQueueManager>();
|
|
||||||
builder.Services.AddHostedService<AccessQueueBackgroundService>();
|
|
||||||
|
|
||||||
var app = builder.Build();
|
|
||||||
|
|
||||||
// Configure the HTTP request pipeline.
|
|
||||||
if (!app.Environment.IsDevelopment())
|
|
||||||
{
|
|
||||||
app.UseExceptionHandler("/Error", createScopeForErrors: true);
|
|
||||||
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
||||||
app.UseHsts();
|
|
||||||
}
|
|
||||||
|
|
||||||
app.UseHttpsRedirection();
|
|
||||||
|
|
||||||
app.UseStaticFiles();
|
|
||||||
app.UseAntiforgery();
|
|
||||||
|
|
||||||
app.MapRazorComponents<App>()
|
|
||||||
.AddInteractiveServerRenderMode();
|
|
||||||
|
|
||||||
app.Run();
|
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
|
||||||
"iisSettings": {
|
|
||||||
"windowsAuthentication": false,
|
|
||||||
"anonymousAuthentication": true,
|
|
||||||
"iisExpress": {
|
|
||||||
"applicationUrl": "http://localhost:25310",
|
|
||||||
"sslPort": 44353
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"profiles": {
|
|
||||||
"http": {
|
|
||||||
"commandName": "Project",
|
|
||||||
"dotnetRunMessages": true,
|
|
||||||
"launchBrowser": true,
|
|
||||||
"applicationUrl": "http://localhost:5108",
|
|
||||||
"environmentVariables": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"https": {
|
|
||||||
"commandName": "Project",
|
|
||||||
"dotnetRunMessages": true,
|
|
||||||
"launchBrowser": true,
|
|
||||||
"applicationUrl": "https://localhost:7211;http://localhost:5108",
|
|
||||||
"environmentVariables": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"IIS Express": {
|
|
||||||
"commandName": "IISExpress",
|
|
||||||
"launchBrowser": true,
|
|
||||||
"environmentVariables": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,33 +0,0 @@
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Microsoft.Extensions.Hosting;
|
|
||||||
|
|
||||||
namespace AccessQueuePlayground.Services
|
|
||||||
{
|
|
||||||
public class AccessQueueBackgroundService : BackgroundService
|
|
||||||
{
|
|
||||||
private readonly IAccessQueueManager _accessQueueManager;
|
|
||||||
|
|
||||||
public AccessQueueBackgroundService(IAccessQueueManager accessQueueManager)
|
|
||||||
{
|
|
||||||
_accessQueueManager = accessQueueManager;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
|
|
||||||
{
|
|
||||||
while (!stoppingToken.IsCancellationRequested)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
await _accessQueueManager.RecalculateStatus();
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Console.WriteLine(ex);
|
|
||||||
}
|
|
||||||
await Task.Delay(100, stoppingToken); // Run every second
|
|
||||||
}
|
|
||||||
Console.WriteLine("Stopping now because who tf knows why");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,105 +0,0 @@
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using AccessQueuePlayground.Models;
|
|
||||||
using AccessQueueService.Models;
|
|
||||||
using AccessQueueService.Services;
|
|
||||||
|
|
||||||
namespace AccessQueuePlayground.Services
|
|
||||||
{
|
|
||||||
public class AccessQueueManager : IAccessQueueManager
|
|
||||||
{
|
|
||||||
private readonly IAccessService _accessService;
|
|
||||||
private ConcurrentDictionary<Guid, User> _users;
|
|
||||||
private AccessQueueStatus _status;
|
|
||||||
public event Action? StatusUpdated;
|
|
||||||
|
|
||||||
private void NotifyStatusUpdated()
|
|
||||||
{
|
|
||||||
StatusUpdated?.Invoke();
|
|
||||||
}
|
|
||||||
|
|
||||||
public AccessQueueManager(IAccessService accessService)
|
|
||||||
{
|
|
||||||
_accessService = accessService;
|
|
||||||
_users = new ConcurrentDictionary<Guid, User>();
|
|
||||||
_status = new AccessQueueStatus();
|
|
||||||
}
|
|
||||||
|
|
||||||
public AccessQueueStatus GetStatus() => _status;
|
|
||||||
|
|
||||||
public Guid AddUser()
|
|
||||||
{
|
|
||||||
var id = Guid.NewGuid();
|
|
||||||
_users[id] = new User
|
|
||||||
{
|
|
||||||
Id = id,
|
|
||||||
Active = false,
|
|
||||||
};
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SetUserActive(Guid userId, bool isActive)
|
|
||||||
{
|
|
||||||
if (_users.TryGetValue(userId, out var user))
|
|
||||||
{
|
|
||||||
user.Active = isActive;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task RecalculateStatus()
|
|
||||||
{
|
|
||||||
var userList = _users.Values.ToList();
|
|
||||||
var newStatus = new AccessQueueStatus();
|
|
||||||
foreach (var user in userList)
|
|
||||||
{
|
|
||||||
if (user.Active)
|
|
||||||
{
|
|
||||||
user.LatestResponse = await _accessService.RequestAccess(user.Id);
|
|
||||||
if (user.LatestResponse?.HasAccess ?? false)
|
|
||||||
{
|
|
||||||
newStatus.AccessUsers.Add(user);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
newStatus.QueuedUsers.Add(user);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if(user.LatestResponse?.ExpiresOn != null && user.LatestResponse.ExpiresOn > DateTime.UtcNow)
|
|
||||||
{
|
|
||||||
newStatus.AccessUsers.Add(user);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
newStatus.InactiveUsers.Add(user);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
newStatus.QueuedUsers.Sort((user1, user2) => user1.LatestResponse!.RequestsAhead - user2.LatestResponse!.RequestsAhead);
|
|
||||||
_status = newStatus;
|
|
||||||
NotifyStatusUpdated();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RevokeAccess(Guid userId)
|
|
||||||
{
|
|
||||||
var user = _users[userId];
|
|
||||||
user.Active = false;
|
|
||||||
user.LatestResponse = null;
|
|
||||||
_accessService.RevokeAccess(userId);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RevokeAllAccess()
|
|
||||||
{
|
|
||||||
foreach (var user in _users.Values)
|
|
||||||
{
|
|
||||||
RevokeAccess(user.Id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Reset()
|
|
||||||
{
|
|
||||||
RevokeAllAccess();
|
|
||||||
_users = [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
using AccessQueuePlayground.Models;
|
|
||||||
|
|
||||||
namespace AccessQueuePlayground.Services
|
|
||||||
{
|
|
||||||
public interface IAccessQueueManager
|
|
||||||
{
|
|
||||||
public event Action? StatusUpdated;
|
|
||||||
public Task RecalculateStatus();
|
|
||||||
public AccessQueueStatus GetStatus();
|
|
||||||
public Guid AddUser();
|
|
||||||
public void SetUserActive(Guid userId, bool isActive);
|
|
||||||
public void RevokeAccess(Guid userId);
|
|
||||||
public void RevokeAllAccess();
|
|
||||||
public void Reset();
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"AccessQueue": {
|
|
||||||
"CapacityLimit": 3, // Maximum number of active users
|
|
||||||
"ActivitySeconds": 2, // Time since last access before a user is considered inactive
|
|
||||||
"ExpirationSeconds": 10, // 12 hours - Time before a user access is revoked
|
|
||||||
"RollingExpiration": true // Whether to extend expiration time on access
|
|
||||||
},
|
|
||||||
"AllowedHosts": "*"
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
h1:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.valid.modified:not([type=checkbox]) {
|
|
||||||
outline: 1px solid #26b050;
|
|
||||||
}
|
|
||||||
|
|
||||||
.invalid {
|
|
||||||
outline: 1px solid #e50000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.validation-message {
|
|
||||||
color: #e50000;
|
|
||||||
}
|
|
||||||
|
|
||||||
.blazor-error-boundary {
|
|
||||||
background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
|
|
||||||
padding: 1rem 1rem 1rem 3.7rem;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.blazor-error-boundary::after {
|
|
||||||
content: "An error has occurred."
|
|
||||||
}
|
|
||||||
|
|
||||||
.darker-border-checkbox.form-check-input {
|
|
||||||
border-color: #929292;
|
|
||||||
}
|
|
|
@ -7,8 +7,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessQueueService", "Acces
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessQueueServiceTests", "AccessQueueServiceTests\AccessQueueServiceTests.csproj", "{1DF48A19-A2B3-4B0C-B726-E65B8E023760}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessQueueServiceTests", "AccessQueueServiceTests\AccessQueueServiceTests.csproj", "{1DF48A19-A2B3-4B0C-B726-E65B8E023760}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessQueuePlayground", "AccessQueuePlayground\AccessQueuePlayground.csproj", "{65D5E841-7B02-4A55-89C6-12082FA1BCAF}"
|
|
||||||
EndProject
|
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -23,10 +21,6 @@ Global
|
||||||
{1DF48A19-A2B3-4B0C-B726-E65B8E023760}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{1DF48A19-A2B3-4B0C-B726-E65B8E023760}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{1DF48A19-A2B3-4B0C-B726-E65B8E023760}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{1DF48A19-A2B3-4B0C-B726-E65B8E023760}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{1DF48A19-A2B3-4B0C-B726-E65B8E023760}.Release|Any CPU.Build.0 = Release|Any CPU
|
{1DF48A19-A2B3-4B0C-B726-E65B8E023760}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{65D5E841-7B02-4A55-89C6-12082FA1BCAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{65D5E841-7B02-4A55-89C6-12082FA1BCAF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{65D5E841-7B02-4A55-89C6-12082FA1BCAF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{65D5E841-7B02-4A55-89C6-12082FA1BCAF}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|
|
@ -0,0 +1,99 @@
|
||||||
|
using AccessQueueService.Models;
|
||||||
|
using Microsoft.Extensions.Configuration;
|
||||||
|
|
||||||
|
namespace AccessQueueService.Data
|
||||||
|
{
|
||||||
|
public class DictionaryAccessQueueRepo : IAccessQueueRepo
|
||||||
|
{
|
||||||
|
private readonly Dictionary<Guid, AccessTicket> _accessTickets = new();
|
||||||
|
private readonly Queue<AccessTicket> _accessQueue = new();
|
||||||
|
|
||||||
|
public int GetUnexpiredTicketsCount() => _accessTickets.Count(t => t.Value.ExpiresOn > DateTime.UtcNow);
|
||||||
|
public int GetActiveTicketsCount(DateTime activeCutoff) => _accessTickets
|
||||||
|
.Count(t => t.Value.ExpiresOn > DateTime.UtcNow && t.Value.LastActive >activeCutoff);
|
||||||
|
public int GetQueueCount() => _accessQueue.Count;
|
||||||
|
public int GetRequestsAhead(Guid userId)
|
||||||
|
{
|
||||||
|
var index = 0;
|
||||||
|
foreach (var ticket in _accessQueue)
|
||||||
|
{
|
||||||
|
if (ticket.UserId == userId)
|
||||||
|
{
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
index++;
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Enqueue(AccessTicket ticket)
|
||||||
|
{
|
||||||
|
_accessQueue.Enqueue(ticket);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int DeleteExpiredTickets()
|
||||||
|
{
|
||||||
|
var cutoff = DateTime.UtcNow;
|
||||||
|
var expiredTickets = _accessTickets.Where(t => t.Value.ExpiresOn < cutoff);
|
||||||
|
int count = 0;
|
||||||
|
foreach (var ticket in expiredTickets)
|
||||||
|
{
|
||||||
|
count++;
|
||||||
|
_accessTickets.Remove(ticket.Key);
|
||||||
|
}
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RemoveUser(Guid userId)
|
||||||
|
{
|
||||||
|
_accessTickets.Remove(userId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool DidDequeueUntilFull(int activeSeconds, int expirationSeconds, int capacityLimit)
|
||||||
|
{
|
||||||
|
var now = DateTime.UtcNow;
|
||||||
|
var activeCutoff = now.AddSeconds(-activeSeconds);
|
||||||
|
var numberOfActiveUsers = _accessTickets.Count(t => t.Value.ExpiresOn > now && t.Value.LastActive > activeCutoff);
|
||||||
|
var openSpots = capacityLimit - numberOfActiveUsers;
|
||||||
|
int filledSpots = 0;
|
||||||
|
while (filledSpots < openSpots)
|
||||||
|
{
|
||||||
|
if (_accessQueue.TryDequeue(out var nextUser))
|
||||||
|
{
|
||||||
|
if (nextUser.LastActive < activeCutoff)
|
||||||
|
{
|
||||||
|
// User is inactive, throw away their ticket
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
_accessTickets[nextUser.UserId] = new AccessTicket
|
||||||
|
{
|
||||||
|
UserId = nextUser.UserId,
|
||||||
|
ExpiresOn = now.AddSeconds(expirationSeconds),
|
||||||
|
LastActive = now
|
||||||
|
};
|
||||||
|
filledSpots++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return filledSpots == openSpots;
|
||||||
|
}
|
||||||
|
|
||||||
|
public AccessTicket? GetTicket(Guid userId)
|
||||||
|
{
|
||||||
|
return _accessTickets.TryGetValue(userId, out var ticket) ? ticket : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpsertTicket(AccessTicket ticket)
|
||||||
|
{
|
||||||
|
_accessTickets[ticket.UserId] = ticket;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IAccessQueueRepo.RemoveUser(Guid userId)
|
||||||
|
{
|
||||||
|
return _accessTickets.Remove(userId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -20,12 +20,8 @@ namespace AccessQueueService.Data
|
||||||
{
|
{
|
||||||
if(_queueNumbers.TryGetValue(userId, out var queueNumber))
|
if(_queueNumbers.TryGetValue(userId, out var queueNumber))
|
||||||
{
|
{
|
||||||
if(_accessQueue.TryGetValue(queueNumber, out var ticket))
|
|
||||||
{
|
|
||||||
ticket.LastActive = DateTime.UtcNow;
|
|
||||||
return queueNumber >= _nowServing ? (int)(queueNumber - _nowServing) : -1;
|
return queueNumber >= _nowServing ? (int)(queueNumber - _nowServing) : -1;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -61,17 +57,12 @@ namespace AccessQueueService.Data
|
||||||
var activeCutoff = now.AddSeconds(-activeSeconds);
|
var activeCutoff = now.AddSeconds(-activeSeconds);
|
||||||
var numberOfActiveUsers = _accessTickets.Count(t => t.Value.ExpiresOn > now && t.Value.LastActive > activeCutoff);
|
var numberOfActiveUsers = _accessTickets.Count(t => t.Value.ExpiresOn > now && t.Value.LastActive > activeCutoff);
|
||||||
var openSpots = capacityLimit - numberOfActiveUsers;
|
var openSpots = capacityLimit - numberOfActiveUsers;
|
||||||
if(openSpots <= 0)
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
int filledSpots = 0;
|
int filledSpots = 0;
|
||||||
while (filledSpots < openSpots && _nowServing < _nextUnusedTicket)
|
while (filledSpots < openSpots && _nowServing < _nextUnusedTicket)
|
||||||
{
|
{
|
||||||
if (_accessQueue.TryGetValue(_nowServing++, out var nextUser))
|
if (_accessQueue.TryGetValue(_nowServing, out var nextUser))
|
||||||
{
|
{
|
||||||
_accessQueue.Remove(_nowServing);
|
_nowServing++;
|
||||||
_queueNumbers.Remove(nextUser.UserId);
|
|
||||||
if (nextUser.LastActive < activeCutoff)
|
if (nextUser.LastActive < activeCutoff)
|
||||||
{
|
{
|
||||||
// User is inactive, throw away their ticket
|
// User is inactive, throw away their ticket
|
||||||
|
@ -85,6 +76,10 @@ namespace AccessQueueService.Data
|
||||||
};
|
};
|
||||||
filledSpots++;
|
filledSpots++;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return filledSpots == openSpots;
|
return filledSpots == openSpots;
|
||||||
}
|
}
|
||||||
|
@ -101,11 +96,6 @@ namespace AccessQueueService.Data
|
||||||
|
|
||||||
bool IAccessQueueRepo.RemoveUser(Guid userId)
|
bool IAccessQueueRepo.RemoveUser(Guid userId)
|
||||||
{
|
{
|
||||||
if(_queueNumbers.TryGetValue(userId, out var queueNumber))
|
|
||||||
{
|
|
||||||
_accessQueue.Remove(queueNumber);
|
|
||||||
_queueNumbers.Remove(userId);
|
|
||||||
}
|
|
||||||
return _accessTickets.Remove(userId);
|
return _accessTickets.Remove(userId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ builder.Services.AddControllers();
|
||||||
builder.Services.AddEndpointsApiExplorer();
|
builder.Services.AddEndpointsApiExplorer();
|
||||||
builder.Services.AddSwaggerGen();
|
builder.Services.AddSwaggerGen();
|
||||||
builder.Services.AddSingleton<IAccessService, AccessService>();
|
builder.Services.AddSingleton<IAccessService, AccessService>();
|
||||||
builder.Services.AddSingleton<IAccessQueueRepo, TakeANumberAccessQueueRepo>();
|
builder.Services.AddSingleton<IAccessQueueRepo, DictionaryAccessQueueRepo>();
|
||||||
|
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
|
@ -8,6 +8,8 @@ namespace AccessQueueService.Services
|
||||||
private readonly IConfiguration _configuration;
|
private readonly IConfiguration _configuration;
|
||||||
private readonly IAccessQueueRepo _accessQueueRepo;
|
private readonly IAccessQueueRepo _accessQueueRepo;
|
||||||
|
|
||||||
|
//private readonly Dictionary<Guid, AccessTicket> _accessTickets = new();
|
||||||
|
//private readonly Queue<AccessTicket> _accessQueue = new();
|
||||||
private readonly SemaphoreSlim _queueLock = new(1, 1);
|
private readonly SemaphoreSlim _queueLock = new(1, 1);
|
||||||
private readonly int EXP_SECONDS;
|
private readonly int EXP_SECONDS;
|
||||||
private readonly int ACT_SECONDS;
|
private readonly int ACT_SECONDS;
|
||||||
|
@ -34,7 +36,6 @@ namespace AccessQueueService.Services
|
||||||
var existingTicket = _accessQueueRepo.GetTicket(userId);
|
var existingTicket = _accessQueueRepo.GetTicket(userId);
|
||||||
if (existingTicket != null && existingTicket.ExpiresOn > DateTime.UtcNow)
|
if (existingTicket != null && existingTicket.ExpiresOn > DateTime.UtcNow)
|
||||||
{
|
{
|
||||||
// Already has access
|
|
||||||
var expiresOn = existingTicket.ExpiresOn;
|
var expiresOn = existingTicket.ExpiresOn;
|
||||||
if (ROLLING_EXPIRATION)
|
if (ROLLING_EXPIRATION)
|
||||||
{
|
{
|
||||||
|
@ -53,7 +54,6 @@ namespace AccessQueueService.Services
|
||||||
}
|
}
|
||||||
if (hasCapacity)
|
if (hasCapacity)
|
||||||
{
|
{
|
||||||
// Doesn't have access, but there's space available
|
|
||||||
var accessTicket = new AccessTicket
|
var accessTicket = new AccessTicket
|
||||||
{
|
{
|
||||||
UserId = userId,
|
UserId = userId,
|
||||||
|
@ -68,11 +68,9 @@ namespace AccessQueueService.Services
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// No access and no space, add to queue
|
|
||||||
var requestsAhead = _accessQueueRepo.GetRequestsAhead(userId);
|
var requestsAhead = _accessQueueRepo.GetRequestsAhead(userId);
|
||||||
if (requestsAhead == -1)
|
if (requestsAhead == -1)
|
||||||
{
|
{
|
||||||
requestsAhead = _accessQueueRepo.GetQueueCount();
|
|
||||||
_accessQueueRepo.Enqueue(new AccessTicket
|
_accessQueueRepo.Enqueue(new AccessTicket
|
||||||
{
|
{
|
||||||
UserId = userId,
|
UserId = userId,
|
||||||
|
@ -83,7 +81,7 @@ namespace AccessQueueService.Services
|
||||||
return new AccessResponse
|
return new AccessResponse
|
||||||
{
|
{
|
||||||
ExpiresOn = null,
|
ExpiresOn = null,
|
||||||
RequestsAhead = requestsAhead
|
RequestsAhead = _accessQueueRepo.GetQueueCount() - 1
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,9 +18,14 @@ namespace AccessQueueServiceTests
|
||||||
const int ACT_MILLIS = 1000 * ACT_SECONDS;
|
const int ACT_MILLIS = 1000 * ACT_SECONDS;
|
||||||
const int CAP_LIMIT = 5;
|
const int CAP_LIMIT = 5;
|
||||||
const int BULK_COUNT = 50000;
|
const int BULK_COUNT = 50000;
|
||||||
private readonly AccessService _accessService;
|
private AccessService _accessService;
|
||||||
|
public static IEnumerable<object[]> RepoImplementations()
|
||||||
|
{
|
||||||
|
yield return new object[] { new DictionaryAccessQueueRepo() };
|
||||||
|
yield return new object[] { new TakeANumberAccessQueueRepo() };
|
||||||
|
}
|
||||||
|
|
||||||
public AccessServiceTests()
|
private void CreateService(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
var inMemorySettings = new Dictionary<string, string?>
|
var inMemorySettings = new Dictionary<string, string?>
|
||||||
{
|
{
|
||||||
|
@ -33,14 +38,16 @@ namespace AccessQueueServiceTests
|
||||||
var configuration = new ConfigurationBuilder()
|
var configuration = new ConfigurationBuilder()
|
||||||
.AddInMemoryCollection(inMemorySettings)
|
.AddInMemoryCollection(inMemorySettings)
|
||||||
.Build();
|
.Build();
|
||||||
var accessQueueRepo = new TakeANumberAccessQueueRepo();
|
|
||||||
|
|
||||||
_accessService = new AccessService(configuration, accessQueueRepo);
|
|
||||||
|
_accessService = new AccessService(configuration, repo);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldGrantAccess_WhenCapacityIsAvailable()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldGrantAccess_WhenCapacityIsAvailable(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
|
|
||||||
var response = await _accessService.RequestAccess(userId);
|
var response = await _accessService.RequestAccess(userId);
|
||||||
|
@ -53,9 +60,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.Equal(0, _accessService.QueueCount);
|
Assert.Equal(0, _accessService.QueueCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldReturnAccessResponse_WhenUserAlreadyHasTicket()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldReturnAccessResponse_WhenUserAlreadyHasTicket(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
await _accessService.RequestAccess(userId);
|
await _accessService.RequestAccess(userId);
|
||||||
|
|
||||||
|
@ -69,9 +78,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.Equal(0, _accessService.QueueCount);
|
Assert.Equal(0, _accessService.QueueCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldQueueUser_WhenCapacityIsFull()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldQueueUser_WhenCapacityIsFull(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
for (int i = 0; i < CAP_LIMIT * 2; i++) // Fill double capacity
|
for (int i = 0; i < CAP_LIMIT * 2; i++) // Fill double capacity
|
||||||
{
|
{
|
||||||
await _accessService.RequestAccess(Guid.NewGuid());
|
await _accessService.RequestAccess(Guid.NewGuid());
|
||||||
|
@ -89,9 +100,11 @@ namespace AccessQueueServiceTests
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RevokeAccess_ShouldReturnTrue_WhenUserHasAccess()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RevokeAccess_ShouldReturnTrue_WhenUserHasAccess(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
await _accessService.RequestAccess(userId);
|
await _accessService.RequestAccess(userId);
|
||||||
|
|
||||||
|
@ -100,9 +113,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.True(result);
|
Assert.True(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RevokeAccess_ShouldReturnFalse_WhenUserDoesNotHaveAccess()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RevokeAccess_ShouldReturnFalse_WhenUserDoesNotHaveAccess(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
|
|
||||||
var result = await _accessService.RevokeAccess(userId);
|
var result = await _accessService.RevokeAccess(userId);
|
||||||
|
@ -110,9 +125,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.False(result);
|
Assert.False(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldQueueUser_AfterAccessRevoked()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldQueueUser_AfterAccessRevoked(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
await _accessService.RequestAccess(userId);
|
await _accessService.RequestAccess(userId);
|
||||||
|
|
||||||
|
@ -131,9 +148,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.False(responseAfterRevoke.HasAccess);
|
Assert.False(responseAfterRevoke.HasAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldNotQueueUser_WhenMultipleRequestsForOtherUsersMade()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldNotQueueUser_WhenMultipleRequestsForOtherUsersMade(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
for (int i = 0; i < CAP_LIMIT; i++) // Fill slots without awaiting
|
for (int i = 0; i < CAP_LIMIT; i++) // Fill slots without awaiting
|
||||||
{
|
{
|
||||||
_ = _accessService.RequestAccess(Guid.NewGuid());
|
_ = _accessService.RequestAccess(Guid.NewGuid());
|
||||||
|
@ -143,9 +162,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.False(response.HasAccess);
|
Assert.False(response.HasAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldUpdateExpirationTime_WhenRollingExpirationTrue()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldUpdateExpirationTime_WhenRollingExpirationTrue(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
var initialResponse = await _accessService.RequestAccess(userId);
|
var initialResponse = await _accessService.RequestAccess(userId);
|
||||||
await Task.Delay(ACT_MILLIS);
|
await Task.Delay(ACT_MILLIS);
|
||||||
|
@ -153,9 +174,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.True(updatedResponse.ExpiresOn > initialResponse.ExpiresOn);
|
Assert.True(updatedResponse.ExpiresOn > initialResponse.ExpiresOn);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldGrantAccess_WhenUsersWithAccessInactive()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldGrantAccess_WhenUsersWithAccessInactive(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
for (int i = 0; i < CAP_LIMIT; i++)
|
for (int i = 0; i < CAP_LIMIT; i++)
|
||||||
{
|
{
|
||||||
await _accessService.RequestAccess(Guid.NewGuid());
|
await _accessService.RequestAccess(Guid.NewGuid());
|
||||||
|
@ -168,9 +191,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.True(response.HasAccess);
|
Assert.True(response.HasAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldRevokeAccess_WhenExpired()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldRevokeAccess_WhenExpired(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
var response = await _accessService.RequestAccess(userId);
|
var response = await _accessService.RequestAccess(userId);
|
||||||
Assert.True(response.HasAccess);
|
Assert.True(response.HasAccess);
|
||||||
|
@ -183,9 +208,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.False(response.HasAccess);
|
Assert.False(response.HasAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldRetailAccess_WhenNotExpired()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldRetailAccess_WhenNotExpired(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
var response = await _accessService.RequestAccess(userId);
|
var response = await _accessService.RequestAccess(userId);
|
||||||
Assert.True(response.HasAccess);
|
Assert.True(response.HasAccess);
|
||||||
|
@ -199,9 +226,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.True(response.HasAccess);
|
Assert.True(response.HasAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldProcessBulkRequests()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldProcessBulkRequests(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var userId = Guid.NewGuid();
|
var userId = Guid.NewGuid();
|
||||||
await _accessService.RequestAccess(userId);
|
await _accessService.RequestAccess(userId);
|
||||||
for (int i = 0; i < BULK_COUNT; i++)
|
for (int i = 0; i < BULK_COUNT; i++)
|
||||||
|
@ -213,9 +242,11 @@ namespace AccessQueueServiceTests
|
||||||
Assert.True(response.HasAccess);
|
Assert.True(response.HasAccess);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldReportLessInQueue_AsTicketsInactivate()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldReportLessInQueue_AsTicketsInactivate(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
|
CreateService(repo);
|
||||||
var start = DateTime.UtcNow;
|
var start = DateTime.UtcNow;
|
||||||
for (int i = 0; i < CAP_LIMIT; i++)
|
for (int i = 0; i < CAP_LIMIT; i++)
|
||||||
{
|
{
|
||||||
|
@ -245,35 +276,21 @@ namespace AccessQueueServiceTests
|
||||||
Assert.Equal(0, response.RequestsAhead);
|
Assert.Equal(0, response.RequestsAhead);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task RequestAccess_ShouldShowCorrectRequestsAhead_WhenAccessRerequested()
|
[MemberData(nameof(RepoImplementations))]
|
||||||
|
public async Task RequestAccess_ShouldShowCorrectRequestsAhead_WhenAccessRerequested(IAccessQueueRepo repo)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < CAP_LIMIT; i++)
|
CreateService(repo);
|
||||||
|
for (int i = 0; i < CAP_LIMIT + 3; i++)
|
||||||
{
|
{
|
||||||
await _accessService.RequestAccess(Guid.NewGuid());
|
await _accessService.RequestAccess(Guid.NewGuid());
|
||||||
}
|
}
|
||||||
|
var id = Guid.NewGuid();
|
||||||
var id1 = Guid.NewGuid();
|
var response = await _accessService.RequestAccess(id);
|
||||||
var id2 = Guid.NewGuid();
|
Assert.Equal(3, response.RequestsAhead);
|
||||||
var id3 = Guid.NewGuid();
|
response = await _accessService.RequestAccess(id);
|
||||||
|
Assert.Equal(3, response?.RequestsAhead);
|
||||||
var response1 = await _accessService.RequestAccess(id1);
|
|
||||||
var response2 = await _accessService.RequestAccess(id2);
|
|
||||||
var response3 = await _accessService.RequestAccess(id3);
|
|
||||||
|
|
||||||
Assert.Equal(0, response1.RequestsAhead);
|
|
||||||
Assert.Equal(1, response2.RequestsAhead);
|
|
||||||
Assert.Equal(2, response3.RequestsAhead);
|
|
||||||
|
|
||||||
response1 = await _accessService.RequestAccess(id1);
|
|
||||||
response2 = await _accessService.RequestAccess(id2);
|
|
||||||
response3 = await _accessService.RequestAccess(id3);
|
|
||||||
|
|
||||||
Assert.Equal(0, response1.RequestsAhead);
|
|
||||||
Assert.Equal(1, response2.RequestsAhead);
|
|
||||||
Assert.Equal(2, response3.RequestsAhead);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue