Package com.hazelcast.concurrent.semaphore

Source Code of com.hazelcast.concurrent.semaphore.SemaphoreClientRequestTest

/*
* Copyright (c) 2008-2013, Hazelcast, Inc. All Rights Reserved.
* 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 com.hazelcast.concurrent.semaphore;

import com.hazelcast.client.ClientTestSupport;
import com.hazelcast.concurrent.semaphore.client.*;
import com.hazelcast.config.Config;
import com.hazelcast.core.ISemaphore;
import com.hazelcast.test.HazelcastParallelClassRunner;
import com.hazelcast.test.annotation.QuickTest;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;

import java.io.IOException;

import static org.junit.Assert.*;

/**
* @author ali 5/13/13
*/
@RunWith(HazelcastParallelClassRunner.class)
@Category(QuickTest.class)
public class SemaphoreClientRequestTest extends ClientTestSupport {

    static final String name = "test";

    protected Config createConfig() {
        return new Config();
    }

    @Before
    public void start() throws IOException {
        ISemaphore s = getInstance().getSemaphore(name);
        s.reducePermits(100);
        assertEquals(0, s.availablePermits());
    }

    @After
    public void clear() throws IOException {
        ISemaphore s = getInstance().getSemaphore(name);
        s.reducePermits(100);
        assertEquals(0, s.availablePermits());
    }

    @Test
    public void testAcquire() throws Exception {
        ISemaphore s = getInstance().getSemaphore(name);
        assertTrue(s.init(10));

        getClient().send(new AcquireRequest(name, 3, 0));
        boolean result = (Boolean) getClient().receive();
        assertTrue(result);
        assertEquals(7, s.availablePermits());

        getClient().send(new AcquireRequest(name, 8, 6 * 1000));
        assertEquals(7, s.availablePermits());

        Thread.sleep(2 * 1000);

        s.release(1);

        result = (Boolean) getClient().receive();
        assertTrue(result);
        assertEquals(0, s.availablePermits());

        getClient().send(new AcquireRequest(name, 4, 2 * 1000));
        result = (Boolean) getClient().receive();
        assertFalse(result);

    }

    @Test
    public void testAvailable() throws Exception {
        getClient().send(new AvailableRequest(name));
        int result = (Integer) getClient().receive();
        assertEquals(0, result);

        ISemaphore s = getInstance().getSemaphore(name);
        s.release(5);

        getClient().send(new AvailableRequest(name));
        result = (Integer) getClient().receive();
        assertEquals(5, result);
    }

    @Test
    public void testDrain() throws Exception {
        ISemaphore s = getInstance().getSemaphore(name);
        assertTrue(s.init(10));

        getClient().send(new DrainRequest(name));
        int result = (Integer) getClient().receive();
        assertEquals(10, result);

        s.release(4);

        getClient().send(new DrainRequest(name));
        result = (Integer) getClient().receive();
        assertEquals(4, result);
    }

    @Test
    public void testInit() throws Exception {
        ISemaphore s = getInstance().getSemaphore(name);

        getClient().send(new InitRequest(name, 10));
        boolean result = (Boolean) getClient().receive();
        assertTrue(result);
        assertEquals(10, s.availablePermits());

        getClient().send(new InitRequest(name, 20));
        result = (Boolean) getClient().receive();
        assertFalse(result);
        assertEquals(10, s.availablePermits());
    }

    @Test
    public void testReduce() throws Exception {
        ISemaphore s = getInstance().getSemaphore(name);
        assertTrue(s.init(10));

        getClient().send(new ReduceRequest(name, 4));
        boolean result = (Boolean) getClient().receive();
        assertTrue(result);
        assertEquals(6, s.availablePermits());
    }

    @Test
    public void testRelease() throws Exception {
        ISemaphore s = getInstance().getSemaphore(name);
        assertTrue(s.init(10));

        getClient().send(new ReleaseRequest(name, 4));
        boolean result = (Boolean) getClient().receive();
        assertTrue(result);
        assertEquals(14, s.availablePermits());
    }
}
TOP

Related Classes of com.hazelcast.concurrent.semaphore.SemaphoreClientRequestTest

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.