Skip to content

Instantly share code, notes, and snippets.

public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.ConfigureLogging(logging =>
{
logging.AddNesterLog(LogLevel.Information);
})
.UseStartup<Startup>();
public class UnitTests
{
[Fact]
public void TestSearch()
{
// Arrange
var mockRuntime = new Mock<Runtime>(
QueueMode.Server | QueueMode.Client,
180, Enviorenment.Development
) {CallBase = true};
public class UnitTests
{
[Fact]
public async void TestSearchAsync()
{
/*
Perform a search and return results
*/
// Arrange
// This configures the Trader Table
public class TraderConfiguration : IEntityTypeConfiguration<Trader>
{
public void Configure(EntityTypeBuilder<Trader> builder)
{
builder.Property(o => o.DateJoined)
.IsRequired()
.HasColumnType("datetime");
public class IndustryConfiguration : IEntityTypeConfiguration<Industry>
{
public void Configure(EntityTypeBuilder<Industry> builder)
{
builder.HasKey(o => o.Id);
builder.Property(o => o.Tag)
.IsRequired()
.HasColumnType("varchar(64)");
builder.HasIndex(o => o.Tag)
public void ConfigureServices(IServiceCollection services)
{
services.AddNester();
// 1. Set API Version
services.AddDbContext<JwtauthContext>(options =>
options.UseSqlite("Data Source=/var/app/source/shared/Jwtauth.db"));
services.AddScoped<IIndustryRepository, IndustryRepository>();
services.AddApiVersioning(options => {
string clientSignature = JsonConvert.SerializeObject((
Model: DeviceInfo.Model,
Manufacturer: DeviceInfo.Manufacturer,
Name: DeviceInfo.Name,
Platform: DeviceInfo.Platform,
Idiom: DeviceInfo.Idiom,
DeviceType: DeviceInfo.DeviceType,
HardwareVersion: DeviceInfo.VersionString,
SoftwareVersion: typeof(MainPage).GetTypeInfo()
public async Task<ResultMultiple<Share>> QuerySharesAsync(
bool doCache = true, bool throwIfError = true)
{
Share shareSeed = new Share();
shareSeed.OwnedBy = _selectedIndustry;
ResultMultiple<Share> result = await ResultMultipleUI<Share>.WaitForObjectAsync(
backend, throwIfError, shareSeed, doCache);
var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_configuration["JwtKey"]));
var creds = new SigningCredentials(key, SecurityAlgorithms.HmacSha256);
var expires = DateTime.Now.AddHours(Convert.ToDouble(_configuration["JwtExpireHours"]));
var token = new JwtSecurityToken(
_configuration["JwtIssuer"],
_configuration["JwtIssuer"],
claims,
expires: expires,
signingCredentials: creds
public enum Result
{
Succeeded = 0,
Failed = -1,
Unauthorized = -5,
InternalError = -10,
UserNotFound = -15,
IncorrectEmail = -20,
EmailNotConfirmed = -25,
IncorrectSecurityCode = -30,