Package com.sun.jini.test.spec.javaspace.conformance.snapshot

Source Code of com.sun.jini.test.spec.javaspace.conformance.snapshot.SnapshotWriteLeaseFOREVERTest

/*
* 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.javaspace.conformance.snapshot;

import java.util.logging.Level;

// net.jini
import net.jini.core.entry.Entry;
import net.jini.core.lease.Lease;

// com.sun.jini
import com.sun.jini.qa.harness.TestException;
import com.sun.jini.qa.harness.QAConfig;

// com.sun.jini.qa
import com.sun.jini.test.spec.javaspace.conformance.SimpleEntry;


/**
* SnapshotWriteLeaseFOREVERTest asserts that write with
* <code>Lease.FOREVER</code> lease time without transactions:
* 1) Places a copy of an entry into the given JavaSpaces service,
*    even if the same Entry object is used in more than one write.
* 2) The Entry passed to the write is not affected by this operations.
* 3) If a write returns without throwing an exception, that entry is
*    committed to the space, possibly within a transaction.
*
* It tests these statements for snapshots.
*
* @author Mikhail A. Markov
*/
public class SnapshotWriteLeaseFOREVERTest extends SnapshotAbstractTestBase {

    /**
     * This method asserts that write with <code>Lease.FOREVER</code> lease time
     * without transactions:
     * 1) Places a copy of an entry into the given JavaSpaces service,
     *    even if the same Entry object is used in more than one write.
     * 2) The Entry passed to the write is not affected by this operations.
     * 3) If a write returns without throwing an exception, that entry is
     *    committed to the space, possibly within a transaction.
     *
     * It tests these statements for snapshots.
     *
     * <P>Notes:<BR>For more information see the JavaSpaces specification
     * sections 2.3, 2.6.</P>
     */
    public void run() throws Exception {
        SimpleEntry sampleEntry1 = new SimpleEntry("TestEntry #1", 1);
        SimpleEntry sampleEntry2 = new SimpleEntry("TestEntry #2", 2);
        Entry snapshot1;
        Entry snapshot2;
        SimpleEntry origEntry1;
        SimpleEntry origEntry2;
        SimpleEntry result;

        // first check that space is empty
        if (!checkSpace(space)) {
            throw new TestException(
                    "Space is not empty in the beginning.");
        }

        // init original entries for comparing
        origEntry1 = (SimpleEntry) sampleEntry1.clone();
        origEntry2 = (SimpleEntry) sampleEntry2.clone();

        // crate snapshots of sample entries
        snapshot1 = space.snapshot(sampleEntry1);
        snapshot2 = space.snapshot(sampleEntry2);

        /*
         * write 1-st entry without transactions using it's snapshot
         * with Lease.FOREVER lease time
         */
        space.write(snapshot1, null, Lease.FOREVER);

        // check that original entry has not been changed
        if (!origEntry1.equals(sampleEntry1)) {
            throw new TestException(
                    "performed write operation with Lease.FOREVER"
                    + " lease time has changed entry object: "
                    + " original entry " + origEntry1
                    + " has been changed by " + sampleEntry1);
        }

        // check that written entry is available in the space
        result = (SimpleEntry) space.read(sampleEntry1, null, checkTime);

        if (result == null) {
            throw new TestException(
                    "performed write of " + sampleEntry1
                    + " using it's snapshot with Lease.FOREVER lease time,"
                    + " written entry is not available in the space.");
        }
        logDebugText("Write of " + sampleEntry1 + " with Lease.FOREVER"
                + " lease time works as expected.");

        /*
         * write 2-nd entry without transactions using it's snapshot
         * with Lease.FOREVER lease time
         */
        space.write(snapshot2, null, Lease.FOREVER);

        // check that original entry has not been changed
        if (!origEntry2.equals(sampleEntry2)) {
            throw new TestException(
                    "performed write operation with Lease.FOREVER"
                    + " lease time has changed entry object: "
                    + " original entry " + origEntry2
                    + " has been changed by " + sampleEntry2);
        }

        // check that written entry is available in the space
        result = (SimpleEntry) space.read(sampleEntry2, null, checkTime);

        if (result == null) {
            throw new TestException(
                    "performed write of " + sampleEntry2
                    + " using it's snapshot with Lease.FOREVER lease time,"
                    + " written entry is not available in the space.");
        }
        logDebugText("Write of " + sampleEntry2
                + " using it's snapshot with Lease.FOREVER"
                + " lease time works as expected.");

        /*
         * write 1-st entry using it's snapshot
         * with Lease.FOREVER lease time again
         */
        space.write(snapshot1, null, Lease.FOREVER);

        // check that original entry has not been changed
        if (!origEntry1.equals(sampleEntry1)) {
            throw new TestException(
                    "performed 2-nd write operation with Lease.FOREVER"
                    + " lease time has changed entry object: "
                    + " original entry " + origEntry1
                    + " has been changed by " + sampleEntry1);
        }

        // check that written entries are available in the space
        result = (SimpleEntry) space.take(sampleEntry1, null, checkTime);

        if (result == null) {
            throw new TestException(
                    "performed 2-nd write operation for the same "
                    + sampleEntry1
                    + " using it's snapshot with Lease.FOREVER lease time,"
                    + " 1st written entry is not available in the space.");
        }
        result = (SimpleEntry) space.take(sampleEntry1, null, checkTime);

        if (result == null) {
            throw new TestException(
                    "performed 2-nd write operation for the same "
                    + sampleEntry1
                    + " using it's snapshot with Lease.FOREVER lease time,"
                    + " 2nd written entry is not available in the space.");
        }
        logDebugText("2-nd write of the same " + sampleEntry1
                + " using it's snapshot with Lease.FOREVER lease time"
                + " works as expected.");
    }
}
TOP

Related Classes of com.sun.jini.test.spec.javaspace.conformance.snapshot.SnapshotWriteLeaseFOREVERTest

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.