Package org.apache.tapestry.annotations

Source Code of org.apache.tapestry.annotations.TestInjectAssetAnnotationWorker

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

import static org.easymock.EasyMock.eq;
import static org.easymock.EasyMock.expect;
import static org.easymock.EasyMock.isA;

import java.lang.reflect.Method;
import java.lang.reflect.Modifier;

import org.apache.hivemind.ApplicationRuntimeException;
import org.apache.hivemind.Location;
import org.apache.hivemind.impl.DefaultClassResolver;
import org.apache.hivemind.service.MethodSignature;
import org.apache.tapestry.IAsset;
import org.apache.tapestry.enhance.EnhancementOperation;
import org.apache.tapestry.enhance.InjectAssetWorker;
import org.apache.tapestry.spec.IAssetSpecification;
import org.apache.tapestry.spec.IComponentSpecification;
import org.testng.annotations.Test;

/**
* Tests for {@link org.apache.tapestry.annotations.InjectAssetAnnotationWorker}.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
@Test
public class TestInjectAssetAnnotationWorker extends BaseAnnotationTestCase
{
    public void test_Default()
    {
        InjectAssetAnnotationWorker worker = new InjectAssetAnnotationWorker();

        assertNotNull(worker._delegate);
    }

    public void test_Delegation()
    {
        Location l = newLocation();
        EnhancementOperation op = newOp();
        IComponentSpecification spec = newSpec();
        InjectAssetWorker delegate = new InjectAssetWorker();
        IAssetSpecification asset = newMock(IAssetSpecification.class);
       
        Method m = findMethod(AnnotatedPage.class, "getStylesheetAsset");
       
        expect(spec.getAsset("stylesheet")).andReturn(asset);
       
        expect(op.getPropertyType("stylesheetAsset")).andReturn(IAsset.class);
       
        op.claimReadonlyProperty("stylesheetAsset");
       
        expect(op.getAccessorMethodName("stylesheetAsset")).andReturn("getStylesheetAsset");
       
        op.addMethod(eq(Modifier.PUBLIC), isA(MethodSignature.class),
                eq("return getAsset(\"stylesheet\");"), eq(l));
       
        InjectAssetAnnotationWorker worker = new InjectAssetAnnotationWorker(delegate);
        worker.setClassResolver(new DefaultClassResolver());
       
        replay();

        worker.performEnhancement(op, spec, m, l);

        verify();
    }
   
    public void test_Unknown_Asset()
    {
        Location l = newLocation();
        EnhancementOperation op = newOp();
        IComponentSpecification spec = newSpec();
        InjectAssetWorker delegate = new InjectAssetWorker();
       
        Method m = findMethod(AnnotatedPage.class, "getUnknownAsset");
       
        expect(spec.getAsset("homageDeFred")).andReturn(null);
       
        InjectAssetAnnotationWorker worker = new InjectAssetAnnotationWorker(delegate);
        worker.setClassResolver(new DefaultClassResolver());
       
        replay();
       
        try
        {
            worker.performEnhancement(op, spec, m, l);
            unreachable();
        }
        catch (ApplicationRuntimeException ex)
        {
            assertTrue(ex.getMessage().startsWith("No asset has been mapped with a name of 'homageDeFred': "));
        }

        verify();
    }
}
TOP

Related Classes of org.apache.tapestry.annotations.TestInjectAssetAnnotationWorker

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.