This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameservicewarden/tests/GameServiceWarden.Core.Tests/Persistence/ServiceDescriptorPersistenceTest.cs
Harrison Deng f5a181d2f2 Added tests for LRUCache.
Moved core test code to reflect changes in core code.

Removed unused using directives.
2021-04-19 14:41:11 -05:00

100 lines
4.9 KiB
C#

using System.Collections.Generic;
using System.IO;
using GameServiceWarden.Core.Module;
using GameServiceWarden.Core.Persistence;
using GameServiceWarden.Core.Tests.Modules;
using GameServiceWarden.API.Module;
using Xunit;
namespace GameServiceWarden.Core.Tests.Persistence
{
public class ServiceDescriptorPersistenceTest
{
//MethodTested_ScenarioTested_ExpectedBehavior
[Fact]
public void GetPathForKey_PathGen_ExpectedPathResult()
{
//Given
const string TEST_DIR = "services";
const string MODULE_NAME = "fake_module";
const string ASSEMBLY_NAME = "fake_assembly";
const string SERVICE_NAME = "fake_service";
FakePersistence<IReadOnlyDictionary<string, IServiceModule>> stubModulesPersistence = new FakePersistence<IReadOnlyDictionary<string, IServiceModule>>();
Dictionary<string, IServiceModule> stubAssemblyDict = new Dictionary<string, IServiceModule>();
FakeServiceModule stubServiceModule = new FakeServiceModule();
stubAssemblyDict[MODULE_NAME] = stubServiceModule;
stubModulesPersistence[ASSEMBLY_NAME] = stubAssemblyDict;
ServiceDescriptorPersistence persistedServices = new ServiceDescriptorPersistence(TEST_DIR);
//Then
Assert.True(persistedServices.GetPathForKey(SERVICE_NAME).Equals(Path.Combine(TEST_DIR, SERVICE_NAME)));
}
[Fact]
public void Save_SavingService_FileCreated()
{
//Given
const string TEST_DIR = "services";
const string MODULE_NAME = "fake_module";
const string ASSEMBLY_NAME = "fake_assembly";
const string SERVICE_NAME = "fake_service";
FakePersistence<IReadOnlyDictionary<string, IServiceModule>> stubModulesPersistence = new FakePersistence<IReadOnlyDictionary<string, IServiceModule>>();
Dictionary<string, IServiceModule> stubAssemblyDict = new Dictionary<string, IServiceModule>();
FakeServiceModule stubServiceModule = new FakeServiceModule();
stubAssemblyDict[MODULE_NAME] = stubServiceModule;
stubModulesPersistence[ASSEMBLY_NAME] = stubAssemblyDict;
ServiceDescriptorPersistence persistedServiceInfos = new ServiceDescriptorPersistence(TEST_DIR);
ServiceDescriptor stubServiceInfo = new ServiceDescriptor(stubModulesPersistence[ASSEMBLY_NAME][MODULE_NAME].InstantiateService(persistedServiceInfos.GetPathForKey(SERVICE_NAME)), SERVICE_NAME, MODULE_NAME, ASSEMBLY_NAME);
//When
Dictionary<string, string> info = new Dictionary<string, string>();
info[ServiceDescriptor.MODULE_PROPERTY] = MODULE_NAME;
info[ServiceDescriptor.ASSEMBLY_PROPERTY] = ASSEMBLY_NAME;
persistedServiceInfos[SERVICE_NAME] = info;
//Then
Assert.True(Directory.Exists(TEST_DIR));
Assert.True(Directory.Exists(persistedServiceInfos.GetPathForKey(SERVICE_NAME)));
string[] files = Directory.GetFiles(persistedServiceInfos.GetPathForKey(SERVICE_NAME));
Assert.True(files.Length == 1);
Assert.StartsWith(SERVICE_NAME, Path.GetFileName(files[0]));
Directory.Delete(TEST_DIR, true);
}
[Fact]
public void Save_ReadingService_MetadataRead()
{
//Given
const string TEST_DIR = "services";
const string MODULE_NAME = "fake_module";
const string ASSEMBLY_NAME = "fake_assembly";
const string SERVICE_NAME = "fake_service";
FakePersistence<IReadOnlyDictionary<string, IServiceModule>> stubModulesPersistence = new FakePersistence<IReadOnlyDictionary<string, IServiceModule>>();
Dictionary<string, IServiceModule> stubAssemblyDict = new Dictionary<string, IServiceModule>();
FakeServiceModule stubServiceModule = new FakeServiceModule();
stubAssemblyDict[MODULE_NAME] = stubServiceModule;
stubModulesPersistence[ASSEMBLY_NAME] = stubAssemblyDict;
ServiceDescriptorPersistence persistedServices = new ServiceDescriptorPersistence(TEST_DIR);
Dictionary<string, string> info = new Dictionary<string, string>();
info[ServiceDescriptor.MODULE_PROPERTY] = MODULE_NAME;
info[ServiceDescriptor.ASSEMBLY_PROPERTY] = ASSEMBLY_NAME;
persistedServices[SERVICE_NAME] = info;
//When
IReadOnlyDictionary<string, string> loadedServiceInfo = persistedServices[SERVICE_NAME];
string loadedAssemblyName = loadedServiceInfo[ServiceDescriptor.ASSEMBLY_PROPERTY];
string loadedModuleName = loadedServiceInfo[ServiceDescriptor.MODULE_PROPERTY];
//Then
Assert.True(loadedModuleName.Equals(MODULE_NAME));
Assert.True(loadedAssemblyName.Equals(ASSEMBLY_NAME));
Directory.Delete(TEST_DIR, true);
}
}
}