Tests/GenXdev.AI.LMStudio/Initialize-LMStudioModel.Tests.ps1
################################################################################ Describe "Initialize-LMStudioModel integration tests" { BeforeAll { # import required module Import-Module GenXdev.AI -Force } It "Should initialize a model by name" { # test with default model name that should be available $result = Initialize-LMStudioModel -Model "qwen*-instruct" -ModelLMSGetIdentifier "qwen2.5-14b-instruct" $result | Should -Not -Be $null $result.path | Should -Not -BeNullOrEmpty } It "Should initialize with window visible" { $result = Initialize-LMStudioModel -Model "qwen*-instruct" -ModelLMSGetIdentifier "qwen2.5-14b-instruct" -ShowWindow $result | Should -Not -Be $null $result.path | Should -Not -BeNullOrEmpty $window = Get-Window "LM Studio" $window | Should -Not -Be $null $window.Handle | Should -Not -Be 0 $window.IsVisible() | Should -Be $true } It "Should fall back to preferred models if specified not found" { # test with non-existent model name to trigger fallback $result = Initialize-LMStudioModel ` -Model "nonexistent_model_12345" ` -PreferredModels @("qwen*-instruct", "mistral") $result | Should -Not -BeNullOrEmpty } } ################################################################################ |