-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from bradygaster/add-sample-data
Add sample data
- Loading branch information
Showing
11 changed files
with
231 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"dotnet-test-explorer.testProjectPath": "**/*Tests.csproj" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
tests/COVIDScreeningApi.Tests/COVIDScreeningApi.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Bogus" Version="29.0.2" /> | ||
<PackageReference Include="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" /> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" /> | ||
<PackageReference Include="Xunit.DependencyInjection" Version="6.1.0" /> | ||
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.8.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Cosmos" Version="5.0.0-preview.2.20159.4" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\src\COVIDScreeningApi\COVIDScreeningApi.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="appsettings.json"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
using System; | ||
using System.Text.Json; | ||
using Bogus; | ||
using COVIDScreeningApi.Controllers; | ||
using COVIDScreeningApi.Data; | ||
using COVIDScreeningApi.Models; | ||
using FluentAssertions; | ||
using Microsoft.EntityFrameworkCore; | ||
using Microsoft.Extensions.Configuration; | ||
using Xunit; | ||
using Microsoft.AspNetCore.Mvc; | ||
using System.Linq; | ||
|
||
namespace COVIDScreeningApi.Tests | ||
{ | ||
public class DataPersistenceTests | ||
{ | ||
private readonly DataContext _dataContext; | ||
public RepresentativeDataController RepresentativeDataController { get; } | ||
public PortsOfEntryController PortsOfEntryController { get; } | ||
public ScreeningDataTableController ScreeningDataTableController { get; } | ||
|
||
private readonly IConfiguration _configuration; | ||
public DataPersistenceTests(DataContext dataContext, IConfiguration configuration) | ||
{ | ||
_configuration = configuration; | ||
_dataContext = dataContext; | ||
|
||
RepresentativeDataController = new RepresentativeDataController(_dataContext, _configuration); | ||
PortsOfEntryController = new PortsOfEntryController(_dataContext, _configuration); | ||
ScreeningDataTableController = new ScreeningDataTableController(_dataContext, _configuration); | ||
} | ||
|
||
[Fact] | ||
public void RepresentativeCanBeSavedToDatabase() | ||
{ | ||
var rep = CreateRandomRepresentative(); | ||
var postResult = RepresentativeDataController.Post(rep); | ||
var createdReult = postResult.Result as CreatedResult; | ||
(createdReult.Value as RepresentativeData).Should().NotBeNull(); | ||
(createdReult.Value as RepresentativeData).Id.Should().NotBe(Guid.Empty); | ||
} | ||
|
||
[Fact] | ||
public void CanGetRandomExistingRepresentatives() | ||
{ | ||
var rep = GetRandomRepresentative(); | ||
rep.Should().NotBeNull(); | ||
} | ||
|
||
[Fact] | ||
public void ScreeningDataCanBeSavedToDatabase() | ||
{ | ||
var rep = CreateRandomRepresentative(); | ||
rep.Should().NotBeNull(); | ||
var screen = CreateRandomScreeningData(rep.RepName); | ||
var postResult = ScreeningDataTableController.Post(screen); | ||
var createdReult = postResult.Result as CreatedResult; | ||
(createdReult.Value as ScreeningDataTable).Should().NotBeNull(); | ||
(createdReult.Value as ScreeningDataTable).Id.Should().NotBe(Guid.Empty); | ||
} | ||
|
||
[Fact] | ||
public void PortsOfEntryCanBeSavedToDatabase() | ||
{ | ||
var portOfEntry = CreateRandomPortOfEntry(); | ||
portOfEntry.Should().NotBeNull(); | ||
var postResult = PortsOfEntryController.Post(portOfEntry); | ||
var createdReult = postResult.Result as CreatedResult; | ||
(createdReult.Value as PortsOfEntry).Should().NotBeNull(); | ||
(createdReult.Value as PortsOfEntry).Id.Should().NotBe(Guid.Empty); | ||
} | ||
|
||
RepresentativeData GetRandomRepresentative() | ||
{ | ||
var reps = RepresentativeDataController.Get(); | ||
return reps.ElementAt(new Random().Next(0, (reps.Count() - 1))); | ||
} | ||
|
||
RepresentativeData CreateRandomRepresentative() | ||
{ | ||
return new Faker<RepresentativeData>() | ||
.RuleFor(x => x.Id, f => Guid.Empty) | ||
.RuleFor(x => x.RepContact, f => f.Phone.PhoneNumber()) | ||
.RuleFor(x => x.RepLocation, f => f.Address.City()) | ||
.RuleFor(x => x.RepName, f => f.Name.FullName()) | ||
.FinishWith((f, u) => | ||
{ | ||
u.RepEmail = f.Internet.Email(u.RepName); | ||
}) | ||
.Generate(); | ||
} | ||
|
||
ScreeningDataTable CreateRandomScreeningData(string repName) | ||
{ | ||
return new Faker<ScreeningDataTable>() | ||
.RuleFor(u => u.Bodyache, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.DryCough, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.Fatigue, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.Fever, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.Headache, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.RunnyNose, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.ShortnessOfBreath, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.SoreThroat, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.TraveledOutsideTheUS, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.Id, f => Guid.Empty) | ||
.RuleFor(u => u.InContactWithCOVID, f => f.System.Random.Bool()) | ||
.RuleFor(u => u.Location, f => f.Address.City()) | ||
.RuleFor(u => u.ContactNumber, f => f.Phone.PhoneNumber()) | ||
.RuleFor(u => u.DateOfScreening, f => f.Date.Recent()) | ||
.RuleFor(u => u.Nationality, "United States") | ||
.RuleFor(u => u.Passport, f => f.Finance.CreditCardNumber()) | ||
.RuleFor(u => u.ScreeningRepName, repName) | ||
.RuleFor(u => u.VisitorName, f => f.Name.FullName()) | ||
.Generate(); | ||
} | ||
|
||
PortsOfEntry CreateRandomPortOfEntry() | ||
{ | ||
return new Faker<PortsOfEntry>() | ||
.RuleFor(u => u.Id, f => Guid.Empty) | ||
.RuleFor(u => u.ItemsLabels, f => f.Address.City()) | ||
.RuleFor(u => u.ItemsLatitudes, f => f.Address.Latitude(47.3022815, 47.5517946)) | ||
.RuleFor(u => u.ItemsLongitudes, f => f.Address.Longitude(-122.7553483, -121.881312)) | ||
.Generate(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
using System.Configuration; | ||
using System.Reflection; | ||
using COVIDScreeningApi.Data; | ||
using Microsoft.EntityFrameworkCore; | ||
using Microsoft.Extensions.DependencyInjection; | ||
using Microsoft.Extensions.Hosting; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
using Xunit.DependencyInjection; | ||
using Microsoft.Extensions.Configuration; | ||
using COVIDScreeningApi; | ||
|
||
[assembly: TestFramework("COVIDScreeningApi.Tests.Startup", "COVIDScreeningApi.Tests")] | ||
|
||
namespace COVIDScreeningApi.Tests | ||
{ | ||
public class Startup : DependencyInjectionTestFramework | ||
{ | ||
IConfiguration Configuration = | ||
new ConfigurationBuilder().AddJsonFile("appsettings.json").Build(); | ||
|
||
public Startup(IMessageSink messageSink) : base(messageSink) { } | ||
|
||
protected void ConfigureServices(IServiceCollection services) | ||
{ | ||
services.AddSingleton<IConfiguration>(Configuration); | ||
|
||
services.AddDbContext<DataContext>(optionsBuilder => | ||
{ | ||
optionsBuilder.UseCosmos( | ||
Configuration.GetConnectionString("CosmosDbConnectionString"), | ||
"COVIDScreeningDb"); | ||
}); | ||
} | ||
|
||
protected override IHostBuilder CreateHostBuilder(AssemblyName assemblyName) => | ||
base.CreateHostBuilder(assemblyName) | ||
.ConfigureServices(ConfigureServices); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"Logging": { | ||
"LogLevel": { | ||
"Default": "Information", | ||
"Microsoft": "Warning", | ||
"Microsoft.Hosting.Lifetime": "Information" | ||
} | ||
}, | ||
"AllowedHosts": "*", | ||
"SwaggerBaseUrl": "https://localhost:5001", | ||
"ConnectionStrings": { | ||
"CosmosDbConnectionString" : "" | ||
} | ||
} |