blob: 4dfe1072aea6df26025d83c953811d310e2efdac [file] [log] [blame]
/*
* 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.tephra.examples;
import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Scopes;
import com.google.inject.util.Modules;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseTestingUtility;
import org.apache.tephra.TransactionSystemClient;
import org.apache.tephra.TxConstants;
import org.apache.tephra.distributed.TransactionService;
import org.apache.tephra.persist.InMemoryTransactionStateStorage;
import org.apache.tephra.persist.TransactionStateStorage;
import org.apache.tephra.runtime.ConfigModule;
import org.apache.tephra.runtime.DiscoveryModules;
import org.apache.tephra.runtime.TransactionClientModule;
import org.apache.tephra.runtime.TransactionModules;
import org.apache.tephra.runtime.ZKModule;
import org.apache.tephra.util.Tests;
import org.apache.twill.zookeeper.ZKClientService;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.junit.Assert.assertTrue;
/**
* Tests the {@link BalanceBooks} program.
*/
public class BalanceBooksTest {
private static final Logger LOG = LoggerFactory.getLogger(BalanceBooksTest.class);
private static HBaseTestingUtility testUtil;
private static TransactionService txService;
private static ZKClientService zkClientService;
@ClassRule
public static TemporaryFolder tmpFolder = new TemporaryFolder();
@BeforeClass
public static void setup() throws Exception {
testUtil = new HBaseTestingUtility();
Configuration conf = testUtil.getConfiguration();
conf.setBoolean(TxConstants.Manager.CFG_DO_PERSIST, false);
conf.set(TxConstants.Manager.CFG_TX_SNAPSHOT_DIR, tmpFolder.newFolder().getAbsolutePath());
// Tune down the connection thread pool size
conf.setInt("hbase.hconnection.threads.core", 5);
conf.setInt("hbase.hconnection.threads.max", 10);
// Tunn down handler threads in regionserver
conf.setInt("hbase.regionserver.handler.count", 10);
// Set to random port
conf.setInt("hbase.master.port", 0);
conf.setInt("hbase.master.info.port", 0);
conf.setInt("hbase.regionserver.port", 0);
conf.setInt("hbase.regionserver.info.port", 0);
testUtil.startMiniCluster();
String zkClusterKey = testUtil.getClusterKey(); // hostname:clientPort:parentZnode
String zkQuorum = zkClusterKey.substring(0, zkClusterKey.lastIndexOf(':'));
LOG.info("Zookeeper Quorum is running at {}", zkQuorum);
conf.set(TxConstants.Service.CFG_DATA_TX_ZOOKEEPER_QUORUM, zkQuorum);
Injector injector = Guice.createInjector(
new ConfigModule(conf),
new ZKModule(),
new DiscoveryModules().getDistributedModules(),
Modules.override(new TransactionModules().getDistributedModules())
.with(new AbstractModule() {
@Override
protected void configure() {
bind(TransactionStateStorage.class).to(InMemoryTransactionStateStorage.class).in(Scopes.SINGLETON);
}
}),
new TransactionClientModule()
);
zkClientService = injector.getInstance(ZKClientService.class);
zkClientService.startAndWait();
// start a tx server
txService = injector.getInstance(TransactionService.class);
try {
LOG.info("Starting transaction service");
txService.startAndWait();
} catch (Exception e) {
LOG.error("Failed to start service: ", e);
throw e;
}
Tests.waitForTxReady(injector.getInstance(TransactionSystemClient.class));
}
@AfterClass
public static void tearDown() throws Exception {
if (txService != null) {
txService.stopAndWait();
}
if (zkClientService != null) {
zkClientService.stopAndWait();
}
testUtil.shutdownMiniCluster();
}
@Test
public void testBalanceBooks() throws Exception {
try (BalanceBooks bb = new BalanceBooks(5, 100, testUtil.getConfiguration())) {
bb.init();
bb.run();
assertTrue(bb.verify());
}
}
}