Package org.springframework.springfaces.traveladvisor.integrationtest

Source Code of org.springframework.springfaces.traveladvisor.integrationtest.TemplateIT

/*
* Copyright 2010-2012 the original author or authors.
*
* 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 org.springframework.springfaces.traveladvisor.integrationtest;

import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;

import org.junit.Rule;
import org.junit.Test;
import org.springframework.springfaces.integrationtest.selenium.rule.Pages;
import org.springframework.springfaces.traveladvisor.integrationtest.page.template.ComponentInfoPage;
import org.springframework.springfaces.traveladvisor.integrationtest.page.template.DecorateAllPage;
import org.springframework.springfaces.traveladvisor.integrationtest.rule.ShowcasePages;

public class TemplateIT {

  @Rule
  public Pages pages = new ShowcasePages();

  @Test
  public void shouldHaveComponentInfo() throws Exception {
    ComponentInfoPage page = this.pages.get(ComponentInfoPage.class);
    assertThat(page.getDetails(), is("Given Name form:name true true name false"));
    page = page.clickSubmitButton();
    assertThat(page.getDetails(), is("Given Name form:name false true name false"));
  }

  @Test
  public void shouldDecorateAll() throws Exception {
    DecorateAllPage page = this.pages.get(DecorateAllPage.class);
    StringBuffer expected = new StringBuffer();
    expected.append("beforeinsert1after");
    expected.append("globaldefinevalue");
    expected.append("globalparamvalue");
    expected.append("localdefinevalue1");
    expected.append("localparamvalue1");
    expected.append("beforeinsert1after");
    expected.append("globaldefinevalue");
    expected.append("globalparamvalue");
    expected.append("localdefinevalue2");
    expected.append("localparamvalue2");
    assertThat(page.getBodyText().replaceAll("\n", ""), is(expected.toString()));
  }
}
TOP

Related Classes of org.springframework.springfaces.traveladvisor.integrationtest.TemplateIT

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.