|
@@ -0,0 +1,90 @@
|
|
|
+/**
|
|
|
+ * 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 org.apache.zookeeper.test;
|
|
|
+
|
|
|
+import java.io.File;
|
|
|
+import java.io.RandomAccessFile;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import junit.framework.TestCase;
|
|
|
+
|
|
|
+import org.apache.log4j.Logger;
|
|
|
+import org.apache.zookeeper.CreateMode;
|
|
|
+import org.apache.zookeeper.WatchedEvent;
|
|
|
+import org.apache.zookeeper.Watcher;
|
|
|
+import org.apache.zookeeper.ZooKeeper;
|
|
|
+import org.apache.zookeeper.ZooDefs.Ids;
|
|
|
+import org.apache.zookeeper.server.NIOServerCnxn;
|
|
|
+import org.apache.zookeeper.server.PurgeTxnLog;
|
|
|
+import org.apache.zookeeper.server.SyncRequestProcessor;
|
|
|
+import org.apache.zookeeper.server.ZooKeeperServer;
|
|
|
+import org.apache.zookeeper.server.persistence.FileTxnSnapLog;
|
|
|
+import org.apache.zookeeper.test.ClientBase;
|
|
|
+
|
|
|
+/**
|
|
|
+ * test the purging of the logs
|
|
|
+ * and purging of the snapshots.
|
|
|
+ */
|
|
|
+public class PurgeTxnTest extends TestCase implements Watcher {
|
|
|
+ private static final Logger LOG = Logger.getLogger(PurgeTxnTest.class);
|
|
|
+ private static String HOSTPORT = "127.0.0.1:2357";
|
|
|
+ ZooKeeperServer zks = null;
|
|
|
+ private static final int CONNECTION_TIMEOUT = 3000;
|
|
|
+ /**
|
|
|
+ * test the purge
|
|
|
+ * @throws Exception
|
|
|
+ */
|
|
|
+ public void testPurge() throws Exception {
|
|
|
+ File tmpDir = ClientBase.createTmpDir();
|
|
|
+ ClientBase.setupTestEnv();
|
|
|
+ zks = new ZooKeeperServer(tmpDir, tmpDir, 3000);
|
|
|
+ SyncRequestProcessor.snapCount = 100;
|
|
|
+ final int PORT = Integer.parseInt(HOSTPORT.split(":")[1]);
|
|
|
+ NIOServerCnxn.Factory f = new NIOServerCnxn.Factory(PORT);
|
|
|
+ f.startup(zks);
|
|
|
+ assertTrue("waiting for server being up ",
|
|
|
+ ClientBase.waitForServerUp(HOSTPORT,CONNECTION_TIMEOUT));
|
|
|
+ ZooKeeper zk = new ZooKeeper(HOSTPORT, 20000, this);
|
|
|
+ for (int i=0; i< 2000; i++) {
|
|
|
+ zk.create("/invalidsnap-" + i, new byte[0], Ids.OPEN_ACL_UNSAFE,
|
|
|
+ CreateMode.PERSISTENT);
|
|
|
+ }
|
|
|
+ f.shutdown();
|
|
|
+ assertTrue("waiting for server to shutdown",
|
|
|
+ ClientBase.waitForServerDown(HOSTPORT, CONNECTION_TIMEOUT));
|
|
|
+ // now corrupt the snapshot
|
|
|
+ PurgeTxnLog.purge(tmpDir, tmpDir, 3);
|
|
|
+ FileTxnSnapLog snaplog = new FileTxnSnapLog(tmpDir, tmpDir);
|
|
|
+ List<File> listLogs = snaplog.findNRecentSnapshots(4);
|
|
|
+ int numSnaps = 0;
|
|
|
+ for (File ff: listLogs) {
|
|
|
+ if (ff.getName().startsWith("snapshot")) {
|
|
|
+ numSnaps++;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ assertTrue("exactly 3 snapshots ", (numSnaps == 3));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void process(WatchedEvent event) {
|
|
|
+ // do nothing
|
|
|
+ }
|
|
|
+
|
|
|
+}
|