Skip to content
Tracon

AgentSkillStoreContract

Namespace Tracon.Testing.Contracts.Storage · Assembly Tracon.Testing.Contracts.Xunit.dll

Behavior tests for the IAgentSkillStore contract.

public abstract class AgentSkillStoreContract : TenantIsolationContract<IAgentSkillStore>, IAsyncLifetime, IAsyncDisposable

objectTenantIsolationContract<IAgentSkillStore>AgentSkillStoreContract

IAsyncLifetime, IAsyncDisposable

TenantIsolationContract<IAgentSkillStore>.TenantA, TenantIsolationContract<IAgentSkillStore>.TenantB, TenantIsolationContract<IAgentSkillStore>.CreateStoreAsync(), TenantIsolationContract<IAgentSkillStore>.UseAmbientTenant(MutableTenantContext), TenantIsolationContract<IAgentSkillStore>.InitializeAsync(), TenantIsolationContract<IAgentSkillStore>.DisposeAsync(), TenantIsolationContract<IAgentSkillStore>.OnDisposeAsync(), TenantIsolationContract<IAgentSkillStore>.SeedAsync(string, string), TenantIsolationContract<IAgentSkillStore>.ExistsAsync(string, object), TenantIsolationContract<IAgentSkillStore>.CountAsync(string), TenantIsolationContract<IAgentSkillStore>.TryDeleteAsync(string, object), TenantIsolationContract<IAgentSkillStore>.TryOverwriteAsync(string, string), TenantIsolationContract<IAgentSkillStore>.Tenant_cannot_read_another_tenants_record(), TenantIsolationContract<IAgentSkillStore>.Tenant_reads_its_own_record(), TenantIsolationContract<IAgentSkillStore>.Tenant_does_not_see_another_tenants_record_in_the_list(), TenantIsolationContract<IAgentSkillStore>.Tenant_cannot_delete_another_tenants_record(), TenantIsolationContract<IAgentSkillStore>.Same_name_lives_independently_across_two_tenants(), TenantIsolationContract<IAgentSkillStore>.AmbientTenant, TenantIsolationContract<IAgentSkillStore>.Store, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Protects both behavior parity across implementations and tenant isolation.

protected AgentSkillStoreContract()

Reports how many records the given tenant sees through the listing endpoint.

protected override ValueTask<int> CountAsync(string tenantId)

tenantId string

The reading tenant.

ValueTask<int>

The number of records seen.

Deleting_a_missing_record_returns_false()

Section titled “ Deleting_a_missing_record_returns_false()”
[Fact("/Users/farukatasoy/Desktop/projects/Tracon/src/Tracon.Testing.Contracts.Xunit/Contracts/AgentSkillStoreContract.cs", 63)]
public Task Deleting_a_missing_record_returns_false()

Task

[Fact("/Users/farukatasoy/Desktop/projects/Tracon/src/Tracon.Testing.Contracts.Xunit/Contracts/AgentSkillStoreContract.cs", 79)]
public Task Disabled_skill_reads_back_disabled()

Task

Reports whether the record is visible from the given tenant’s viewpoint.

protected override ValueTask<bool> ExistsAsync(string tenantId, object key)

tenantId string

The reading tenant.

key object

The key returned by TenantIsolationContract.SeedAsync.

ValueTask<bool>

true if the record is visible.

[Fact("/Users/farukatasoy/Desktop/projects/Tracon/src/Tracon.Testing.Contracts.Xunit/Contracts/AgentSkillStoreContract.cs", 67)]
public Task List_is_sorted_by_name()

Task

[Fact("/Users/farukatasoy/Desktop/projects/Tracon/src/Tracon.Testing.Contracts.Xunit/Contracts/AgentSkillStoreContract.cs", 59)]
public Task Missing_skill_returns_null()

Task

[Fact("/Users/farukatasoy/Desktop/projects/Tracon/src/Tracon.Testing.Contracts.Xunit/Contracts/AgentSkillStoreContract.cs", 31)]
public Task Saved_skill_is_read_back()

Task

Saving_the_same_name_again_increments_version()

Section titled “ Saving_the_same_name_again_increments_version()”
[Fact("/Users/farukatasoy/Desktop/projects/Tracon/src/Tracon.Testing.Contracts.Xunit/Contracts/AgentSkillStoreContract.cs", 46)]
public Task Saving_the_same_name_again_increments_version()

Task

Writes a sample record for the given tenant.

protected override ValueTask<object> SeedAsync(string tenantId, string name)

tenantId string

The tenant that owns the record.

name string

The name distinguishing the record. The same name may be used by two tenants.

ValueTask<object>

The key to use for reading the record back.

Attempts to delete the record on behalf of the given tenant.

protected override ValueTask<bool?> TryDeleteAsync(string tenantId, object key)

tenantId string

The tenant attempting the delete.

key object

The key returned by TenantIsolationContract.SeedAsync.

ValueTask<bool?>

true if the delete succeeded, false if the record was not found; null if the store does not offer deletion.