UserTset.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using CZFW.Core.Security;
  2. using CZFW.Framework.Interface;
  3. using CZFW.Framework.Model.Entity;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. using Xunit;
  8. namespace CZKJ.GBRS2.Test
  9. {
  10. public class UserTset:TestBase
  11. {
  12. CZFW.Framework.Interface.IUserInfo _logic;
  13. public UserTset()
  14. {
  15. _logic = GetService<IUserInfo>();
  16. }
  17. void AddEntity()
  18. {
  19. UserInfoEntity entity = new UserInfoEntity()
  20. {
  21. UserName = "admin",
  22. Password = DesEncrypt.Encrypt("admin", "MD5"),
  23. Name = "崔",
  24. State = 1,
  25. Mobile = "10086",
  26. IsSysAdmin = true,
  27. Error = 0,
  28. LockTime = 0,
  29. StartTime = null
  30. };
  31. var res= _logic.EditEntity(entity);
  32. Assert.True(res.Success);
  33. }
  34. [Fact]
  35. void GetMd5()
  36. {
  37. string token = DesEncrypt.Encrypt("Data Source = 114.55.54.52; user id = root; password = CZKJczkj2017; Initial Catalog = gbrs2", "MD5");
  38. Assert.True(token != null);
  39. }
  40. }
  41. }