mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
namespace Squidex.Infrastructure.Tasks;
|
|
|
|
public class PartitionedActionBlockTests
|
|
{
|
|
private const int Partitions = 10;
|
|
|
|
[Fact]
|
|
public async Task Should_propagate_in_order()
|
|
{
|
|
var lists = new List<int>[Partitions];
|
|
|
|
for (var i = 0; i < Partitions; i++)
|
|
{
|
|
lists[i] = [];
|
|
}
|
|
|
|
var scheduler = new PartitionedScheduler<(int Partition, int Value)>((item, ct) =>
|
|
{
|
|
Random.Shared.Next(10);
|
|
|
|
lists[item.Partition].Add(item.Value);
|
|
|
|
return Task.CompletedTask;
|
|
}, 32, 10000);
|
|
|
|
for (var partition = 0; partition < Partitions; partition++)
|
|
{
|
|
for (var value = 0; value < 10; value++)
|
|
{
|
|
await scheduler.ScheduleAsync(partition, (partition, value));
|
|
}
|
|
}
|
|
|
|
await scheduler.CompleteAsync();
|
|
|
|
foreach (var list in lists)
|
|
{
|
|
Assert.Equal(Enumerable.Range(0, 10).ToList(), list);
|
|
}
|
|
}
|
|
}
|
|
|