Package org.apache.tapestry.html

Source Code of org.apache.tapestry.html.FrameTest

// Copyright 2005 The Apache Software Foundation
//
// 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.apache.tapestry.html;

import org.apache.tapestry.BaseComponentTestCase;
import org.apache.tapestry.IBinding;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.engine.IEngineService;
import org.apache.tapestry.engine.ILink;
import org.apache.tapestry.spec.ComponentSpecification;
import org.testng.annotations.Test;

/**
* Tests for the {@link org.apache.tapestry.html.Frame} component.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
@Test
public class FrameTest extends BaseComponentTestCase
{

    public void testRender()
    {
        IEngineService pageService = newEngineService();
        ILink link = newLink();

        IMarkupWriter writer = newWriter();
        IRequestCycle cycle = newCycle();

        trainGetLink(pageService, cycle, false, "FramePage", link);

        writer.beginEmpty("frame");
       
        trainGetURL(link, "<LinkURL>");
       
        writer.attribute("src", "<LinkURL>");

        writer.closeTag();

        replay();

        Frame frame = newInstance(Frame.class, new Object[]
        { "pageService", pageService, "targetPage", "FramePage" });

        frame.renderComponent(writer, cycle);

        verify();
    }

    public void testRenderWithInformal()
    {
        IEngineService pageService = newEngineService();
        ILink link = newLink();

        IMarkupWriter writer = newWriter();
        IRequestCycle cycle = newCycle();
       
        trainGetLink(pageService, cycle, false, "FramePage", link);
       
        writer.beginEmpty("frame");
       
        trainGetURL(link, "<LinkURL>");
       
        writer.attribute("src", "<LinkURL>");
       
        IBinding binding = newBinding("informal");
       
        writer.attribute("class", "informal");

        writer.closeTag();

        replay();

        Frame frame = newInstance(Frame.class, new Object[]
        { "pageService", pageService, "targetPage", "FramePage", "specification",
                new ComponentSpecification() });
        frame.setBinding("class", binding);

        frame.renderComponent(writer, cycle);

        verify();
    }
}
TOP

Related Classes of org.apache.tapestry.html.FrameTest

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.