Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spike - #156

Draft
wants to merge 3 commits into
base: development
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "Ubuntu",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:jammy",
"features": {
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "6.0"
}
}

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for more information:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://containers.dev/guide/dependabot

version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: weekly
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.5" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Bogus" Version="25.0.4" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.5" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down
12 changes: 8 additions & 4 deletions HousingFinanceInterimApi.Tests/V1/TestHelpers/ConstantsGen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ namespace HousingFinanceInterimApi.Tests.V1.TestHelpers
{
public static class ConstantsGen
{
public static string AcademyFileFolderLabel = "AcademyFileFolder";
public static string HousingBenefitFileLabel = "HousingBenefitFile";
public static string RentPositionLabel = "RentPosition";
public static string RentPositionBkpLabel = "RentPositionBkp";
public const string AcademyFileFolderLabel = "AcademyFileFolder";
public const string HousingBenefitFileLabel = "HousingBenefitFile";
public const string RentPositionLabel = "RentPosition";
public const string RentPositionBkpLabel = "RentPositionBkp";

public const string POSTGRESRDS = "PostgresDb";
public const string SQLSERVERRDS = "SqlServerRds";
public const string SQLSERVERDOCKER = "SqlServerDocker";
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using HousingFinanceInterimApi.V1.Infrastructure;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext
{
public abstract class BaseContextClass
{
public abstract IDatabaseContext CreateDbContext();

public abstract string GetConnectionString();

public abstract bool IsOk { get; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using HousingFinanceInterimApi.V1.Infrastructure;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext
{
public class PostgresRdsContext : BaseContextClass
{
public override bool IsOk => false;

public override IDatabaseContext CreateDbContext()
{
throw new System.NotImplementedException();
}

public override string GetConnectionString()
{
return "Postgres Connectionstring";
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using HousingFinanceInterimApi.V1.Infrastructure;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext
{
public class SqlServerDockerContext : BaseContextClass
{
public SqlServerDockerContext()
{
}

public override bool IsOk => 1 == 1;

public override IDatabaseContext CreateDbContext()
{
throw new System.NotImplementedException();
}

public override string GetConnectionString()
{
return "SQLServer Connectionstring";
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using HousingFinanceInterimApi.V1.Infrastructure;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext
{
public class SqlServerRdsContext : BaseContextClass
{
public SqlServerRdsContext()
{
}

public override bool IsOk => throw new System.NotImplementedException();

public override IDatabaseContext CreateDbContext()
{
throw new System.NotImplementedException();
}

public override string GetConnectionString()
{
throw new System.NotImplementedException();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext;
using HousingFinanceInterimApi.Tests.V1.spike289v2.DatabaseContext;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseTests
{
public abstract class DatabaseTestsBase
{
private readonly BaseContextClass _context;

protected DatabaseTestsBase(BaseContextClass context)
{
_context = context;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext;
using Microsoft.EntityFrameworkCore;
using Xunit;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseTests
{
public class Gateway01TestBase : DatabaseTestsBase
{
private readonly BaseContextClass _context;
protected string _connectionString;

public Gateway01TestBase(BaseContextClass context) : base(context)
{
_context = context;
}

public virtual void ConnectionString_Good()
{
_connectionString = _context.GetConnectionString();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext;
using Xunit;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseTests
{
[CollectionDefinition("PostgresTests")]
public class PostgresTestCollection : ICollectionFixture<PostgresRdsContext>
{
// This class has no code, and is never created. Its purpose is simply
// to be the place to apply [CollectionDefinition] and all the
// ICollectionFixture<> interfaces.
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext;
using Xunit;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseTests.PostgresTests
{
/// <summary>
/// Postgres RDS instance
/// </summary>
[Collection("PostgresTests")]
public class PostgresGateway01Tests : Gateway01TestBase
{
private readonly PostgresRdsContext _context;

public PostgresGateway01Tests(PostgresRdsContext context) : base(context)
{
_context = context;
}

[Fact]
public override void ConnectionString_Good()
{
base.ConnectionString_Good();
Assert.Equal(_connectionString, _context.GetConnectionString());
}

[Fact]
public void Status_Should_Be_False()
{
Assert.False(_context.IsOk);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext;
using Xunit;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseTests
{
[CollectionDefinition("SqlServerTests")]
public class SqlServerTestCollection : ICollectionFixture<SqlServerDockerContext>
{
// This class has no code, and is never created. Its purpose is simply
// to be the place to apply [CollectionDefinition] and all the
// ICollectionFixture<> interfaces.
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using HousingFinanceInterimApi.Tests.V1.spike289.DatabaseContext;
using Xunit;

namespace HousingFinanceInterimApi.Tests.V1.spike289.DatabaseTests.SqlServerTests
{
/// <summary>
/// Docker SQL Server instance
/// </summary>
[Collection("SqlServerTests")]
public class SqlServerGateway01Tests : Gateway01TestBase
{
private readonly SqlServerDockerContext _context;

public SqlServerGateway01Tests(SqlServerDockerContext context) : base(context)
{
_context = context;
}

[Fact]
public override void ConnectionString_Good()
{
base.ConnectionString_Good();
Assert.Equal(_connectionString, _context.GetConnectionString());
}

[Fact]
public void Status_Should_Be_True()
{
Assert.True(_context.IsOk);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
using AutoFixture;
using Bogus;
using HousingFinanceInterimApi.Tests.V1.Infrastructure.DatabaseContext;
using HousingFinanceInterimApi.Tests.V1.spike289v2.DatabaseContextFixture;
using HousingFinanceInterimApi.Tests.V1.TestHelpers;
using System;
using System.Collections.Generic;

namespace HousingFinanceInterimApi.Tests.V1.spike289v2.DatabaseContext
{
public class DatabaseFixtureFactory
{
private readonly Faker _faker = new Faker();
private readonly Fixture _fixture = new Fixture();
private readonly List<Action> _cleanups = new List<Action>();

public DatabaseFixtureFactory()
{
}

public Faker Faker => _faker;

public Fixture Fixture => _fixture;

public List<Action> Cleanups => _cleanups;

public IDatabaseContextFixture CreateFixture(string database)
{
IDatabaseContextFixture dbContextFixture;
string connectionString;

switch (database)
{
// Postgres RDS
case ConstantsGen.POSTGRESRDS:
connectionString = "";
dbContextFixture = new PostgresRdsContextFixture(connectionString);
break;

// SQL Server RDS
case ConstantsGen.SQLSERVERRDS:
connectionString = Environment.GetEnvironmentVariable("CONNECTION_STRING");
if (string.IsNullOrEmpty(connectionString))
throw new DbConnectionException("CONNECTION_STRING env var is not set");
dbContextFixture = new SqlServerRdsContextFixture(connectionString);
break;

// SQL Server Docker
case ConstantsGen.SQLSERVERDOCKER:
connectionString = "conn";
if (string.IsNullOrEmpty(connectionString))
throw new DbConnectionException("Docker connection string is not set");
dbContextFixture = new SqlServerDockerContextFixture(connectionString);
break;

default:
connectionString = "";
dbContextFixture = new PostgresRdsContextFixture(connectionString);
break;
}

return dbContextFixture;
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
namespace HousingFinanceInterimApi.Tests.V1.spike289v2.DatabaseContextFixture
{
public interface IDatabaseContextFixture
{
public HousingFinanceInterimApi.V1.Infrastructure.DatabaseContext CreateDbContext();
}
}
Loading