2020-10-22 14:59:36 +08:00
|
|
|
|
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
|
|
|
|
|
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Security.Claims;
|
|
|
|
|
using IdentityModel;
|
|
|
|
|
using IdentityServer4.Test;
|
2020-12-27 00:00:28 +08:00
|
|
|
|
using OpenAuth.App;
|
2020-10-22 14:59:36 +08:00
|
|
|
|
|
|
|
|
|
namespace OpenAuth.IdentityServer.Quickstart
|
|
|
|
|
{
|
|
|
|
|
public class TestUsers
|
|
|
|
|
{
|
|
|
|
|
public static List<TestUser> Users = new List<TestUser>
|
|
|
|
|
{
|
2020-12-27 00:00:28 +08:00
|
|
|
|
new TestUser{SubjectId = "System", Username = Define.SYSTEM_USERNAME, Password = Define.SYSTEM_USERPWD,
|
2020-10-22 14:59:36 +08:00
|
|
|
|
Claims =
|
|
|
|
|
{
|
|
|
|
|
new Claim(JwtClaimTypes.Name, "System"),
|
|
|
|
|
new Claim(JwtClaimTypes.GivenName, "yubao"),
|
|
|
|
|
new Claim(JwtClaimTypes.FamilyName, "lee")}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|