Package org.springframework.security.taglibs.csrf

Source Code of org.springframework.security.taglibs.csrf.CsrfMetaTagsTagTests

package org.springframework.security.taglibs.csrf;

import org.junit.Before;
import org.junit.Test;
import org.springframework.security.web.csrf.CsrfToken;
import org.springframework.security.web.csrf.DefaultCsrfToken;

import static org.junit.Assert.*;

/**
* @author Nick Williams
*/
public class CsrfMetaTagsTagTests {

    public CsrfMetaTagsTag tag;

    @Before
    public void setUp() {
        this.tag = new CsrfMetaTagsTag();
    }

    @Test
    public void handleTokenRendersTags() {
        CsrfToken token = new DefaultCsrfToken("X-Csrf-Token", "_csrf", "abc123def456ghi789");

        String value = this.tag.handleToken(token);

        assertNotNull("The returned value should not be null.", value);
        assertEquals("The output is not correct.",
                "<meta name=\"_csrf_parameter\" content=\"_csrf\" />" +
                        "<meta name=\"_csrf_header\" content=\"X-Csrf-Token\" />" +
                        "<meta name=\"_csrf\" content=\"abc123def456ghi789\" />",
                value);
    }

    @Test
    public void handleTokenRendersTagsDifferentToken() {
        CsrfToken token = new DefaultCsrfToken("csrfHeader", "csrfParameter", "fooBarBazQux");

        String value = this.tag.handleToken(token);

        assertNotNull("The returned value should not be null.", value);
        assertEquals("The output is not correct.",
                "<meta name=\"_csrf_parameter\" content=\"csrfParameter\" />" +
                        "<meta name=\"_csrf_header\" content=\"csrfHeader\" />" +
                        "<meta name=\"_csrf\" content=\"fooBarBazQux\" />",
                value);
    }
}
TOP

Related Classes of org.springframework.security.taglibs.csrf.CsrfMetaTagsTagTests

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.