UserModifyTest.java 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.nokia;
  2. import org.junit.jupiter.api.Test;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. import org.springframework.data.redis.core.RedisTemplate;
  6. import com.alibaba.fastjson.JSON;
  7. import com.alibaba.fastjson.JSONObject;
  8. import com.baomidou.mybatisplus.core.toolkit.Wrappers;
  9. import com.nokia.dao.UserDao;
  10. import com.nokia.dao.UserRoleCityDao;
  11. import com.nokia.pojo.Role;
  12. import com.nokia.pojo.User;
  13. import com.nokia.pojo.UserRoleCity;
  14. import com.nokia.service.RoleService;
  15. import com.nokia.service.UserService;
  16. /**
  17. * 操作数据库中的用户信息
  18. */
  19. @SpringBootTest
  20. public class UserModifyTest {
  21. @Autowired
  22. private RedisTemplate<String, Object> redisTemplate;
  23. @Autowired
  24. private UserService userService;
  25. @Autowired
  26. private RoleService roleService;
  27. @Autowired
  28. private UserDao userDao;
  29. @Autowired
  30. private UserRoleCityDao userRoleCityDao;
  31. // 清除redis
  32. @Test
  33. void test() {
  34. Boolean delete = redisTemplate.delete("test_token_abc");
  35. System.out.println(delete);
  36. }
  37. // 修改用户--增加黑点库权限
  38. @Test
  39. void test1() {
  40. User user = userService.getByLoginName("test_shijiazhuang");
  41. // RoleEntity role = new RoleEntity();
  42. // role.setRoleName("黑点库管理");
  43. // role = roleService.getOne(Wrappers.query(role));
  44. // user.getRoles().add(role);
  45. Role role2 = new Role();
  46. role2.setRoleName("黑点库查询");
  47. role2 = roleService.getOne(Wrappers.query(role2));
  48. user.getRoles().add(role2);
  49. userService.update(user);
  50. }
  51. @Test
  52. void test2() {
  53. String str = "{\"no\": \"aaa\"}";
  54. JSONObject jsonObject = JSON.parseObject(str);
  55. System.out.println(jsonObject);
  56. Integer integer = jsonObject.getInteger("no");
  57. System.out.println(integer);
  58. }
  59. // 给12个地市的主管加权限
  60. @Test
  61. void test3() {
  62. // int[] ids = new int[] { 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 };
  63. // for (int id : ids) {
  64. // User user = userDao.selectById(id);
  65. // System.out.println(user);
  66. // UserRoleCity userRoleCity = new UserRoleCity();
  67. // userRoleCity.setUserId(id);
  68. // userRoleCity.setRoleId(18);
  69. // userRoleCity.setCityId(user.getCityId());
  70. // userRoleCityDao.insert(userRoleCity);
  71. // }
  72. int[] roleIds = new int[] { 3, 4, 5, 6, 7, 8, 12, 13};
  73. User user = userDao.selectById(24);
  74. for (int roleId : roleIds) {
  75. UserRoleCity userRoleCity = new UserRoleCity();
  76. userRoleCity.setUserId(user.getUserId());
  77. userRoleCity.setRoleId(roleId);
  78. userRoleCity.setCityId(user.getCityId());
  79. userRoleCityDao.insert(userRoleCity);
  80. }
  81. }
  82. }