LinkTest.java

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.struts2.views.java.simple;

import org.apache.struts2.components.Link;
import org.apache.struts2.components.UIBean;

public class LinkTest extends AbstractTest {

    private Link tag;

    public void testRenderLinkTag() {
        tag.setHref("testhref");
        tag.setHreflang("test");
        tag.setRel("module");
        tag.setMedia("foo");
        tag.setReferrerpolicy("test");
        tag.setSizes("foo");
        tag.setCrossorigin("same-origin");
        tag.setType("anonymous");
        tag.setAs("test");
        tag.setDisabled("true");
        tag.setTitle("test");

        tag.evaluateParams();
        map.putAll(tag.getAttributes());
        theme.renderTag(getTagName(), context);
        String output = writer.getBuffer().toString();

        assertTrue("Incorrect href attribute for link tag", output.contains(s("href='testhref'")));
        assertTrue("Incorrect hreflang attribute for link tag", output.contains(s("hreflang='test'")));
        assertTrue("Incorrect rel attribute for link tag", output.contains(s("rel='module'")));
        assertTrue("Incorrect media attribute for link tag", output.contains(s("media='foo'")));
        assertTrue("Incorrect referrerpolicy attribute for link tag", output.contains(s("referrerpolicy='test'")));
        assertTrue("Incorrect sizes attribute for link tag", output.contains(s("sizes='foo'")));
        assertTrue("Incorrect crossorigin attribute for link tag", output.contains(s("crossorigin='same-origin'")));
        assertTrue("Incorrect type attribute for link tag", output.contains(s("type='anonymous'")));
        assertTrue("Incorrect as attribute for link tag", output.contains(s("as='test'")));
        assertFalse("Non-existent disabled attribute for link tag", output.contains(s("disabled='disabled'")));
        assertTrue("Incorrect title attribute for link tag", output.contains(s("title='test'")));
        assertTrue("Incorrect nonce attribute for link tag", output.contains(s("nonce='" + NONCE_VAL + "'")));
    }

    public void testRenderLinkTagAsStylesheet() {
        tag.setHref("testhref");
        tag.setHreflang("test");
        tag.setRel("stylesheet");
        tag.setMedia("foo");
        tag.setReferrerpolicy("test");
        tag.setSizes("foo");
        tag.setCrossorigin("same-origin");
        tag.setType("anonymous");
        tag.setAs("test");
        tag.setDisabled("true");
        tag.setTitle("test");

        tag.evaluateParams();
        map.putAll(tag.getAttributes());
        theme.renderTag(getTagName(), context);
        String output = writer.getBuffer().toString();

        assertTrue("Incorrect href attribute for link tag", output.contains(s("href='testhref'")));
        assertTrue("Incorrect hreflang attribute for link tag", output.contains(s("hreflang='test'")));
        assertTrue("Incorrect rel attribute for link tag", output.contains(s("rel='stylesheet'")));
        assertTrue("Incorrect media attribute for link tag", output.contains(s("media='foo'")));
        assertTrue("Incorrect referrerpolicy attribute for link tag", output.contains(s("referrerpolicy='test'")));
        assertTrue("Incorrect sizes attribute for link tag", output.contains(s("sizes='foo'")));
        assertTrue("Incorrect crossorigin attribute for link tag", output.contains(s("crossorigin='same-origin'")));
        assertTrue("Incorrect type attribute for link tag", output.contains(s("type='anonymous'")));
        assertTrue("Incorrect as attribute for link tag", output.contains(s("as='test'")));
        assertTrue("Incorrect disabled attribute for link tag", output.contains(s("disabled='disabled'")));
        assertTrue("Incorrect title attribute for link tag", output.contains(s("title='test'")));
        assertTrue("Incorrect nonce attribute for link tag", output.contains(s("nonce='" + NONCE_VAL + "'")));
    }

    @Override
    protected UIBean getUIBean() throws Exception {
        return tag;
    }

    @Override
    protected String getTagName() {
        return "link";
    }

    @Override
    protected void setUp() throws Exception {
        super.setUp();
        this.tag = new Link(stack, request, response);
    }
}