/* Copyright (c) 2012 LinkedIn Corp. 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.linkedin.d2.discovery.stores.zk; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertNull; import static org.testng.Assert.assertTrue; import static org.testng.Assert.fail; import java.io.File; import java.io.IOException; import java.util.Collection; import java.util.Map; import java.util.concurrent.CountDownLatch; import java.util.concurrent.ExecutionException; import java.util.concurrent.TimeUnit; import org.testng.annotations.AfterSuite; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.linkedin.d2.discovery.event.PropertyEventThread.PropertyEventShutdownCallback; import com.linkedin.d2.discovery.stores.PropertyStore; import com.linkedin.d2.discovery.stores.PropertyStoreException; import com.linkedin.d2.discovery.stores.PropertyStringSerializer; import com.linkedin.common.callback.FutureCallback; import com.linkedin.common.util.None; public class ZooKeeperEphemeralStoreTest { protected ZKServer _zkServer; protected File _dataPath; protected File _logPath; protected int _port; @BeforeSuite public void doOneTimeSetUp() throws InterruptedException { _port = 11720; try { _zkServer = new ZKServer(_port); _zkServer.startup(); } catch (IOException e) { fail("unable to instantiate real zk server on port " + _port); } } @AfterSuite public void doOneTimeTearDown() throws IOException { _zkServer.shutdown(); } public static void main(String[] args) throws Exception { ZooKeeperEphemeralStoreTest test = new ZooKeeperEphemeralStoreTest(); test.doOneTimeSetUp(); test.testPutGetRemovePartial(); test.doOneTimeTearDown(); } public ZooKeeperEphemeralStore<String> getStore() throws IOException, PropertyStoreException, InterruptedException, ExecutionException { ZKConnection client = new ZKConnection("localhost:" + _port, 5000); client.start(); ZooKeeperEphemeralStore<String> store = new ZooKeeperEphemeralStore<String>( client, new PropertyStringSerializer(), new PropertyStringMerger(), "/test-path", false, true); FutureCallback<None> callback = new FutureCallback<None>(); store.start(callback); callback.get(); return store; } @Test(groups = { "small", "back-end" }) public void testPutGetRemovePartial() throws InterruptedException, IOException, PropertyStoreException, ExecutionException { ZooKeeperEphemeralStore<String> store = getStore(); store.put("service-1", "1"); store.put("service-1", "2"); store.put("service-2", "3"); assertTrue(store.get("service-1").equals("1,2") || store.get("service-1").equals("2,1")); assertEquals(store.get("service-2"), "3"); assertNull(store.get("service-3")); store.removePartial("service-1", "2"); assertEquals(store.get("service-1"), "1"); store.remove("service-2"); assertNull(store.get("service-2")); final CountDownLatch latch = new CountDownLatch(1); store.shutdown(new PropertyEventShutdownCallback() { @Override public void done() { latch.countDown(); } }); if (!latch.await(5, TimeUnit.SECONDS)) { fail("unable to shut down"); } } @Test(groups = { "small", "back-end" }) public void testShutdown() throws InterruptedException, IOException, PropertyStoreException, ExecutionException { PropertyStore<String> store = getStore(); final CountDownLatch latch = new CountDownLatch(1); store.shutdown(new PropertyEventShutdownCallback() { @Override public void done() { latch.countDown(); } }); if (!latch.await(5, TimeUnit.SECONDS)) { fail("unable to shut down store"); } } public static class PropertyStringMerger implements ZooKeeperPropertyMerger<String> { @Override public String merge(String listenTo, Collection<String> propertiesToMerge) { String combinedName = ""; for (String property : propertiesToMerge) { combinedName += property + ","; } if (combinedName.endsWith(",")) { combinedName = combinedName.substring(0, combinedName.length() - 1); } if (combinedName.length() > 0) { return new String(combinedName); } else { return null; } } @Override public String unmerge(String listenTo, String toDelete, Map<String, String> propertiesToMerge) { for (Map.Entry<String, String> property : propertiesToMerge.entrySet()) { if (toDelete.equals(property.getValue())) { return property.getKey(); } } return null; } } }