Package net.mindengine.galen.runner

Source Code of net.mindengine.galen.runner.GalenBasicTestRunner

/*******************************************************************************
* 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.runner;

import java.util.List;

import net.mindengine.galen.browser.Browser;
import net.mindengine.galen.reports.TestReport;
import net.mindengine.galen.suite.GalenPageTest;
import net.mindengine.galen.tests.GalenBasicTest;
import net.mindengine.galen.validation.ValidationListener;


public class GalenBasicTestRunner {

    private TestListener testListener;
    private ValidationListener validationListener;
   
    public GalenBasicTestRunner() {
    }

    public GalenBasicTestRunner withSuiteListener(TestListener suiteListener) {
        this.setSuiteListener(suiteListener);
        return this;
    }

    public TestListener getSuiteListener() {
        return testListener;
    }

    public void setSuiteListener(TestListener suiteListener) {
        this.testListener = suiteListener;
    }

   
    public TestReport runTest(TestReport report, GalenBasicTest test) throws Exception {
        if (test == null) {
            throw new IllegalArgumentException("Test can not be null");
        }
       
        List<GalenPageTest> pageTests = test.getPageTests();
       
        GalenPageRunner pageRunner = new GalenPageRunner(report);
        pageRunner.setValidationListener(validationListener);
       
        for (GalenPageTest pageTest : pageTests) {
            report.gotoRoot();
            report.sectionStart(pageTest.getTitle());
           
            Browser browser = pageTest.getBrowserFactory().openBrowser();

            try {
                pageRunner.run(browser, pageTest);
            }
            catch (Exception ex) {
                ex.printStackTrace();
                report.error(ex);
            }
           
            browser.quit();
            report.sectionEnd();
        }
       
        return report;
    }

    public ValidationListener getValidationListener() {
        return validationListener;
    }

    public void setValidationListener(ValidationListener validationListener) {
        this.validationListener = validationListener;
    }


}
TOP

Related Classes of net.mindengine.galen.runner.GalenBasicTestRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.