修改DisplayName字段相关的用户功能
This commit is contained in:
parent
ede9868d1b
commit
8548c564d3
|
@ -18,7 +18,7 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Password { get; set; }
|
public string Password { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 获取/设置 验证信息
|
/// 获取/设置 密码盐
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string PassSalt { get; set; }
|
public string PassSalt { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -51,7 +51,7 @@ namespace Bootstrap.DataAccess
|
||||||
return string.IsNullOrEmpty(tId) ? ret : ret.Where(t => tId.Equals(t.ID.ToString(), StringComparison.OrdinalIgnoreCase));
|
return string.IsNullOrEmpty(tId) ? ret : ret.Where(t => tId.Equals(t.ID.ToString(), StringComparison.OrdinalIgnoreCase));
|
||||||
}
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
/// 根据用户名查询用户
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="userName"></param>
|
/// <param name="userName"></param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
@ -116,13 +116,12 @@ namespace Bootstrap.DataAccess
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static bool SaveUser(User p)
|
public static bool SaveUser(User p)
|
||||||
{
|
{
|
||||||
//TODO: 这里这样处理明显不行,需要用非对称加密算法进行混淆加密后存储到数据库中
|
|
||||||
if (p == null) throw new ArgumentNullException("p");
|
if (p == null) throw new ArgumentNullException("p");
|
||||||
bool ret = false;
|
bool ret = false;
|
||||||
if (p.UserName.Length > 50) p.UserName.Substring(0, 50);
|
if (p.UserName.Length > 50) p.UserName.Substring(0, 50);
|
||||||
if (p.Password.Length > 50) p.Password.Substring(0, 50);
|
|
||||||
p.PassSalt = LgbCryptography.GenerateSalt();
|
p.PassSalt = LgbCryptography.GenerateSalt();
|
||||||
p.Password = LgbCryptography.ComputeHash(p.Password, p.PassSalt);
|
p.Password = LgbCryptography.ComputeHash(p.Password, p.PassSalt);
|
||||||
|
if (p.DisplayName.Length > 50) p.DisplayName.Substring(0, 50);
|
||||||
string sql = p.ID == 0 ?
|
string sql = p.ID == 0 ?
|
||||||
"Insert Into Users (UserName, Password, PassSalt, DisplayName) Values (@UserName, @Password, @PassSalt, @DisplayName)" :
|
"Insert Into Users (UserName, Password, PassSalt, DisplayName) Values (@UserName, @Password, @PassSalt, @DisplayName)" :
|
||||||
"Update Users set UserName = @UserName, Password = @Password, PassSalt = @PassSalt, DisplayName = @DisplayName where ID = @ID";
|
"Update Users set UserName = @UserName, Password = @Password, PassSalt = @PassSalt, DisplayName = @DisplayName where ID = @ID";
|
||||||
|
|
|
@ -18,7 +18,6 @@ namespace Bootstrap.DataAccess.Tests
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void DeleteUserTest()
|
public void DeleteUserTest()
|
||||||
{
|
{
|
||||||
//TODO: Delete方法没有返回值,自己想想做一个返回值即可
|
|
||||||
Assert.IsTrue(UserHelper.DeleteUser("1,2"), "带有参数的UserHelper.DeleteUserTest方法调用失败,请检查数据库连接或者数据库SQL语句");
|
Assert.IsTrue(UserHelper.DeleteUser("1,2"), "带有参数的UserHelper.DeleteUserTest方法调用失败,请检查数据库连接或者数据库SQL语句");
|
||||||
Assert.IsFalse(UserHelper.DeleteUser(string.Empty), "参数为空字符串的UserHelper.DeleteUserTest方法调用失败,请检查数据库连接或者数据库SQL语句");
|
Assert.IsFalse(UserHelper.DeleteUser(string.Empty), "参数为空字符串的UserHelper.DeleteUserTest方法调用失败,请检查数据库连接或者数据库SQL语句");
|
||||||
}
|
}
|
||||||
|
@ -26,22 +25,23 @@ namespace Bootstrap.DataAccess.Tests
|
||||||
[TestMethod]
|
[TestMethod]
|
||||||
public void SaveUserTest()
|
public void SaveUserTest()
|
||||||
{
|
{
|
||||||
//TODO: 两个提示一模一样完全不知道哪里出了问题,本单元测试未通过
|
|
||||||
User users = new User();
|
User users = new User();
|
||||||
users.ID = 0;
|
users.ID = 0;
|
||||||
users.UserName = "liqi";
|
users.UserName = "lq";
|
||||||
users.Password = "123";
|
users.Password = "123";
|
||||||
users.PassSalt = "123";
|
users.PassSalt = "123";
|
||||||
|
users.DisplayName = "liqi";
|
||||||
var result = UserHelper.SaveUser(users);
|
var result = UserHelper.SaveUser(users);
|
||||||
Assert.IsTrue(result == true, "带有参数的UserHelper.SaveUser方法中新建用户信息失败,请检查数据库连接或者数据库SQL语句");
|
Assert.IsTrue(result == true, "新建用户信息失败,请检查数据库连接或者数据库SQL语句");
|
||||||
|
|
||||||
User users1 = new User();
|
User users1 = new User();
|
||||||
users1.ID = 1;
|
users1.ID = 5;
|
||||||
users1.UserName = "Lily";
|
users1.UserName = "lq";
|
||||||
users1.Password = "123456";
|
users1.Password = "123";
|
||||||
users1.PassSalt = "123456";
|
users1.PassSalt = "123456";
|
||||||
|
users1.DisplayName = "Qi Li";
|
||||||
result = UserHelper.SaveUser(users1);
|
result = UserHelper.SaveUser(users1);
|
||||||
Assert.IsTrue(result == true, "带有参数的UserHelper.SaveUser方法中更新用户信息失败,请检查数据库连接或者数据库SQL语句");
|
Assert.IsTrue(result == true, "更新用户信息失败,请检查数据库连接或者数据库SQL语句");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue