Package com.sun.jini.test.spec.jeri.basicinvocationdispatcher

Source Code of com.sun.jini.test.spec.jeri.basicinvocationdispatcher.Dispatch_SecondRequestByteTest

/*
* 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 com.sun.jini.test.spec.jeri.basicinvocationdispatcher;

import java.util.logging.Level;

import com.sun.jini.test.spec.jeri.util.FakeInboundRequest;

import net.jini.io.context.IntegrityEnforcement;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.util.ArrayList;
import java.util.logging.Level;

/**
* <pre>
* Purpose
*   This test verifies the behavior of the BasicInvocationDispatcher.dispatch
*   method for different values of the second byte sent on the request stream.
*
* Test Cases
*   This test iterates over a set of bytes.  Each byte
*   denotes one test case and is defined by the variable:
*      byte secondRequestByte
*
* Infrastructure
*   This test requires the following infrastructure:
*     1) FakeRemoteImpl
*          -implements Remote
*     2) FakeInboundRequest
*          -constructor takes four parameters (first 2 bytes, method hash,
*           and arguments) and writes them to request stream
*          -abort method does nothing
*          -checkConstraints does nothing
*          -checkPermissions does nothing
*          -populateContext does nothing
*          -getClientHost returns local host name
*          -getRequestInputStream and getResponseOutputStream methods
*           return streams created in constructor
*     3) FakeServerCapabilities
*          -checkConstraints method returns InvocationConstraints.EMPTY
*
* Actions
*   The test performs the following steps:
*     1) construct a FakeRemoteImpl and FakeServerCapabilities
*     2) construct a BasicInvocationDispatcher, passing in the Collection of
*        FakeRemoteImpl methods, FakeServerCapabilities,
*        and null MethodConstraints and permission Class
*     3) construct an empty FakeInboundRequest
*     4) call BasicInvocationDispatcher.dispatch with FakeRemoteImpl,
*        FakeInboundRequest, and an empty context
*     5) assert FakeInboundRequest response stream returns EOF
*     6) assert FakeInboundRequest abort method was called
*     7) for each test case the test performs the following steps:
*          1) construct a FakeInboundRequest, passing in secondRequestByte
*          2) call BasicInvocationDispatcher.dispatch with FakeRemoteImpl,
*             FakeInboundRequest, and an empty context
*          3) assert IntegrityEnforcement object is added to Collection
*             passed to dispatch method
*          4) assertion (secondRequestByte == 0x00 ?
*                            IntegrityEnforcement.integrityEnforced() :
*                            ! IntegrityEnforcement.integrityEnforced() )
* </pre>
*/
public class Dispatch_SecondRequestByteTest extends AbstractDispatcherTest {

    // test cases
    byte[] cases = {Byte.MIN_VALUE, -3, -2, -1, 0, 1, 2, 3, Byte.MAX_VALUE};

    // inherit javadoc
    public void run() throws Exception {
        logger.log(Level.FINE,"=================================");
        logger.log(Level.FINE,"test case " + (counter++)
            + ": exception reading second byte");
        logger.log(Level.FINE,"");

        // initialize FakeInboundRequest
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        out.write(0x00); //protocol version
        out.close();
        request = new FakeInboundRequest(
            new ByteArrayInputStream(out.toByteArray()));

        // call dispatch and verify the proper result
        dispatcher.dispatch(impl,request,context);
        response = request.getResponseStream();
        assertion(response.read() == -1);
        assertion(request.isAbortCalled());

        // iterate over test cases
        for (int i = 0; i < cases.length; i++) {
            logger.log(Level.FINE,"=================================");
            byte secondRequestByte = cases[i];
            logger.log(Level.FINE,"test case " + (counter++)
                + ": " + secondRequestByte);
            logger.log(Level.FINE,"");

            // initialize context
            context = new ArrayList();

            // initialize FakeInboundRequest
            request = new FakeInboundRequest(0,null,0x00,secondRequestByte);

            // call dispatch and verify the proper result
            dispatcher.dispatch(impl,request,context);
            assertion(context.size() > 0);
            Object contextElement = context.get(0);
            assertion(contextElement instanceof IntegrityEnforcement);
            boolean integrityEnforced =
                ((IntegrityEnforcement)contextElement).integrityEnforced();
            if (secondRequestByte == 0x00) {
                assertion(!integrityEnforced);
            } else {
                assertion(integrityEnforced);
            }
        }
    }
}
TOP

Related Classes of com.sun.jini.test.spec.jeri.basicinvocationdispatcher.Dispatch_SecondRequestByteTest

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.