Skip to content

Instantly share code, notes, and snippets.

View aidanmorgan's full-sized avatar

Aidan Morgan aidanmorgan

View GitHub Profile
lang en_US
keyboard us
timezone America/New_York --isUtc
rootpw $1$1k1q3sJ8$UGYAVzcQodGKc0haFdxCZ1 --iscrypted
#platform x86, AMD64, or Intel EM64T
reboot
text
cdrom
bootloader --location=mbr --append="rhgb quiet crashkernel=auto"
zerombr
#region DatabaseSetup
private TestContext _testContextInstance;
public TestContext TestContext
{
get { return _testContextInstance; }
set { _testContextInstance = value; }
}
private IUnitOfWorkFactory _unitOfWorkFactory = null;
public class IntegrationTestUnitOfWorkFactory : IUnitOfWorkFactory
{
/// <summary>
/// This <see cref="Guid"/> is used to uniquely identify this factory instance when interacting with the LocalDB instance.
/// </summary>
private readonly Guid _instanceGuid = Guid.NewGuid();
/// <summary>
/// The <see cref="TestContext"/> instance that describes the environment in which the tests are currently running.
/// This is used to get the deployment directory for where the LocalDB file should be stored.
/// <summary>
/// This writer thread attempts to serialize all writes to the MongoDB database in a background thread.
/// </summary>
public class MongoDbLoggerWriteThread
{
/// <summary>
/// The lock object guarding access to the <see cref="_entries"/> and <see cref="_keyedEntries"/> lists.
/// </summary>
private static readonly object LOCK_OBJECT = new object();
/// <summary>
/// A <see cref="SingleThreadedMongoDbLogRepository"/> is an implementation of the <see cref="ILogRepository"/> interface that
/// wraps an existing <see cref="ILogRepository"/>, but performs all of the write operations in a background thread, controlled
/// by the <see cref="MongoDbLoggerWriteThread"/>.
///
/// This allows write operations to not impact on the calling code at all, ensuring the actual write is performed in the background.
/// </summary>
class SingleThreadedMongoDbLogRepository : ILogRepository
{
private readonly MongoDbLoggerWriteThread _writer;
public interface ILogRepository
{
void AddLog(string logger, LogEntry message);
void AddLog(string logger, KeyedLogEntry message);
IList<LogEntry> GetLog(string logger);
IList<KeyedLogEntry> GetLog(string logger, string key);
}
public class KeyedLogEntry : LogEntry
{
public string AdditionalKey { get; set; }
public static KeyedLogEntry Create(string Logger, string key, string Message)
{
KeyedLogEntry entry = new KeyedLogEntry()
{
AdditionalKey = key,
Created = DateTime.Now,
public class LogEntry
{
public Guid Id { get; set; }
public string Logger { get; set; }
public string Message { get; set; }
public DateTime Created { get; set; }
public static LogEntry Create(string Logger, string Message)
{
LogEntry le = new LogEntry()
/// <summary>
/// Simple interface that defines how instances of <see cref="IDistributedLog"/> can be created.
/// </summary>
public interface IDistributedLogFactory
{
/// <summary>
/// Will return a cached <see cref="IDistributedLog"/> or return a new one if one does not exist in the cache.
/// </summary>
IDistributedLog GetLogger(string loggerName);
}
public class ServiceAwareController : Controller
{
private readonly IServiceFactory _serviceFactory;
public IAchievementService AchievementService
{
get { return _serviceFactory.CreateAchivementService(ServiceContext.Create(User)); }
}
public IDistilleryService DistilleryService