mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
190 lines
5.3 KiB
C#
190 lines
5.3 KiB
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Environment;
|
|
using GFramework.Core.Environment;
|
|
|
|
namespace GFramework.Core.Tests.Environment;
|
|
|
|
/// <summary>
|
|
/// 测试环境相关的单元测试类,用于验证环境管理功能的正确性
|
|
/// </summary>
|
|
[TestFixture]
|
|
public class EnvironmentTests
|
|
{
|
|
/// <summary>
|
|
/// 在每个测试方法执行前进行初始化设置
|
|
/// </summary>
|
|
[SetUp]
|
|
public void SetUp()
|
|
{
|
|
_environment = new TestEnvironment();
|
|
_environment.Initialize();
|
|
}
|
|
|
|
private TestEnvironment _environment = null!;
|
|
|
|
/// <summary>
|
|
/// 验证默认环境的名称是否正确返回"Default"
|
|
/// </summary>
|
|
[Test]
|
|
public void DefaultEnvironment_Name_Should_ReturnDefault()
|
|
{
|
|
var env = new DefaultEnvironment();
|
|
|
|
Assert.That(env.Name, Is.EqualTo("Default"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证默认环境的初始化方法不会抛出异常
|
|
/// </summary>
|
|
[Test]
|
|
public void DefaultEnvironment_Initialize_Should_NotThrow()
|
|
{
|
|
var env = new DefaultEnvironment();
|
|
|
|
Assert.DoesNotThrow(() => env.Initialize());
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当键存在时Get方法应该返回正确的值
|
|
/// </summary>
|
|
[Test]
|
|
public void Get_Should_Return_Value_When_Key_Exists()
|
|
{
|
|
_environment.RegisterForTest("testKey", "testValue");
|
|
|
|
var result = _environment.Get<string>("testKey");
|
|
|
|
Assert.That(result, Is.EqualTo("testValue"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当键不存在时Get方法应该返回null
|
|
/// </summary>
|
|
[Test]
|
|
public void Get_Should_ReturnNull_When_Key_Not_Exists()
|
|
{
|
|
var result = _environment.Get<string>("nonExistentKey");
|
|
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当类型不匹配时Get方法应该返回null
|
|
/// </summary>
|
|
[Test]
|
|
public void Get_Should_ReturnNull_When_Type_Does_Not_Match()
|
|
{
|
|
_environment.RegisterForTest("testKey", "testValue");
|
|
|
|
var result = _environment.Get<List<int>>("testKey");
|
|
|
|
Assert.That(result, Is.Null);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当键存在时TryGet方法应该返回true并输出正确的值
|
|
/// </summary>
|
|
[Test]
|
|
public void TryGet_Should_ReturnTrue_And_Value_When_Key_Exists()
|
|
{
|
|
_environment.RegisterForTest("testKey", "testValue");
|
|
|
|
var result = _environment.TryGet<string>("testKey", out var value);
|
|
|
|
Assert.That(result, Is.True);
|
|
Assert.That(value, Is.EqualTo("testValue"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当键不存在时TryGet方法应该返回false且输出值为null
|
|
/// </summary>
|
|
[Test]
|
|
public void TryGet_Should_ReturnFalse_When_Key_Not_Exists()
|
|
{
|
|
var result = _environment.TryGet<string>("nonExistentKey", out var value);
|
|
|
|
Assert.That(result, Is.False);
|
|
Assert.That(value, Is.Null);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当类型不匹配时TryGet方法应该返回false且输出值为null
|
|
/// </summary>
|
|
[Test]
|
|
public void TryGet_Should_ReturnFalse_When_Type_Does_Not_Match()
|
|
{
|
|
_environment.RegisterForTest("testKey", "testValue");
|
|
|
|
var result = _environment.TryGet<List<int>>("testKey", out var value);
|
|
|
|
Assert.That(result, Is.False);
|
|
Assert.That(value, Is.Null);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当键存在时GetRequired方法应该返回正确的值
|
|
/// </summary>
|
|
[Test]
|
|
public void GetRequired_Should_Return_Value_When_Key_Exists()
|
|
{
|
|
_environment.RegisterForTest("testKey", "testValue");
|
|
|
|
var result = _environment.GetRequired<string>("testKey");
|
|
|
|
Assert.That(result, Is.EqualTo("testValue"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证当键不存在时GetRequired方法应该抛出InvalidOperationException异常
|
|
/// </summary>
|
|
[Test]
|
|
public void GetRequired_Should_ThrowInvalidOperationException_When_Key_Not_Exists()
|
|
{
|
|
Assert.Throws<InvalidOperationException>(() =>
|
|
_environment.GetRequired<string>("nonExistentKey"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证Register方法应该将值添加到字典中
|
|
/// </summary>
|
|
[Test]
|
|
public void Register_Should_Add_Value_To_Dictionary()
|
|
{
|
|
_environment.RegisterForTest("newKey", "newValue");
|
|
|
|
var result = _environment.Get<string>("newKey");
|
|
|
|
Assert.That(result, Is.EqualTo("newValue"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证Register方法应该覆盖已存在的值
|
|
/// </summary>
|
|
[Test]
|
|
public void Register_Should_Overwrite_Existing_Value()
|
|
{
|
|
_environment.RegisterForTest("testKey", "value1");
|
|
_environment.RegisterForTest("testKey", "value2");
|
|
|
|
var result = _environment.Get<string>("testKey");
|
|
|
|
Assert.That(result, Is.EqualTo("value2"));
|
|
}
|
|
|
|
/// <summary>
|
|
/// 验证通过IEnvironment接口的Register方法应该能够添加值
|
|
/// </summary>
|
|
[Test]
|
|
public void IEnvironment_Register_Should_Add_Value()
|
|
{
|
|
IEnvironment env = _environment;
|
|
env.Register("interfaceKey", "interfaceValue");
|
|
|
|
var result = env.Get<string>("interfaceKey");
|
|
|
|
Assert.That(result, Is.EqualTo("interfaceValue"));
|
|
}
|
|
}
|