blob: 7e52ff27cec358302dd9d847805b0334f0065d95 [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 com.twitter.distributedlog.service.stream;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import com.twitter.distributedlog.AsyncLogWriter;
import com.twitter.distributedlog.DLSN;
import com.twitter.distributedlog.LogRecord;
import com.twitter.distributedlog.acl.DefaultAccessControlManager;
import com.twitter.distributedlog.exceptions.InternalServerException;
import com.twitter.distributedlog.service.ResponseUtils;
import com.twitter.distributedlog.service.config.ServerConfiguration;
import com.twitter.distributedlog.service.streamset.IdentityStreamPartitionConverter;
import com.twitter.distributedlog.thrift.service.StatusCode;
import com.twitter.distributedlog.thrift.service.WriteResponse;
import com.twitter.distributedlog.util.Sequencer;
import com.twitter.util.Await;
import com.twitter.util.Future;
import java.nio.ByteBuffer;
import org.apache.bookkeeper.feature.SettableFeature;
import org.apache.bookkeeper.stats.NullStatsLogger;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
/**
* Test Case for StreamOps.
*/
public class TestStreamOp {
@Rule
public TestName testName = new TestName();
private WriteOp getWriteOp() {
SettableFeature disabledFeature = new SettableFeature("", 0);
return new WriteOp("test",
ByteBuffer.wrap("test".getBytes()),
new NullStatsLogger(),
new NullStatsLogger(),
new IdentityStreamPartitionConverter(),
new ServerConfiguration(),
(byte) 0,
null,
false,
disabledFeature,
DefaultAccessControlManager.INSTANCE);
}
@Test(timeout = 60000)
public void testResponseFailedTwice() throws Exception {
WriteOp writeOp = getWriteOp();
writeOp.fail(new InternalServerException("test1"));
writeOp.fail(new InternalServerException("test2"));
WriteResponse response = Await.result(writeOp.result());
assertEquals(StatusCode.INTERNAL_SERVER_ERROR, response.getHeader().getCode());
assertEquals(ResponseUtils.exceptionToHeader(new InternalServerException("test1")), response.getHeader());
}
@Test(timeout = 60000)
public void testResponseSucceededThenFailed() throws Exception {
AsyncLogWriter writer = mock(AsyncLogWriter.class);
when(writer.write((LogRecord) any())).thenReturn(Future.value(new DLSN(1, 2, 3)));
when(writer.getStreamName()).thenReturn("test");
WriteOp writeOp = getWriteOp();
writeOp.execute(writer, new Sequencer() {
public long nextId() {
return 0;
}
}, new Object());
writeOp.fail(new InternalServerException("test2"));
WriteResponse response = Await.result(writeOp.result());
assertEquals(StatusCode.SUCCESS, response.getHeader().getCode());
}
}