Package com.nimbusds.jwt

Source Code of com.nimbusds.jwt.PlainJWTTest

package com.nimbusds.jwt;


import java.util.Date;

import junit.framework.TestCase;

import com.nimbusds.jose.Algorithm;
import com.nimbusds.jose.util.Base64URL;


/**
* Tests plain JWT object. Uses test vectors from JWT spec.
*
* @author Vladimir Dzhuvinov
* @version $version$ (2013-08-01)
*/
public class PlainJWTTest extends TestCase {


  public void testBase64URLConstructor()
    throws Exception {

    // {"alg":"none"}
    Base64URL part1 = new Base64URL("eyJhbGciOiJub25lIn0");

    // {"iss":"joe","exp":1300819380,"http://example.com/is_root":true}
    Base64URL part2 = new Base64URL("eyJpc3MiOiJqb2UiLA0KICJleHAiOjEzMDA4MTkzODAsDQogImh0dHA6Ly9leGFt" +
        "cGxlLmNvbS9pc19yb290Ijp0cnVlfQ");

    PlainJWT jwt = new PlainJWT(part1, part2);

    assertEquals(Algorithm.NONE, jwt.getHeader().getAlgorithm());
    assertNull(jwt.getHeader().getType());
    assertNull(jwt.getHeader().getContentType());

    ReadOnlyJWTClaimsSet cs = jwt.getJWTClaimsSet();

    assertEquals("joe", cs.getIssuer());
    assertEquals(new Date(1300819380l * 1000), cs.getExpirationTime());
    assertTrue((Boolean)cs.getCustomClaim("http://example.com/is_root"));
  }


  public void testParse()
    throws Exception {

    String s = "eyJhbGciOiJub25lIn0" +
        "." +
        "eyJpc3MiOiJqb2UiLA0KICJleHAiOjEzMDA4MTkzODAsDQogImh0dHA6Ly9leGFt" +
        "cGxlLmNvbS9pc19yb290Ijp0cnVlfQ" +
        ".";

    PlainJWT jwt = PlainJWT.parse(s);

    assertEquals(Algorithm.NONE, jwt.getHeader().getAlgorithm());
    assertNull(jwt.getHeader().getType());
    assertNull(jwt.getHeader().getContentType());

    ReadOnlyJWTClaimsSet cs = jwt.getJWTClaimsSet();

    assertEquals("joe", cs.getIssuer());
    assertEquals(new Date(1300819380l * 1000), cs.getExpirationTime());
    assertTrue((Boolean)cs.getCustomClaim("http://example.com/is_root"));
  }
}
TOP

Related Classes of com.nimbusds.jwt.PlainJWTTest

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.