This commit is contained in:
shiziyuan9527 2020-06-02 16:46:43 +08:00
parent 17b10751a8
commit 25ee74760f
4 changed files with 5 additions and 2 deletions

View File

@ -37,12 +37,12 @@ public class EngineFactory {
public static Engine createEngine(LoadTestWithBLOBs loadTest) { public static Engine createEngine(LoadTestWithBLOBs loadTest) {
String resourcePoolId = loadTest.getTestResourcePoolId(); String resourcePoolId = loadTest.getTestResourcePoolId();
if (StringUtils.isBlank(resourcePoolId)) { if (StringUtils.isBlank(resourcePoolId)) {
MSException.throwException("Resource Pool ID is empty."); MSException.throwException(Translator.get("test_resource_pool_id_is_null"));
} }
TestResourcePool resourcePool = testResourcePoolService.getResourcePool(resourcePoolId); TestResourcePool resourcePool = testResourcePoolService.getResourcePool(resourcePoolId);
if (resourcePool == null) { if (resourcePool == null) {
MSException.throwException("Resource Pool is empty."); MSException.throwException(Translator.get("test_resource_pool_id_is_null"));
} }
final ResourcePoolTypeEnum type = ResourcePoolTypeEnum.valueOf(resourcePool.getType()); final ResourcePoolTypeEnum type = ResourcePoolTypeEnum.valueOf(resourcePool.getType());

View File

@ -36,6 +36,7 @@ workspace_name_already_exists=The workspace name already exists
workspace_does_not_belong_to_user=The current workspace does not belong to the current user workspace_does_not_belong_to_user=The current workspace does not belong to the current user
workspace_not_exists=Workspace is not exists workspace_not_exists=Workspace is not exists
#test resource pool #test resource pool
test_resource_pool_id_is_null=Test Resource Pool ID cannot be null
test_resource_pool_name_is_null=Test Resource Pool name cannot be null test_resource_pool_name_is_null=Test Resource Pool name cannot be null
test_resource_pool_name_already_exists=The test resource pool name already exists test_resource_pool_name_already_exists=The test resource pool name already exists
#project #project

View File

@ -36,6 +36,7 @@ workspace_name_already_exists=工作空间名已存在
workspace_does_not_belong_to_user=当前工作空间不属于当前用户 workspace_does_not_belong_to_user=当前工作空间不属于当前用户
workspace_not_exists=工作空间不存在 workspace_not_exists=工作空间不存在
#test resource pool #test resource pool
test_resource_pool_id_is_null=资源池ID不能为空
test_resource_pool_name_is_null=资源池名称不能为空 test_resource_pool_name_is_null=资源池名称不能为空
test_resource_pool_name_already_exists=资源池名称已存在 test_resource_pool_name_already_exists=资源池名称已存在
#project #project

View File

@ -36,6 +36,7 @@ workspace_name_already_exists=工作空間名已存在
workspace_does_not_belong_to_user=當前工作空間不屬於當前用戶 workspace_does_not_belong_to_user=當前工作空間不屬於當前用戶
workspace_not_exists=工作空間不存在 workspace_not_exists=工作空間不存在
#test resource pool #test resource pool
test_resource_pool_id_is_null=資源池ID不能為空
test_resource_pool_name_is_null=資源池名稱不能為空 test_resource_pool_name_is_null=資源池名稱不能為空
test_resource_pool_name_already_exists=資源池名稱已存在 test_resource_pool_name_already_exists=資源池名稱已存在
#project #project