blob: 5f6e36359f9e6f0015652d21fa49ae7a5df3e090 [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.hedwig.server;
import junit.framework.TestCase;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.junit.After;
import org.junit.Before;
import org.apache.hedwig.server.common.ServerConfiguration;
import org.apache.hedwig.server.netty.PubSubServer;
/**
* This is a base class for any tests that need a StandAlone PubSubServer setup.
*/
public abstract class PubSubServerStandAloneTestBase extends TestCase {
protected static Logger logger = LoggerFactory.getLogger(PubSubServerStandAloneTestBase.class);
protected class StandAloneServerConfiguration extends ServerConfiguration {
@Override
public boolean isStandalone() {
return true;
}
}
protected PubSubServer server;
@Override
@Before
public void setUp() throws Exception {
logger.info("STARTING " + getName());
server = new PubSubServer(new StandAloneServerConfiguration());
logger.info("Standalone PubSubServer test setup finished");
}
@Override
@After
public void tearDown() throws Exception {
logger.info("tearDown starting");
server.shutdown();
logger.info("FINISHED " + getName());
}
}