All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.arquillian.ajocado.guard.RequestGuardInterceptor Maven / Gradle / Ivy

There is a newer version: 2.0.0.Alpha5
Show newest version
/**
 * JBoss, Home of Professional Open Source
 * Copyright 2011, Red Hat, Inc. and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.arquillian.ajocado.guard;

import static org.jboss.arquillian.ajocado.request.RequestType.HTTP;
import static org.jboss.arquillian.ajocado.request.RequestType.NONE;

import org.jboss.arquillian.ajocado.command.CommandContext;
import org.jboss.arquillian.ajocado.command.CommandInterceptor;
import org.jboss.arquillian.ajocado.command.CommandInterceptorException;
import org.jboss.arquillian.ajocado.framework.GrapheneConfiguration;
import org.jboss.arquillian.ajocado.framework.GrapheneConfiguration.TimeoutType;
import org.jboss.arquillian.ajocado.framework.GrapheneConfigurationContext;
import org.jboss.arquillian.ajocado.framework.GrapheneSelenium;
import org.jboss.arquillian.ajocado.framework.GrapheneSeleniumContext;
import org.jboss.arquillian.ajocado.request.RequestType;

import com.thoughtworks.selenium.SeleniumException;

/**
 * The Guard which guards that request what was expected to be done will be actually done.
 *
 * @author Lukas Fryc
 * @version $Revision$
 */
public class RequestGuardInterceptor implements CommandInterceptor {

    /**
     * Proxy to local selenium instance
     */
    private GrapheneSelenium selenium = GrapheneSeleniumContext.getProxy();

    private GrapheneConfiguration configuration = GrapheneConfigurationContext.getProxy();

    /**
     * The request what is expected to be done
     */
    private RequestType requestExpected;

    /**
     * Denotes that request can be interlayed by any other type of request
     */
    private boolean interlayed;

    /**
     * Constructs the guard with predefined expected RequestType
     *
     * @param requestExpected the RequestType which is expected to be done
     * @param interlayed indicates whenever the request can be interlayed by another request
     */
    public RequestGuardInterceptor(RequestType requestExpected, boolean interlayed) {
        super();
        this.requestExpected = requestExpected;
        this.interlayed = interlayed;
    }

    /**
     * Enfolds the command with guarding code to detect request type
     */
    @Override
    public void intercept(CommandContext ctx) throws CommandInterceptorException {
        final String command = ctx.getCommand();

        if (GuardedCommands.INTERACTIVE_COMMANDS.contains(command) || command.equals("getEval")) {
            doBeforeCommand();
        }
        ctx.invoke();
        if (GuardedCommands.INTERACTIVE_COMMANDS.contains(command) || command.equals("getEval")) {
            doAfterCommand();
        }
    }

    /**
     * Install the PageExtensions (which is used to figure out, what requestType was actually done) and clear the request type
     * to NONE state.
     */
    public void doBeforeCommand() {
        selenium.getPageExtensions().install();
        selenium.getRequestGuard().clearRequestDone();
    }

    /**
     * 

* Waits for changing the requestDone flag (or for timeout, when flag stay to be NONE). *

* *

* Then figure out what requestType was actually done and compare to expected one. *

* * @throws RequestGuardException when done requestType doesn't equal to expected one */ public void doAfterCommand() { final long end = System.currentTimeMillis() + configuration.getTimeout(TimeoutType.AJAX); RequestType lastRequestDone = NONE; while (System.currentTimeMillis() <= end) { try { selenium.getRequestGuard().waitForRequest(); } catch (SeleniumException e) { // ignore the timeout exception } RequestType requestDone = selenium.getRequestGuard().clearRequestDone(); if (requestDone == requestExpected) { lastRequestDone = requestDone; break; } else { if (interlayed) { if (requestDone == HTTP) { selenium.getPageExtensions().install(); selenium.getRequestGuard().clearRequestDone(); } if (requestDone != NONE) { lastRequestDone = requestDone; } continue; } else { lastRequestDone = requestDone; break; } } } if (lastRequestDone != requestExpected) { throw new RequestGuardException(requestExpected, lastRequestDone); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy