org.fcrepo.kernel.impl.identifiers.HttpPidMinterTest.java Source code

Java tutorial

Introduction

Here is the source code for org.fcrepo.kernel.impl.identifiers.HttpPidMinterTest.java

Source

/**
 * Copyright 2014 DuraSpace, Inc.
 *
 * 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.fcrepo.kernel.impl.identifiers;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.Matchers.isA;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import static org.mockito.Mockito.verify;

import org.junit.Test;

import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.entity.ByteArrayEntity;
import org.apache.http.client.methods.HttpUriRequest;

/**
 * @author escowles
 * @since 2014-05-15
 */
public class HttpPidMinterTest {

    @Test
    public void testMintPid() throws Exception {
        final HttpPidMinter testMinter = new HttpPidMinter("http://localhost/minter", "POST", "", "", ".*/", "");

        final HttpClient mockClient = mock(HttpClient.class);
        final HttpResponse mockResponse = mock(HttpResponse.class);
        final ByteArrayEntity entity = new ByteArrayEntity("/foo/bar/baz".getBytes());
        testMinter.client = mockClient;

        when(mockClient.execute(isA(HttpUriRequest.class))).thenReturn(mockResponse);
        when(mockResponse.getEntity()).thenReturn(entity);

        final String pid = testMinter.mintPid();
        verify(mockClient).execute(isA(HttpUriRequest.class));
        assertEquals(pid, "baz");
    }

    @Test
    public void testMintPidXPath() throws Exception {
        final HttpPidMinter testMinter = new HttpPidMinter("http://localhost/minter", "POST", "", "", "",
                "/test/id");

        final HttpClient mockClient = mock(HttpClient.class);
        final HttpResponse mockResponse = mock(HttpResponse.class);
        final ByteArrayEntity entity = new ByteArrayEntity("<test><id>baz</id></test>".getBytes());
        testMinter.client = mockClient;

        when(mockClient.execute(isA(HttpUriRequest.class))).thenReturn(mockResponse);
        when(mockResponse.getEntity()).thenReturn(entity);

        final String pid = testMinter.mintPid();
        verify(mockClient).execute(isA(HttpUriRequest.class));
        assertEquals(pid, "baz");
    }

    @Test
    public void testHttpClient() throws Exception {
        final HttpPidMinter testMinter = new HttpPidMinter("http://localhost/minter", "POST", "user", "pass", "",
                "");
        final HttpClient client = testMinter.buildClient();
        assertNotNull(client);
    }

}