org.nuxeo.ecm.tokenauth.TestAnonymousTokenAuthenticationServlet.java Source code

Java tutorial

Introduction

Here is the source code for org.nuxeo.ecm.tokenauth.TestAnonymousTokenAuthenticationServlet.java

Source

/*
 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others.
 *
 * 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.
 *
 * Contributors:
 *     Antoine Taillefer
 */
package org.nuxeo.ecm.tokenauth;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

import javax.inject.Inject;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpMethod;
import org.apache.commons.httpclient.methods.GetMethod;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.nuxeo.ecm.tokenauth.service.TokenAuthenticationService;
import org.nuxeo.ecm.tokenauth.servlet.TokenAuthenticationServlet;
import org.nuxeo.runtime.test.runner.Deploy;
import org.nuxeo.runtime.test.runner.Features;
import org.nuxeo.runtime.test.runner.FeaturesRunner;
import org.nuxeo.runtime.test.runner.RuntimeHarness;

/**
 * Tests the {@link TokenAuthenticationServlet} in the case of an anonymous user.
 *
 * @author Antoine Taillefer (ataillefer@nuxeo.com)
 * @since 7.2
 */
@RunWith(FeaturesRunner.class)
@Features(TokenAuthenticationJettyFeature.class)
@Deploy("org.nuxeo.ecm.platform.login.token.test:OSGI-INF/test-token-authentication-anonymous-contrib.xml")
public class TestAnonymousTokenAuthenticationServlet {

    @Inject
    protected RuntimeHarness harness;

    @Inject
    protected TokenAuthenticationService tokenAuthenticationService;

    @Test
    public void testServletAsAnonymous() throws Exception {

        HttpClient httpClient = new HttpClient();

        HttpMethod getMethod = null;
        try {
            // ------------ Test anonymous user not allowed ----------------
            getMethod = new GetMethod(
                    "http://localhost:18080/authentication/token?applicationName=myFavoriteApp&deviceId=dead-beaf-cafe-babe&permission=rw");
            int status = httpClient.executeMethod(getMethod);
            assertEquals(401, status);

            // ------------ Test anonymous user allowed ----------------
            harness.deployContrib("org.nuxeo.ecm.platform.login.token.test",
                    "OSGI-INF/test-token-authentication-allow-anonymous-token-contrib.xml");

            status = httpClient.executeMethod(getMethod);
            assertEquals(201, status);
            String token = getMethod.getResponseBodyAsString();
            assertNotNull(token);
            assertNotNull(tokenAuthenticationService.getUserName(token));
            assertEquals(1, tokenAuthenticationService.getTokenBindings("Guest").size());

            harness.undeployContrib("org.nuxeo.ecm.platform.login.token.test",
                    "OSGI-INF/test-token-authentication-allow-anonymous-token-contrib.xml");
        } finally {
            getMethod.releaseConnection();
        }
    }

}