mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 20:43:38 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Verify (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
68 lines
2.6 KiB
C#
68 lines
2.6 KiB
C#
using AIStudio.Provider;
|
|
using AIStudio.Tests.Models.Corpus;
|
|
|
|
namespace AIStudio.Tests.Models;
|
|
|
|
/// <summary>
|
|
/// Checks the corpus itself, before it is used to judge anything.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// A ruler has to be straight before it can measure. A duplicate entry would silently outvote
|
|
/// itself in the snapshot, and an entry which no longer belongs to any corpus model would make the
|
|
/// list of known-wrong answers point at nothing.
|
|
/// </remarks>
|
|
[TestFixture]
|
|
public sealed class CorpusTests
|
|
{
|
|
[Test]
|
|
public void NoModelAppearsTwiceForTheSameProvider()
|
|
{
|
|
var duplicates = ModelCorpus.ENTRIES
|
|
.GroupBy(entry => (entry.Provider, entry.ModelId))
|
|
.Where(group => group.Count() > 1)
|
|
.Select(group => $"{group.Key.Provider} {group.Key.ModelId}")
|
|
.ToList();
|
|
|
|
Assert.That(duplicates, Is.Empty);
|
|
}
|
|
|
|
[Test]
|
|
public void EveryKnownWrongAnswerBelongsToAModelOfTheCorpus()
|
|
{
|
|
var corpus = ModelCorpus.ENTRIES.Select(entry => (entry.Provider, entry.ModelId)).ToHashSet();
|
|
var orphans = ExpectedChanges.ENTRIES
|
|
.Where(change => !corpus.Contains((change.Provider, change.ModelId)))
|
|
.Select(change => $"{change.Provider} {change.ModelId}")
|
|
.ToList();
|
|
|
|
Assert.That(orphans, Is.Empty);
|
|
}
|
|
|
|
[Test]
|
|
public void EveryKnownWrongAnswerSaysWhyAndWhereThatCanBeChecked()
|
|
{
|
|
Assert.Multiple(() =>
|
|
{
|
|
foreach (var change in ExpectedChanges.ENTRIES)
|
|
{
|
|
Assert.That(change.Reason, Is.Not.Empty, $"{change.Provider} {change.ModelId} does not say why the current answer is wrong.");
|
|
Assert.That(change.Source, Is.Not.Empty, $"{change.Provider} {change.ModelId} does not say where that can be checked.");
|
|
Assert.That(change.AnswerWanted, Is.Not.Empty, $"{change.Provider} {change.ModelId} does not say what the answer should be.");
|
|
}
|
|
});
|
|
}
|
|
|
|
[Test]
|
|
public void EveryProviderTheAppSupportsIsRepresented()
|
|
{
|
|
//
|
|
// A provider missing from the corpus is a whole branch of the dispatch nobody measures.
|
|
// That includes the ones without rules of their own: which rules they borrow, and what
|
|
// happens to the answer on the way back, is exactly the part a rebuild gets wrong.
|
|
//
|
|
var covered = ModelCorpus.ENTRIES.Select(entry => entry.Provider).ToHashSet();
|
|
var missing = Enum.GetValues<LLMProviders>().Where(provider => !covered.Contains(provider)).ToList();
|
|
|
|
Assert.That(missing, Is.Empty);
|
|
}
|
|
} |