/*******************************************************************************
* 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.validation.specs;
import java.io.File;
import java.io.IOException;
import java.util.List;
import net.mindengine.galen.page.Page;
import net.mindengine.galen.page.PageElement;
import net.mindengine.galen.page.selenium.SeleniumPage;
import net.mindengine.galen.parser.SyntaxException;
import net.mindengine.galen.specs.SpecComponent;
import net.mindengine.galen.specs.page.Locator;
import net.mindengine.galen.specs.reader.page.PageSpec;
import net.mindengine.galen.specs.reader.page.PageSpecReader;
import net.mindengine.galen.validation.PageValidation;
import net.mindengine.galen.validation.SectionValidation;
import net.mindengine.galen.validation.SpecValidation;
import net.mindengine.galen.validation.ValidationError;
import net.mindengine.galen.validation.ValidationErrorException;
import net.mindengine.galen.validation.ValidationListener;
public class SpecValidationComponent extends SpecValidation<SpecComponent> {
@Override
public void check(PageValidation pageValidation, String objectName, SpecComponent spec) throws ValidationErrorException {
PageElement mainObject = pageValidation.findPageElement(objectName);
checkAvailability(mainObject, objectName);
Page page = pageValidation.getPage();
Locator mainObjectLocator = pageValidation.getPageSpec().getObjectLocator(objectName);
Page objectContextPage = page.createObjectContextPage(mainObjectLocator);
ValidationListener validationListener = pageValidation.getValidationListener();
PageSpecReader pageSpecReader = new PageSpecReader(spec.getProperties(), pageValidation.getBrowser());
PageSpec componentPageSpec;
try {
componentPageSpec = pageSpecReader.read(spec.getSpecPath());
} catch (IOException e) {
throw new RuntimeException(e.getMessage(), e);
}
SectionValidation sectionValidation = new SectionValidation(componentPageSpec.findSections(pageValidation.getSectionFilter()),
new PageValidation(pageValidation.getBrowser(), objectContextPage, componentPageSpec, validationListener, pageValidation.getSectionFilter()),
validationListener);
List<ValidationError> errors = sectionValidation.check();
if (errors != null && errors.size() > 0) {
throw new ValidationErrorException("Child component spec contains " + errors.size() + " errors");
}
}
}