|
| 1 | +// Copyright 2024 The casbin Authors. All Rights Reserved. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +package org.casbin; |
| 16 | + |
| 17 | +import javax.annotation.Resource; |
| 18 | +import lombok.extern.slf4j.Slf4j; |
| 19 | +import org.casbin.entity.MenuEntity; |
| 20 | +import org.casbin.service.MenuService; |
| 21 | +import org.casbin.util.MenuUtil; |
| 22 | +import org.junit.jupiter.api.BeforeEach; |
| 23 | +import org.junit.jupiter.params.ParameterizedTest; |
| 24 | +import org.junit.jupiter.params.provider.ValueSource; |
| 25 | +import org.springframework.beans.factory.annotation.Value; |
| 26 | +import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; |
| 27 | +import org.springframework.boot.test.context.SpringBootTest; |
| 28 | +import org.springframework.mock.web.MockHttpSession; |
| 29 | +import org.springframework.test.web.servlet.MockMvc; |
| 30 | + |
| 31 | +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; |
| 32 | +import org.springframework.test.web.servlet.result.MockMvcResultMatchers; |
| 33 | + |
| 34 | +import java.io.IOException; |
| 35 | +import java.util.List; |
| 36 | +import java.util.Map; |
| 37 | + |
| 38 | +@SpringBootTest(classes = {Application.class}, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) |
| 39 | +@AutoConfigureMockMvc |
| 40 | +@Slf4j |
| 41 | +public class MenuControllerTests { |
| 42 | + @Resource |
| 43 | + private MockMvc mockMvc; |
| 44 | + @Resource |
| 45 | + private MenuService menuService; |
| 46 | + |
| 47 | + private Map<String, MenuEntity> menuMap; |
| 48 | + |
| 49 | + @Value("${test.menu.filePath}") |
| 50 | + private String filePath; |
| 51 | + |
| 52 | + @BeforeEach |
| 53 | + public void setUp() throws IOException { |
| 54 | + menuMap = MenuUtil.parseCsvFile(filePath); |
| 55 | + } |
| 56 | + |
| 57 | + @ParameterizedTest |
| 58 | + @ValueSource(strings = {"root", "admin", "user"}) |
| 59 | + public void testAccessForDifferentUsers(String username) throws Exception { |
| 60 | + testMenuAccess(username); |
| 61 | + } |
| 62 | + |
| 63 | + public void testMenuAccess(String username) throws Exception { |
| 64 | + MockHttpSession session = createSessionForUser(username); |
| 65 | + List<MenuEntity> accessibleMenus = menuService.findAccessibleMenus(username); |
| 66 | + for (MenuEntity menu : menuMap.values()) { |
| 67 | + if(menu.getParents() == null){ |
| 68 | + testMenuAndSubMenus(menu, session, accessibleMenus); |
| 69 | + } |
| 70 | + } |
| 71 | + } |
| 72 | + |
| 73 | + private void testMenuAndSubMenus(MenuEntity menu, MockHttpSession session, List<MenuEntity> accessibleMenus) throws Exception { |
| 74 | + boolean isAccessible = isMenuAccessibleForUser(menu, accessibleMenus); |
| 75 | + String url = menu.getUrl(); |
| 76 | + if (!url.startsWith("/")) { |
| 77 | + url = "/" + url; |
| 78 | + } |
| 79 | + mockMvc.perform(MockMvcRequestBuilders.get(url).session(session)) |
| 80 | + .andExpect(isAccessible ? MockMvcResultMatchers.status().isOk() : MockMvcResultMatchers.status().isFound()) |
| 81 | + .andDo(mvcResult -> { |
| 82 | + String username = (String) session.getAttribute("username"); |
| 83 | + log.info("Username: {}", username); |
| 84 | + log.info("Menu Name: {}", menu.getName()); |
| 85 | + log.info("Is Accessible: {}", isAccessible); |
| 86 | + log.info("Status: {}", mvcResult.getResponse().getStatus()); |
| 87 | + }); |
| 88 | + |
| 89 | + for (MenuEntity subMenu : menu.getSubMenus()) { |
| 90 | + testMenuAndSubMenus(subMenu, session, accessibleMenus); |
| 91 | + } |
| 92 | + } |
| 93 | + |
| 94 | + private boolean isMenuAccessibleForUser(MenuEntity menuTarget, List<MenuEntity> accessibleMenus) { |
| 95 | + for (MenuEntity menu : accessibleMenus) { |
| 96 | + if (menuMatches(menu, menuTarget)) { return true; } |
| 97 | + } |
| 98 | + return false; |
| 99 | + } |
| 100 | + |
| 101 | + private boolean menuMatches(MenuEntity menu, MenuEntity menuTarget) { |
| 102 | + if (menu.equals(menuTarget)) { |
| 103 | + return true; |
| 104 | + } |
| 105 | + for (MenuEntity subMenu : menu.getSubMenus()) { |
| 106 | + if (menuMatches(subMenu, menuTarget)) { return true; } |
| 107 | + } |
| 108 | + return false; |
| 109 | + } |
| 110 | + |
| 111 | + private MockHttpSession createSessionForUser(String username) { |
| 112 | + MockHttpSession session = new MockHttpSession(); |
| 113 | + session.setAttribute("username", username); |
| 114 | + return session; |
| 115 | + } |
| 116 | + |
| 117 | +} |
0 commit comments