Package org.apache.wink.server.serviceability

Source Code of org.apache.wink.server.serviceability.WarnProviderDoesNotImplementInterfaceTest$Provider1

/*
* 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.wink.server.serviceability;

import java.util.List;
import java.util.logging.Level;
import java.util.logging.LogRecord;
import java.util.logging.Logger;

import javax.ws.rs.ext.Provider;

import org.apache.wink.logging.InMemoryHandler;
import org.apache.wink.server.internal.servlet.MockServletInvocationTest;

public class WarnProviderDoesNotImplementInterfaceTest extends MockServletInvocationTest {

    @Override
    protected Class<?>[] getClasses() {
        return new Class<?>[] {Provider1.class};
    }

    @Provider
    public static class Provider1 {

    }

    private InMemoryHandler handler;

    private Logger          winkLogger = Logger.getLogger("org.apache.wink");

    @Override
    protected void setUp() throws Exception {
        handler = new InMemoryHandler();
        handler.setLevel(Level.INFO);

        winkLogger.setLevel(Level.INFO);
        winkLogger.addHandler(handler);
        super.setUp();
    }

    @Override
    protected void tearDown() throws Exception {
        winkLogger.removeHandler(handler);
        winkLogger.setLevel(Level.INFO);
        super.tearDown();
    }

    public void testLogResource() throws Exception {
        List<LogRecord> records = handler.getRecords();

        assertEquals(Level.WARNING, records.get(1).getLevel());
        assertEquals("The @javax.ws.rs.ext.Provider annotated class class org.apache.wink.server.serviceability.WarnProviderDoesNotImplementInterfaceTest$Provider1 does not implement a recognized Provider interface. The runtime is ignoring this class. Verify that the class implements javax.ws.rs.ext.ContextResolver, javax.ws.rs.ext.ExceptionMapper, javax.ws.rs.ext.MessageBodyReader, or javax.ws.rs.ext.MessageBodyWriter.",
                     records.get(1).getMessage());

        assertEquals(Level.INFO, records.get(3).getLevel());
        assertEquals("There are no custom JAX-RS providers defined in the application.", records.get(3)
            .getMessage());

        assertEquals(4, records.size());
    }
}
TOP

Related Classes of org.apache.wink.server.serviceability.WarnProviderDoesNotImplementInterfaceTest$Provider1

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.