/* * Copyright 2015 the original author or authors. * * 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 io.atomix; import io.atomix.collections.DistributedMap; import io.atomix.collections.DistributedSet; import io.atomix.copycat.client.session.ClientSession; import io.atomix.resource.Resource; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import java.util.UUID; import java.util.concurrent.TimeUnit; /** * Atomix resource recovery test. * * @author <a href="http://github.com/kuujo>Jordan Halterman</a> */ @Test @SuppressWarnings("unchecked") public class ResourceRecoveryTest extends AbstractAtomixTest { @BeforeClass protected void setupCluster() throws Throwable { createReplicas(3); } public void testRecoverClientResources() throws Throwable { testRecoverResources(createClient()); } public void testRecoverReplicaResources() throws Throwable { testRecoverResources(replicas.get(0)); } /** * Tests recovering resources. */ private void testRecoverResources(Atomix atomix) throws Throwable { String id = UUID.randomUUID().toString(); DistributedMap<String, String> map = atomix.getResource("test-map-" + id, DistributedMap.class).get(); map.put("foo", "Hello world!").get(5, TimeUnit.SECONDS); map.put("bar", "Hello world again!").get(5, TimeUnit.SECONDS); map.get("foo").thenAccept(result -> { threadAssertEquals(result, "Hello world!"); resume(); }); await(1000); DistributedSet<String> set = atomix.getResource("test-set-" + id, DistributedSet.class).get(); set.add("Hello world!").get(5, TimeUnit.SECONDS); map.onStateChange(state -> { if (state == Resource.State.CONNECTED) { map.get("foo").thenAccept(result -> { threadAssertEquals(result, "Hello world!"); resume(); }); } }); set.onStateChange(state -> { if (state == Resource.State.CONNECTED) { set.contains("Hello world!").thenAccept(result -> { threadAssertTrue(result); resume(); }); } }); ((ClientSession) atomix.client.client().session()).expire().whenComplete((result, error) -> { threadAssertNull(error); resume(); }); await(10000, 3); } }