AI-Studio/app/Tests/Models/TestHarnessTests.cs
Thorsten Sommer d85b4e71b6
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
Rebuilt how AI Studio knows what a model can do (#960)
2026-09-13 14:17:25 +02:00

39 lines
1.5 KiB
C#

using AIStudio.Provider;
using AIStudio.Settings;
namespace AIStudio.Tests.Models;
/// <summary>
/// Checks the test harness itself, before any test states something about the app.
/// </summary>
/// <remarks>
/// Three things have to hold before a capability test can mean anything: the app assembly is
/// referenced, this project counts as a friend assembly, and the assembly-wide setup has run. When
/// one of them is missing, the failure looks like a broken rule rather than a broken harness, which
/// is an expensive detour. These two tests make the difference visible right away.
///
/// Note the fully written type name below. AIStudio.Provider is a namespace and AIStudio.Settings
/// .Provider is a type; inside a namespace under AIStudio, the namespace wins the lookup. That is a
/// property of the app's own naming, not of the tests.
/// </remarks>
[TestFixture]
public sealed class TestHarnessTests
{
[Test]
public void TheStaticApplicationStateIsAvailable()
{
//
// Settings.Provider initializes a static logger from Program.LOGGER_FACTORY. Touching it
// without the assembly-wide setup throws a TypeInitializationException.
//
Assert.That(AIStudio.Settings.Provider.NONE.UsedLLMProvider, Is.EqualTo(LLMProviders.NONE));
}
[Test]
public void TheCapabilityApiOfTheAppIsReachable()
{
var profile = LLMProviders.OPEN_AI.GetModelProfile(new Model("gpt-5.1", null));
Assert.That(profile.Has(Capability.FUNCTION_CALLING), Is.True);
}
}