/modules/test/poshi-runner/poshi-runner/src/main/java/com/liferay/poshi/runner/util/RuntimeVariables.java

http://github.com/liferay/liferay-portal · Java · 234 lines · 157 code · 61 blank · 16 comment · 32 complexity · 780bf4814cee976d7de0ed6d872944a2 MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.poshi.runner.util;
  15. import java.net.InetAddress;
  16. import java.util.ArrayList;
  17. import java.util.HashMap;
  18. import java.util.List;
  19. import java.util.Map;
  20. import java.util.regex.Matcher;
  21. import java.util.regex.Pattern;
  22. /**
  23. * @author Brian Wing Shun Chan
  24. */
  25. public class RuntimeVariables {
  26. public static String evaluateLocator(
  27. String locator, Map<String, String> context)
  28. throws Exception {
  29. String locatorValue = locator;
  30. if (locatorValue.contains("${") && locatorValue.contains("}")) {
  31. String regex = "\\$\\{([^}]*?)\\}";
  32. Pattern pattern = Pattern.compile(regex);
  33. Matcher matcher = pattern.matcher(locatorValue);
  34. while (matcher.find()) {
  35. String variableKey = matcher.group(1);
  36. if (context.containsKey(variableKey)) {
  37. locatorValue = locatorValue.replaceFirst(
  38. regex, context.get(variableKey));
  39. }
  40. else {
  41. throw new Exception(
  42. "Variable \"" + variableKey + "\" found in \"" +
  43. locator + "\" is not set");
  44. }
  45. }
  46. }
  47. return locatorValue;
  48. }
  49. public static String evaluateVariable(
  50. String value, Map<String, String> context) {
  51. String varValue = value;
  52. Matcher matcher = _variablePattern.matcher(varValue);
  53. while (matcher.find()) {
  54. String statement = matcher.group(1);
  55. Matcher statementMatcher = _variableStatementPattern.matcher(
  56. statement);
  57. if (statementMatcher.find()) {
  58. String operand = statementMatcher.group(1);
  59. if (!context.containsKey(operand)) {
  60. continue;
  61. }
  62. String[] arguments = StringUtil.split(
  63. statementMatcher.group(3), "'");
  64. List<String> argumentsList = new ArrayList<>();
  65. for (int i = 1; i < arguments.length; i++) {
  66. if ((i % 2) == 1) {
  67. argumentsList.add(arguments[i]);
  68. }
  69. }
  70. String method = statementMatcher.group(2);
  71. String operandValue = context.get(operand);
  72. String replaceRegex = "\\$\\{([^}]*?)\\}";
  73. String result = "";
  74. if (method.startsWith("getFirstNumber")) {
  75. result = operandValue.replaceFirst("\\D*(\\d*).*", "$1");
  76. }
  77. else if (method.startsWith("increment")) {
  78. int i = GetterUtil.getInteger(operandValue) + 1;
  79. result = String.valueOf(i);
  80. }
  81. else if (method.startsWith("length")) {
  82. result = String.valueOf(operandValue.length());
  83. }
  84. else if (method.startsWith("lowercase")) {
  85. result = StringUtil.toLowerCase(operandValue);
  86. }
  87. else if (method.startsWith("replace")) {
  88. result = StringUtil.replace(
  89. operandValue, argumentsList.get(0),
  90. argumentsList.get(1));
  91. }
  92. else if (method.startsWith("uppercase")) {
  93. result = StringUtil.toUpperCase(operandValue);
  94. }
  95. varValue = varValue.replaceFirst(replaceRegex, result);
  96. }
  97. else if (statement.equals("getIPAddress()")) {
  98. try {
  99. InetAddress inetAddress = InetAddress.getLocalHost();
  100. String result = inetAddress.getHostAddress();
  101. varValue = varValue.replaceFirst(
  102. "\\$\\{([^}]*?)\\}", result);
  103. }
  104. catch (Exception exception) {
  105. }
  106. }
  107. else {
  108. String varName = statement;
  109. if (!context.containsKey(varName)) {
  110. continue;
  111. }
  112. String replaceRegex = "\\$\\{([^}]*?)\\}";
  113. String result = context.get(varName);
  114. result = Matcher.quoteReplacement(result);
  115. varValue = varValue.replaceFirst(replaceRegex, result);
  116. }
  117. }
  118. varValue = StringUtil.replace(varValue, "\\$", "$");
  119. varValue = StringUtil.replace(varValue, "\\{", "{");
  120. varValue = StringUtil.replace(varValue, "\\}", "}");
  121. return varValue;
  122. }
  123. public static String getValue(String key) {
  124. return _instance._getValue(key);
  125. }
  126. public static boolean isVariableSet(
  127. String varName, Map<String, String> context) {
  128. if (!context.containsKey(varName)) {
  129. return false;
  130. }
  131. String varValue = context.get(varName);
  132. varValue = StringUtil.replace(varValue, "${line.separator}", "");
  133. if (varValue.contains("${") && varValue.contains("}")) {
  134. return false;
  135. }
  136. return true;
  137. }
  138. public static String replace(String text) {
  139. return _instance._replace(text);
  140. }
  141. public static String replaceRegularExpression(
  142. String content, String regex, int group) {
  143. Pattern pattern = Pattern.compile(regex);
  144. Matcher matcher = pattern.matcher(content);
  145. if (matcher.find()) {
  146. return matcher.group(group);
  147. }
  148. return StringPool.BLANK;
  149. }
  150. public static void setValue(String key, String value) {
  151. _instance._setValue(key, value);
  152. }
  153. private String _getValue(String key) {
  154. return _runtimeVariables.get(key);
  155. }
  156. private String _replace(String text) {
  157. if (_contextReplace == null) {
  158. return text;
  159. }
  160. return _contextReplace.replace(text);
  161. }
  162. private void _setValue(String key, String value) {
  163. _runtimeVariables.put(key, value);
  164. _contextReplace = new ContextReplace(_runtimeVariables);
  165. }
  166. private static final RuntimeVariables _instance = new RuntimeVariables();
  167. private static final Pattern _variablePattern = Pattern.compile(
  168. "\\$\\{([^}]*?)\\}");
  169. private static final Pattern _variableStatementPattern = Pattern.compile(
  170. "(.*)\\?(.*)\\(([^\\)]*?)\\)");
  171. private ContextReplace _contextReplace;
  172. private final Map<String, String> _runtimeVariables = new HashMap<>();
  173. }