Skip to content

Commit 0c18cc2

Browse files
authoredFeb 1, 2024
feat: Add test function (#5)
feat: Add test function
1 parent 7f45683 commit 0c18cc2

File tree

6 files changed

+177
-26
lines changed

6 files changed

+177
-26
lines changed
 

‎.github/workflows/maven-ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build and Test Menu Permission
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
distribution: 'temurin'
17+
cache: maven
18+
- name: Build with Maven
19+
run: mvn -B package --file pom.xml
20+
21+
#Run Tests
22+
- name: Run Tests
23+
run: mvn -B test

‎examples/casbin/model.conf

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[request_definition]
2+
r = sub, obj, act
3+
4+
[policy_definition]
5+
p = sub, obj, act, eft
6+
7+
[role_definition]
8+
g = _, _
9+
g2 = _, _
10+
11+
[policy_effect]
12+
e = some(where (p.eft == allow)) && !some(where (p.eft == deny))
13+
14+
[matchers]
15+
m = g(r.sub, p.sub) && r.act == p.act && (g2(r.obj, p.obj) || r.obj == p.obj)

‎examples/casbin/policy.csv

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
p, ROLE_ROOT, OtherMenu, read, allow
2+
p, ROLE_ROOT, AdminMenu, read, allow
3+
p, ROLE_ROOT, UserMenu, read, deny
4+
p, ROLE_ADMIN, UserMenu, read, allow
5+
p, ROLE_ADMIN, AdminMenu, read, allow
6+
p, ROLE_ADMIN, AdminSubMenu_deny, read, deny
7+
p, ROLE_USER, UserSubMenu_allow, read, allow
8+
9+
g, user, ROLE_USER
10+
g, admin, ROLE_ADMIN
11+
g, root, ROLE_ROOT
12+
g, ROLE_ADMIN, ROLE_USER
13+
14+
g2, UserSubMenu_allow, UserMenu
15+
g2, UserSubMenu_deny, UserMenu
16+
g2, UserSubSubMenu, UserSubMenu_allow
17+
g2, AdminSubMenu_allow, AdminMenu
18+
g2, AdminSubMenu_deny, AdminMenu
19+
g2, (NULL), OtherMenu

‎src/test/java/org/casbin/ApplicationTests.java

-26
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
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+
}

‎src/test/resources/application.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
test:
2+
menu:
3+
filePath: examples/casbin/policy.csv

0 commit comments

Comments
 (0)
Please sign in to comment.