Package com.sun.jini.test.spec.export.exportpermission

Source Code of com.sun.jini.test.spec.export.exportpermission.BasicPermission_hashCode

/*
* 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.export.exportpermission;

import java.util.logging.Level;

// java.util
import java.util.logging.Level;

// davis packages
import net.jini.export.ExportPermission;


/**
* <pre>
*
* Purpose:
*   This test verifies the behavior of
*   {@link java.security.BasicPermission#hashCode()} method on
*   {@link net.jini.export.ExportPermission} objects.
*
* Test Cases:
*   This test creates ExportPermission objects with various target names:
*     exportRemoteInterface.com.sun.jini.test.spec.export.util.FakeInterface
*     exportRemoteInterface.com.sun.jini.test.spec.export.util.*
*     exportRemoteInterface.*
*     *
*
* Infrastructure:
*     - {@link BasicPermission_hashCode}
*         performs actions
*
* Actions:
*   Test performs the following steps in each test case:
*     - create 2 ExportPermission objects;
*     - invoke hashCode() method on both the created ExportPermission objects;
*     - compare hash codes.
*
* </pre>
*/
public class BasicPermission_hashCode extends BasicPermission_equals {

    /**
     * This method checks that
     * {@link java.security.BasicPermission#hashCode()} method runs
     * successfully on {@link net.jini.export.ExportPermission} objects.
     *
     * @param tc {@link com.sun.jini.test.spec.export.exportpermission.ExportPermission_AbstractTest.TestCase}
     *           object that contains 2 {@link net.jini.export.ExportPermission}
     *           objects for which hash codes are calculated
     * @return true if the result of comparison of hash codes for
     *         {@link net.jini.export.ExportPermission} objects is equal to
     *         the expected result or false otherwise
     */
    public boolean checker(TestCase tc) {
        ExportPermission p1 = tc.getPermission1();
        ExportPermission p2 = tc.getPermission2();
        boolean expected = tc.getExpected();
       
        logger.log(Level.FINE, "\t+++ " + p1 + ".hashCode()");
        int p1_hashCode = p1.hashCode();
        logger.log(Level.FINE, "\t+++ " + p2 + ".hashCode()");
        int p2_hashCode = p2.hashCode();
        logger.log(Level.FINE, "1-st ExportPermission object: " + p1);
        logger.log(Level.FINE, "2-nd ExportPermission object: " + p2);
        logger.log(Level.FINE, "hash code for the 1-st object: " + p1_hashCode);
        logger.log(Level.FINE, "hash code for the 2-nd object: " + p2_hashCode);
        if (expected == true) {
            logger.log(Level.FINE, "Expected that hash codes are equal");
            return (p1_hashCode == p2_hashCode);
        } else {
            logger.log(Level.FINE, "Expected that hash codes aren't equal");
            return (p1_hashCode != p2_hashCode);
        }
    }
}
TOP

Related Classes of com.sun.jini.test.spec.export.exportpermission.BasicPermission_hashCode

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.