feat: 新增 Mock 上下文

This commit is contained in:
click33 2025-04-07 11:58:08 +08:00
parent 6642f96f7e
commit 1925eb4081
4 changed files with 376 additions and 0 deletions

View File

@ -0,0 +1,151 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.context.mock;
import cn.dev33.satoken.application.ApplicationInfo;
import cn.dev33.satoken.context.model.SaRequest;
import java.util.Collection;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* SaRequest 包装类的实现Mock
*
* @author click33
* @since 1.42.0
*/
public class SaRequestForMock implements SaRequest {
public Map<String, String> parameterMap = new LinkedHashMap<>();
public Map<String, String> headerMap = new LinkedHashMap<>();
public Map<String, String> cookieMap = new LinkedHashMap<>();
public String requestPath;
public String url;
public String method;
public String host;
public String forwardTo;
/**
* 获取底层源对象
*/
@Override
public Object getSource() {
return null;
}
/**
* [请求体] 里获取一个值
*/
@Override
public String getParam(String name) {
return parameterMap.get(name);
}
/**
* 获取 [请求体] 里提交的所有参数名称
* @return 参数名称列表
*/
@Override
public Collection<String> getParamNames(){
return parameterMap.keySet();
}
/**
* 获取 [请求体] 里提交的所有参数
* @return 参数列表
*/
@Override
public Map<String, String> getParamMap(){
return parameterMap;
}
/**
* [请求头] 里获取一个值
*/
@Override
public String getHeader(String name) {
return headerMap.get(name);
}
/**
* [Cookie作用域] 里获取一个值
*/
@Override
public String getCookieValue(String name) {
return getCookieLastValue(name);
}
/**
* [ Cookie作用域 ] 里获取一个值 (第一个此名称的)
*/
@Override
public String getCookieFirstValue(String name){
return cookieMap.get(name);
}
/**
* [ Cookie作用域 ] 里获取一个值 (最后一个此名称的)
* @param name
* @return
*/
@Override
public String getCookieLastValue(String name){
return cookieMap.get(name);
}
/**
* 返回当前请求path (不包括上下文名称)
*/
@Override
public String getRequestPath() {
return ApplicationInfo.cutPathPrefix(requestPath);
}
/**
* 返回当前请求的urlhttp://xxx.com/test
* @return see note
*/
public String getUrl() {
return url;
}
/**
* 返回当前请求的类型
*/
@Override
public String getMethod() {
return method;
}
/**
* 查询请求 host
*/
@Override
public String getHost() {
return host;
}
/**
* 转发请求
*/
@Override
public Object forward(String path) {
this.forwardTo = path;
return null;
}
}

View File

@ -0,0 +1,83 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.context.mock;
import cn.dev33.satoken.context.model.SaResponse;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* SaResponse 包装类的实现Mock
*
* @author click33
* @since 1.42.0
*/
public class SaResponseForMock implements SaResponse {
public int status;
public Map<String, String> headerMap = new LinkedHashMap<>();
public String redirectTo;
/**
* 获取底层源对象
*/
@Override
public Object getSource() {
return null;
}
/**
* 设置响应状态码
*/
@Override
public SaResponse setStatus(int sc) {
this.status = sc;
return this;
}
/**
* 在响应头里写入一个值
*/
@Override
public SaResponse setHeader(String name, String value) {
headerMap.put(name, value);
return this;
}
/**
* 在响应头里添加一个值
* @param name 名字
* @param value
* @return 对象自身
*/
public SaResponse addHeader(String name, String value) {
headerMap.put(name, value);
return this;
}
/**
* 重定向
*/
@Override
public Object redirect(String url) {
this.redirectTo = url;
return null;
}
}

View File

@ -0,0 +1,67 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.context.mock;
import cn.dev33.satoken.context.model.SaStorage;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* SaStorage 包装类的实现Mock
*
* @author click33
* @since 1.42.0
*/
public class SaStorageForMock implements SaStorage {
public Map<String, Object> dataMap = new LinkedHashMap<>();
/**
* 获取底层源对象
*/
@Override
public Object getSource() {
return null;
}
/**
* [Request作用域] 里写入一个值
*/
@Override
public SaStorageForMock set(String key, Object value) {
dataMap.put(key, value);
return this;
}
/**
* [Request作用域] 里获取一个值
*/
@Override
public Object get(String key) {
return dataMap.get(key);
}
/**
* [Request作用域] 里删除一个值
*/
@Override
public SaStorageForMock delete(String key) {
dataMap.remove(key);
return this;
}
}

View File

@ -0,0 +1,75 @@
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.context.mock;
import cn.dev33.satoken.SaManager;
import cn.dev33.satoken.fun.SaFunction;
import cn.dev33.satoken.fun.SaRetGenericFunction;
/**
* Sa-Token Mock 上下文 操作工具类
*
* @author click33
* @since 1.42.0
*/
public class SaTokenContextMockUtil {
/**
* 写入 Mock 上下文
*/
public static void setMockContext() {
SaRequestForMock request = new SaRequestForMock();
SaResponseForMock response = new SaResponseForMock();
SaStorageForMock storage = new SaStorageForMock();
SaManager.getSaTokenContext().setContext(request, response, storage);
}
/**
* 写入 Mock 上下文并执行一段代码执行完毕后清除上下文
*
* @param fun /
*/
public static void setMockContext(SaFunction fun) {
try {
setMockContext();
fun.run();
} finally {
clearContext();
}
}
/**
* 写入 Mock 上下文并执行一段代码执行完毕后清除上下文
*
* @param fun /
*/
public static <T> T setMockContext(SaRetGenericFunction<T> fun) {
try {
setMockContext();
return fun.run();
} finally {
clearContext();
}
}
/**
* 清除上下文
*/
public static void clearContext() {
SaManager.getSaTokenContext().clearContext();
}
}