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.
114 lines
3.1 KiB
114 lines
3.1 KiB
using System.Globalization; |
|
using System.Reflection; |
|
using NSubstitute; |
|
using StabilityMatrix.Avalonia.Extensions; |
|
using StabilityMatrix.Avalonia.Models.Inference; |
|
using StabilityMatrix.Avalonia.Models.TagCompletion; |
|
using StabilityMatrix.Core.Models.Tokens; |
|
using TextMateSharp.Grammars; |
|
using TextMateSharp.Registry; |
|
|
|
namespace StabilityMatrix.Tests.Avalonia; |
|
|
|
[TestClass] |
|
public class PromptTests |
|
{ |
|
private ITokenizerProvider tokenizerProvider = null!; |
|
|
|
[TestInitialize] |
|
public void TestInitialize() |
|
{ |
|
tokenizerProvider = Substitute.For<ITokenizerProvider>(); |
|
|
|
var promptSyntaxFile = Assembly |
|
.GetExecutingAssembly() |
|
.GetManifestResourceStream("StabilityMatrix.Tests.ImagePrompt.tmLanguage.json")!; |
|
|
|
var registry = new Registry(new RegistryOptions(ThemeName.DarkPlus)); |
|
var grammar = registry.LoadGrammarFromStream(promptSyntaxFile); |
|
|
|
tokenizerProvider |
|
.TokenizeLine(Arg.Any<string>()) |
|
.Returns(x => grammar.TokenizeLine(x.Arg<string>())); |
|
} |
|
|
|
[TestMethod] |
|
public void TestPromptProcessedText() |
|
{ |
|
var prompt = Prompt.FromRawText("test", tokenizerProvider); |
|
|
|
prompt.Process(); |
|
|
|
Assert.AreEqual("test", prompt.ProcessedText); |
|
} |
|
|
|
[TestMethod] |
|
public void TestPromptWeightParsing() |
|
{ |
|
var prompt = Prompt.FromRawText("<lora:my_model:1.5>", tokenizerProvider); |
|
|
|
prompt.Process(); |
|
|
|
// Output should have no loras |
|
Assert.AreEqual("", prompt.ProcessedText); |
|
|
|
var network = prompt.ExtraNetworks[0]; |
|
|
|
Assert.AreEqual(PromptExtraNetworkType.Lora, network.Type); |
|
Assert.AreEqual("my_model", network.Name); |
|
Assert.AreEqual(1.5f, network.ModelWeight); |
|
} |
|
|
|
/// <summary> |
|
/// Tests that we can parse decimal numbers with different cultures |
|
/// </summary> |
|
[TestMethod] |
|
public void TestPromptWeightParsing_DecimalSeparatorCultures_ShouldParse() |
|
{ |
|
var prompt = Prompt.FromRawText("<lora:my_model:1.5>", tokenizerProvider); |
|
|
|
// Cultures like de-DE use commas as decimal separators, check that we can parse those too |
|
ExecuteWithCulture(prompt.Process, CultureInfo.GetCultureInfo("de-DE")); |
|
|
|
// Output should have no loras |
|
Assert.AreEqual("", prompt.ProcessedText); |
|
|
|
var network = prompt.ExtraNetworks![0]; |
|
|
|
Assert.AreEqual(PromptExtraNetworkType.Lora, network.Type); |
|
Assert.AreEqual("my_model", network.Name); |
|
Assert.AreEqual(1.5f, network.ModelWeight); |
|
} |
|
|
|
private static T? ExecuteWithCulture<T>(Func<T> func, CultureInfo culture) |
|
{ |
|
var result = default(T); |
|
|
|
var thread = new Thread(() => |
|
{ |
|
result = func(); |
|
}) |
|
{ |
|
CurrentCulture = culture |
|
}; |
|
|
|
thread.Start(); |
|
thread.Join(); |
|
|
|
return result; |
|
} |
|
|
|
private static void ExecuteWithCulture(Action func, CultureInfo culture) |
|
{ |
|
var thread = new Thread(() => |
|
{ |
|
func(); |
|
}) |
|
{ |
|
CurrentCulture = culture |
|
}; |
|
|
|
thread.Start(); |
|
thread.Join(); |
|
} |
|
}
|
|
|