Package org.apache.tapestry.components

Source Code of org.apache.tapestry.components.TestAny

// 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.components;

import org.apache.hivemind.ApplicationRuntimeException;
import org.apache.hivemind.Location;
import org.apache.tapestry.IBinding;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRender;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.spec.ComponentSpecification;

/**
* Tests for the {@link org.apache.tapestry.components.Any} component.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
public class TestAny extends BaseComponentTestCase
{
    public void testElementNull()
    {
        IMarkupWriter writer = newWriter();
        IRequestCycle cycle = newCycle();
        Location l = newLocation();

        replayControls();

        Any any = (Any) newInstance(Any.class, new Object[]
        { "location", l });

        try
        {
            any.render(writer, cycle);
            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertEquals(ComponentMessages.anyElementNotDefined(), ex.getMessage());
            assertSame(l, ex.getLocation());
        }

        verifyControls();
    }

    public void testRender()
    {
        IMarkupWriter writer = newWriter();
        IRequestCycle cycle = newCycle(false);
        IRender body = newRender();

        writer.begin("span");

        body.render(writer, cycle);

        writer.end("span");

        replayControls();

        Any any = (Any) newInstance(Any.class, new Object[]
        { "element", "span" });

        any.addBody(body);

        any.render(writer, cycle);

        verifyControls();
    }

    public void testRenderWithInformalParameters()
    {
        IMarkupWriter writer = newWriter();
        IRequestCycle cycle = newCycle(false);
        IRender body = newRender();
        IBinding binding = newBinding("fred");

        writer.begin("span");
        writer.attribute("class", "fred");

        body.render(writer, cycle);

        writer.end("span");

        replayControls();

        Any any = (Any) newInstance(Any.class, new Object[]
        { "element", "span", "specification", new ComponentSpecification() });

        any.addBody(body);
        any.setBinding("class", binding);

        any.render(writer, cycle);

        verifyControls();
    }

    public void testRewind()
    {
        IMarkupWriter writer = newWriter();
        IRequestCycle cycle = newCycle(true);
        IRender body = newRender();

        body.render(writer, cycle);

        replayControls();

        Any any = (Any) newInstance(Any.class, new Object[]
        { "element", "span" });

        any.addBody(body);

        any.render(writer, cycle);

        verifyControls();
    }
}
TOP

Related Classes of org.apache.tapestry.components.TestAny

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.