net.mindengine.galen.parser.GalenPageActionReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of galen Show documentation
Show all versions of galen Show documentation
A library for layout testing of websites
/*******************************************************************************
* Copyright 2014 Ivan Shubin http://mindengine.net
*
* 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 net.mindengine.galen.parser;
import static net.mindengine.galen.suite.reader.Line.UNKNOWN_LINE;
import java.awt.Dimension;
import java.util.LinkedList;
import java.util.List;
import net.mindengine.galen.specs.page.Locator;
import net.mindengine.galen.suite.GalenPageAction;
import net.mindengine.galen.suite.actions.GalenPageActionCheck;
import net.mindengine.galen.suite.actions.GalenPageActionCookie;
import net.mindengine.galen.suite.actions.GalenPageActionInjectJavascript;
import net.mindengine.galen.suite.actions.GalenPageActionOpen;
import net.mindengine.galen.suite.actions.GalenPageActionProperties;
import net.mindengine.galen.suite.actions.GalenPageActionResize;
import net.mindengine.galen.suite.actions.GalenPageActionRunJavascript;
import net.mindengine.galen.suite.actions.GalenPageActionWait;
import net.mindengine.galen.suite.actions.GalenPageActionWait.UntilType;
import net.mindengine.galen.utils.GalenUtils;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.Options;
import org.apache.commons.cli.PosixParser;
public class GalenPageActionReader {
public static GalenPageAction readFrom(String actionText) {
String[] args = net.mindengine.galen.parser.CommandLineParser.parseCommandLine(actionText);
if (args.length < 2) {
throw new SyntaxException(UNKNOWN_LINE, "Cannot parse: " + actionText);
}
if (args[0].equals("inject")) {
return injectActionFrom(args);
}
else if (args[0].equals("run")) {
return runActionFrom(args);
}
else if (args[0].equals("check")) {
return checkActionFrom(args, actionText);
}
else if (args[0].equals("cookie")) {
return cookieActionFrom(args);
}
else if (args[0].equals("open")) {
return openActionFrom(args);
}
else if (args[0].equals("resize")) {
return resizeActionFrom(args);
}
else if (args[0].equals("wait")) {
return waitActionFrom(args);
}
else if (args[0].equals("properties")) {
return propertiesActionFrom(args);
}
else throw new SyntaxException(UNKNOWN_LINE, "Unknown action: " + args[0]);
}
private static GalenPageAction resizeActionFrom(String[] args) {
Dimension size = GalenUtils.readSize(args[1]);
return new GalenPageActionResize(size.width, size.height);
}
private static GalenPageAction propertiesActionFrom(String[] args) {
List files = new LinkedList();
for (int i = 1; i < args.length; i++) {
files.add(args[i]);
}
return new GalenPageActionProperties().withFiles(files);
}
private static GalenPageAction openActionFrom(String[] args) {
return new GalenPageActionOpen(args[1]);
}
private static GalenPageAction cookieActionFrom(String[] args) {
GalenPageActionCookie action = new GalenPageActionCookie();
List cookies = new LinkedList();
for(int i = 1; i specs = new LinkedList();
for (int i=1; i < leftoverArgs.length; i++) {
specs.add(leftoverArgs[i]);
}
return new GalenPageActionCheck()
.withSpecs(specs)
.withIncludedTags(readTags(cmd.getOptionValue("i")))
.withExcludedTags(readTags(cmd.getOptionValue("e")));
}
catch (Exception e) {
throw new SyntaxException(UNKNOWN_LINE, "Couldn't parse: " + originalText, e);
}
}
private static List readTags(String tagsCommaSeparated) {
if (tagsCommaSeparated != null) {
String tagsArray[] = tagsCommaSeparated.split(",");
List tags = new LinkedList();
for (String tag : tagsArray) {
tag = tag.trim();
if (!tag.isEmpty()) {
tags.add(tag);
}
}
return tags;
}
return null;
}
private static GalenPageAction runActionFrom(String[] args) {
String jsonArguments = null;
if (args.length > 2) {
jsonArguments = args[2];
}
return new GalenPageActionRunJavascript(args[1])
.withJsonArguments(jsonArguments);
}
private static GalenPageAction waitActionFrom(String[] args) {
if (args.length < 2) {
throw new SyntaxException("the timeout is not specified");
}
GalenPageActionWait wait = new GalenPageActionWait();
wait.setTimeout(parseTimeout(args[1]));
if (args.length > 2) {
parseUntilConditions(wait, args);
}
return wait;
}
private static void parseUntilConditions(GalenPageActionWait wait, String[] args) {
if (args[2].equals("until")) {
if (args.length > 3) {
List untilElements = new LinkedList();
UntilType currentType = null;
for (int i = 3; i < args.length; i++) {
UntilType type = UntilType.parseNonStrict(args[i]);
if (type != null) {
currentType = type;
}
else {
if (currentType == null) {
throw new SyntaxException("You have to specify one of the following checks: visible, hidden, exist, gone");
}
untilElements.add(new GalenPageActionWait.Until(currentType, Locator.parse(args[i])));
}
}
wait.setUntilElements(untilElements);
}
else throw new SyntaxException("You have to provide locators");
}
else throw new SyntaxException(String.format("Expected \"until\" but got \"%s\"", args[2]));
}
private static int parseTimeout(String timeoutText) {
for (int i = 0; i < timeoutText.length(); i++) {
if (!isNumber(timeoutText.charAt(i))) {
int number = Integer.parseInt(timeoutText.substring(0, i));
String unitPart = timeoutText.substring(i);
if (unitPart.equals("s")) {
return 1000 * number;
}
else if (unitPart.equals("ms")) {
return number;
}
else if (unitPart.equals("m")) {
return 60000 * number;
}
else throw new SyntaxException("Unkown time unit: " + unitPart);
}
}
return Integer.parseInt(timeoutText);
}
private static boolean isNumber(char symbol) {
int code = (int)symbol;
return code > 47 && code < 58;
}
private static GalenPageActionInjectJavascript injectActionFrom(String[] args) {
return new GalenPageActionInjectJavascript(args[1]);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy