Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
小五666\n哈哈
Rocketmq
提交
881aef5d
R
Rocketmq
项目概览
小五666\n哈哈
/
Rocketmq
与 Fork 源项目一致
Fork自
Apache RocketMQ / Rocketmq
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
Rocketmq
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
881aef5d
编写于
1月 22, 2017
作者:
Y
yukon
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ROCKETMQ-56] Polish unit tests for rocketmq-store
上级
e9a87ea9
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
91 addition
and
372 deletion
+91
-372
store/src/test/java/org/apache/rocketmq/store/DefaultMessageStoreTest.java
...va/org/apache/rocketmq/store/DefaultMessageStoreTest.java
+18
-47
store/src/test/java/org/apache/rocketmq/store/MappedFileQueueTest.java
...t/java/org/apache/rocketmq/store/MappedFileQueueTest.java
+47
-115
store/src/test/java/org/apache/rocketmq/store/MappedFileTest.java
...c/test/java/org/apache/rocketmq/store/MappedFileTest.java
+10
-46
store/src/test/java/org/apache/rocketmq/store/StoreCheckpointTest.java
...t/java/org/apache/rocketmq/store/StoreCheckpointTest.java
+5
-16
store/src/test/java/org/apache/rocketmq/store/index/IndexFileTest.java
...t/java/org/apache/rocketmq/store/index/IndexFileTest.java
+11
-15
store/src/test/java/org/apache/rocketmq/store/schedule/ScheduleMessageTest.java
...g/apache/rocketmq/store/schedule/ScheduleMessageTest.java
+0
-133
未找到文件。
store/src/test/java/org/apache/rocketmq/store/DefaultMessageStoreTest.java
浏览文件 @
881aef5d
...
...
@@ -24,42 +24,28 @@ import java.util.concurrent.atomic.AtomicInteger;
import
org.apache.rocketmq.common.BrokerConfig
;
import
org.apache.rocketmq.store.config.FlushDiskType
;
import
org.apache.rocketmq.store.config.MessageStoreConfig
;
import
org.junit.AfterClass
;
import
org.junit.BeforeClass
;
import
org.junit.Before
;
import
org.junit.Test
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
public
class
DefaultMessageStoreTest
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
DefaultMessageStoreTest
.
class
);
private
static
final
String
StoreMessage
=
"Once, there was a chance for me!"
;
private
static
int
QUEUE_TOTAL
=
100
;
private
static
AtomicInteger
QueueId
=
new
AtomicInteger
(
0
);
private
static
SocketAddress
BornHost
;
private
static
SocketAddress
StoreHost
;
private
static
byte
[]
MessageBody
;
@BeforeClass
public
static
void
setUpBeforeClass
()
throws
Exception
{
private
final
String
StoreMessage
=
"Once, there was a chance for me!"
;
private
int
QUEUE_TOTAL
=
100
;
private
AtomicInteger
QueueId
=
new
AtomicInteger
(
0
);
private
SocketAddress
BornHost
;
private
SocketAddress
StoreHost
;
private
byte
[]
MessageBody
;
@Before
public
void
init
()
throws
Exception
{
StoreHost
=
new
InetSocketAddress
(
InetAddress
.
getLocalHost
(),
8123
);
BornHost
=
new
InetSocketAddress
(
InetAddress
.
getByName
(
"127.0.0.1"
),
0
);
}
@AfterClass
public
static
void
tearDownAfterClass
()
throws
Exception
{
}
@Test
public
void
test_write_read
()
throws
Exception
{
logger
.
debug
(
"================================================================"
);
public
void
testWriteAndRead
()
throws
Exception
{
long
totalMsgs
=
100
;
QUEUE_TOTAL
=
1
;
MessageBody
=
StoreMessage
.
getBytes
();
...
...
@@ -77,29 +63,23 @@ public class DefaultMessageStoreTest {
master
.
start
();
try
{
for
(
long
i
=
0
;
i
<
totalMsgs
;
i
++)
{
PutMessageResult
result
=
master
.
putMessage
(
buildMessage
());
logger
.
debug
(
i
+
"\t"
+
result
.
getAppendMessageResult
().
getMsgId
());
master
.
putMessage
(
buildMessage
());
}
for
(
long
i
=
0
;
i
<
totalMsgs
;
i
++)
{
GetMessageResult
result
=
master
.
getMessage
(
"GROUP_A"
,
"TOPIC_A"
,
0
,
i
,
1024
*
1024
,
null
);
if
(
result
==
null
)
{
logger
.
debug
(
"result == null "
+
i
);
}
assertTrue
(
result
!=
null
);
assertThat
(
result
).
isNotNull
();
result
.
release
();
logger
.
debug
(
"read "
+
i
+
" OK"
);
}
}
finally
{
master
.
shutdown
();
master
.
destroy
();
}
logger
.
debug
(
"================================================================"
);
}
public
MessageExtBrokerInner
buildMessage
()
{
MessageExtBrokerInner
msg
=
new
MessageExtBrokerInner
();
msg
.
setTopic
(
"
AAA
"
);
msg
.
setTopic
(
"
FooBar
"
);
msg
.
setTags
(
"TAG1"
);
msg
.
setKeys
(
"Hello"
);
msg
.
setBody
(
MessageBody
);
...
...
@@ -113,8 +93,7 @@ public class DefaultMessageStoreTest {
}
@Test
public
void
test_group_commit
()
throws
Exception
{
logger
.
debug
(
"================================================================"
);
public
void
testGroupCommit
()
throws
Exception
{
long
totalMsgs
=
100
;
QUEUE_TOTAL
=
1
;
MessageBody
=
StoreMessage
.
getBytes
();
...
...
@@ -128,32 +107,24 @@ public class DefaultMessageStoreTest {
master
.
start
();
try
{
for
(
long
i
=
0
;
i
<
totalMsgs
;
i
++)
{
PutMessageResult
result
=
master
.
putMessage
(
buildMessage
());
logger
.
debug
(
i
+
"\t"
+
result
.
getAppendMessageResult
().
getMsgId
());
master
.
putMessage
(
buildMessage
());
}
for
(
long
i
=
0
;
i
<
totalMsgs
;
i
++)
{
GetMessageResult
result
=
master
.
getMessage
(
"GROUP_A"
,
"TOPIC_A"
,
0
,
i
,
1024
*
1024
,
null
);
if
(
result
==
null
)
{
logger
.
debug
(
"result == null "
+
i
);
}
assertTrue
(
result
!=
null
);
assertThat
(
result
).
isNotNull
();
result
.
release
();
logger
.
debug
(
"read "
+
i
+
" OK"
);
}
}
finally
{
master
.
shutdown
();
master
.
destroy
();
}
logger
.
debug
(
"================================================================"
);
}
private
class
MyMessageArrivingListener
implements
MessageArrivingListener
{
@Override
public
void
arriving
(
String
topic
,
int
queueId
,
long
logicOffset
,
long
tagsCode
)
{
// Do nothing here
}
}
}
store/src/test/java/org/apache/rocketmq/store/MappedFileQueueTest.java
浏览文件 @
881aef5d
...
...
@@ -15,70 +15,30 @@
* limitations under the License.
*/
/**
* $Id: MappedFileQueueTest.java 1831 2013-05-16 01:39:51Z vintagewang@apache.org $
*/
package
org.apache.rocketmq.store
;
import
java.nio.ByteBuffer
;
import
java.util.Arrays
;
import
org.junit.After
;
import
org.junit.AfterClass
;
import
org.junit.Before
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
import
static
org
.
junit
.
Assert
.
assertNotNull
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
public
class
MappedFileQueueTest
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
MappedFileQueueTest
.
class
);
// private static final String StoreMessage =
// "Once, there was a chance for me! but I did not treasure it. if";
@BeforeClass
public
static
void
setUpBeforeClass
()
throws
Exception
{
}
@AfterClass
public
static
void
tearDownAfterClass
()
throws
Exception
{
}
@Before
public
void
setUp
()
throws
Exception
{
}
@After
public
void
tearDown
()
throws
Exception
{
}
@Test
public
void
test
_g
etLastMappedFile
()
{
public
void
test
G
etLastMappedFile
()
{
final
String
fixedMsg
=
"0123456789abcdef"
;
logger
.
debug
(
"================================================================"
);
MappedFileQueue
mappedFileQueue
=
new
MappedFileQueue
(
"target/unit_test_store/a/"
,
1024
,
null
);
for
(
int
i
=
0
;
i
<
1024
;
i
++)
{
MappedFile
mappedFile
=
mappedFileQueue
.
getLastMappedFile
(
0
);
assertTrue
(
mappedFile
!=
null
);
boolean
result
=
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
());
if
(!
result
)
{
logger
.
debug
(
"appendMessage "
+
i
);
}
assertTrue
(
result
);
assertThat
(
mappedFile
).
isNotNull
();
assertThat
(
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
())).
isTrue
();
}
mappedFileQueue
.
shutdown
(
1000
);
mappedFileQueue
.
destroy
();
logger
.
debug
(
"MappedFileQueue.getLastMappedFile() OK"
);
}
@Test
...
...
@@ -86,162 +46,134 @@ public class MappedFileQueueTest {
// four-byte string.
final
String
fixedMsg
=
"abcd"
;
logger
.
debug
(
"================================================================"
);
MappedFileQueue
mappedFileQueue
=
new
MappedFileQueue
(
"target/unit_test_store/b/"
,
1024
,
null
);
for
(
int
i
=
0
;
i
<
1024
;
i
++)
{
MappedFile
mappedFile
=
mappedFileQueue
.
getLastMappedFile
(
0
);
assertTrue
(
mappedFile
!=
null
);
boolean
result
=
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
());
assertTrue
(
result
);
assertThat
(
mappedFile
).
isNotNull
();
assertThat
(
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
())).
isTrue
();
}
assert
Equals
(
fixedMsg
.
getBytes
().
length
*
1024
,
mappedFileQueue
.
getMappedMemorySize
()
);
assert
That
(
mappedFileQueue
.
getMappedMemorySize
()).
isEqualTo
(
fixedMsg
.
getBytes
().
length
*
1024
);
MappedFile
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
0
);
assertT
rue
(
mappedFile
!=
null
);
assert
Equals
(
mappedFile
.
getFileFromOffset
(),
0
);
assertT
hat
(
mappedFile
).
isNotNull
(
);
assert
That
(
mappedFile
.
getFileFromOffset
()).
isEqualTo
(
0
);
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
100
);
assertT
rue
(
mappedFile
!=
null
);
assert
Equals
(
mappedFile
.
getFileFromOffset
(),
0
);
assertT
hat
(
mappedFile
).
isNotNull
(
);
assert
That
(
mappedFile
.
getFileFromOffset
()).
isEqualTo
(
0
);
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
1024
);
assertT
rue
(
mappedFile
!=
null
);
assert
Equals
(
mappedFile
.
getFileFromOffset
(),
1024
);
assertT
hat
(
mappedFile
).
isNotNull
(
);
assert
That
(
mappedFile
.
getFileFromOffset
()).
isEqualTo
(
1024
);
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
1024
+
100
);
assertT
rue
(
mappedFile
!=
null
);
assert
Equals
(
mappedFile
.
getFileFromOffset
(),
1024
);
assertT
hat
(
mappedFile
).
isNotNull
(
);
assert
That
(
mappedFile
.
getFileFromOffset
()).
isEqualTo
(
1024
);
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
1024
*
2
);
assertT
rue
(
mappedFile
!=
null
);
assert
Equals
(
mappedFile
.
getFileFromOffset
(),
1024
*
2
);
assertT
hat
(
mappedFile
).
isNotNull
(
);
assert
That
(
mappedFile
.
getFileFromOffset
()).
isEqualTo
(
1024
*
2
);
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
1024
*
2
+
100
);
assertT
rue
(
mappedFile
!=
null
);
assert
Equals
(
mappedFile
.
getFileFromOffset
(),
1024
*
2
);
assertT
hat
(
mappedFile
).
isNotNull
(
);
assert
That
(
mappedFile
.
getFileFromOffset
()).
isEqualTo
(
1024
*
2
);
// over mapped memory size.
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
1024
*
4
);
assertT
rue
(
mappedFile
==
null
);
assertT
hat
(
mappedFile
).
isNull
(
);
mappedFile
=
mappedFileQueue
.
findMappedFileByOffset
(
1024
*
4
+
100
);
assertT
rue
(
mappedFile
==
null
);
assertT
hat
(
mappedFile
).
isNull
(
);
mappedFileQueue
.
shutdown
(
1000
);
mappedFileQueue
.
destroy
();
logger
.
debug
(
"MappedFileQueue.findMappedFileByOffset() OK"
);
}
@Test
public
void
test
_commit
()
{
public
void
test
AppendMessage
()
{
final
String
fixedMsg
=
"0123456789abcdef"
;
logger
.
debug
(
"================================================================"
);
MappedFileQueue
mappedFileQueue
=
new
MappedFileQueue
(
"target/unit_test_store/c/"
,
1024
,
null
);
for
(
int
i
=
0
;
i
<
1024
;
i
++)
{
MappedFile
mappedFile
=
mappedFileQueue
.
getLastMappedFile
(
0
);
assertTrue
(
mappedFile
!=
null
);
boolean
result
=
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
());
assertTrue
(
result
);
assertThat
(
mappedFile
).
isNotNull
();
assertThat
(
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
())).
isTrue
();
}
boolean
result
=
mappedFileQueue
.
flush
(
0
);
assertFalse
(
result
);
assertEquals
(
1024
*
1
,
mappedFileQueue
.
getFlushedWhere
());
assertThat
(
mappedFileQueue
.
flush
(
0
)).
isFalse
();
assertThat
(
mappedFileQueue
.
getFlushedWhere
()).
isEqualTo
(
1024
);
result
=
mappedFileQueue
.
flush
(
0
);
assertFalse
(
result
);
assertEquals
(
1024
*
2
,
mappedFileQueue
.
getFlushedWhere
());
assertThat
(
mappedFileQueue
.
flush
(
0
)).
isFalse
();
assertThat
(
mappedFileQueue
.
getFlushedWhere
()).
isEqualTo
(
1024
*
2
);
result
=
mappedFileQueue
.
flush
(
0
);
assertFalse
(
result
);
assertEquals
(
1024
*
3
,
mappedFileQueue
.
getFlushedWhere
());
assertThat
(
mappedFileQueue
.
flush
(
0
)).
isFalse
();
assertThat
(
mappedFileQueue
.
getFlushedWhere
()).
isEqualTo
(
1024
*
3
);
result
=
mappedFileQueue
.
flush
(
0
);
assertFalse
(
result
);
assertEquals
(
1024
*
4
,
mappedFileQueue
.
getFlushedWhere
());
assertThat
(
mappedFileQueue
.
flush
(
0
)).
isFalse
();
assertThat
(
mappedFileQueue
.
getFlushedWhere
()).
isEqualTo
(
1024
*
4
);
result
=
mappedFileQueue
.
flush
(
0
);
assertFalse
(
result
);
assertEquals
(
1024
*
5
,
mappedFileQueue
.
getFlushedWhere
());
assertThat
(
mappedFileQueue
.
flush
(
0
)).
isFalse
();
assertThat
(
mappedFileQueue
.
getFlushedWhere
()).
isEqualTo
(
1024
*
5
);
result
=
mappedFileQueue
.
flush
(
0
);
assertFalse
(
result
);
assertEquals
(
1024
*
6
,
mappedFileQueue
.
getFlushedWhere
());
assertThat
(
mappedFileQueue
.
flush
(
0
)).
isFalse
();
assertThat
(
mappedFileQueue
.
getFlushedWhere
()).
isEqualTo
(
1024
*
6
);
mappedFileQueue
.
shutdown
(
1000
);
mappedFileQueue
.
destroy
();
logger
.
debug
(
"MappedFileQueue.flush() OK"
);
}
@Test
public
void
test
_g
etMappedMemorySize
()
{
public
void
test
G
etMappedMemorySize
()
{
final
String
fixedMsg
=
"abcd"
;
logger
.
debug
(
"================================================================"
);
MappedFileQueue
mappedFileQueue
=
new
MappedFileQueue
(
"target/unit_test_store/d/"
,
1024
,
null
);
for
(
int
i
=
0
;
i
<
1024
;
i
++)
{
MappedFile
mappedFile
=
mappedFileQueue
.
getLastMappedFile
(
0
);
assertTrue
(
mappedFile
!=
null
);
boolean
result
=
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
());
assertTrue
(
result
);
assertThat
(
mappedFile
).
isNotNull
();
assertThat
(
mappedFile
.
appendMessage
(
fixedMsg
.
getBytes
())).
isTrue
();
}
assertEquals
(
fixedMsg
.
length
()
*
1024
,
mappedFileQueue
.
getMappedMemorySize
());
assertThat
(
mappedFileQueue
.
getMappedMemorySize
()).
isEqualTo
(
fixedMsg
.
length
()
*
1024
);
mappedFileQueue
.
shutdown
(
1000
);
mappedFileQueue
.
destroy
();
logger
.
debug
(
"MappedFileQueue.getMappedMemorySize() OK"
);
}
@Test
public
void
test_deleteExpiredFileByOffset
()
{
logger
.
debug
(
"================================================================"
);
public
void
testDeleteExpiredFileByOffset
()
{
MappedFileQueue
mappedFileQueue
=
new
MappedFileQueue
(
"target/unit_test_store/e"
,
5120
,
null
);
for
(
int
i
=
0
;
i
<
2048
;
i
++)
{
MappedFile
mappedFile
=
mappedFileQueue
.
getLastMappedFile
(
0
);
assertNotNull
(
mappedFile
);
assertThat
(
mappedFile
).
isNotNull
();
ByteBuffer
byteBuffer
=
ByteBuffer
.
allocate
(
ConsumeQueue
.
CQ_STORE_UNIT_SIZE
);
byteBuffer
.
putLong
(
i
);
byte
[]
padding
=
new
byte
[
12
];
Arrays
.
fill
(
padding
,
(
byte
)
'0'
);
Arrays
.
fill
(
padding
,
(
byte
)
'0'
);
byteBuffer
.
put
(
padding
);
byteBuffer
.
flip
();
boolean
result
=
mappedFile
.
appendMessage
(
byteBuffer
.
array
());
assertTrue
(
result
);
assertThat
(
mappedFile
.
appendMessage
(
byteBuffer
.
array
())).
isTrue
();
}
MappedFile
first
=
mappedFileQueue
.
getFirstMappedFile
();
first
.
hold
();
int
count
=
mappedFileQueue
.
deleteExpiredFileByOffset
(
20480
,
ConsumeQueue
.
CQ_STORE_UNIT_SIZE
);
assertEquals
(
0
,
count
);
assertThat
(
mappedFileQueue
.
deleteExpiredFileByOffset
(
20480
,
ConsumeQueue
.
CQ_STORE_UNIT_SIZE
)).
isEqualTo
(
0
);
first
.
release
();
count
=
mappedFileQueue
.
deleteExpiredFileByOffset
(
20480
,
ConsumeQueue
.
CQ_STORE_UNIT_SIZE
);
assertTrue
(
count
>
0
);
assertThat
(
mappedFileQueue
.
deleteExpiredFileByOffset
(
20480
,
ConsumeQueue
.
CQ_STORE_UNIT_SIZE
)).
isGreaterThan
(
0
);
first
=
mappedFileQueue
.
getFirstMappedFile
();
assertT
rue
(
first
.
getFileFromOffset
()
>
0
);
assertT
hat
(
first
.
getFileFromOffset
()).
isGreaterThan
(
0
);
mappedFileQueue
.
shutdown
(
1000
);
mappedFileQueue
.
destroy
();
logger
.
debug
(
"MappedFileQueue.deleteExpiredFileByOffset() OK"
);
}
}
store/src/test/java/org/apache/rocketmq/store/MappedFileTest.java
浏览文件 @
881aef5d
...
...
@@ -21,66 +21,30 @@
package
org.apache.rocketmq.store
;
import
java.io.IOException
;
import
org.junit.AfterClass
;
import
org.junit.BeforeClass
;
import
org.junit.Ignore
;
import
org.junit.Test
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
public
class
MappedFileTest
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
MappedFileTest
.
class
);
private
static
final
String
StoreMessage
=
"Once, there was a chance for me!"
;
@BeforeClass
public
static
void
setUpBeforeClass
()
throws
Exception
{
}
@AfterClass
public
static
void
tearDownAfterClass
()
throws
Exception
{
}
private
final
String
storeMessage
=
"Once, there was a chance for me!"
;
@Test
public
void
test
_write_read
()
throws
IOException
{
public
void
test
SelectMappedBuffer
()
throws
IOException
{
MappedFile
mappedFile
=
new
MappedFile
(
"target/unit_test_store/MappedFileTest/000"
,
1024
*
64
);
boolean
result
=
mappedFile
.
appendMessage
(
StoreMessage
.
getBytes
());
assertTrue
(
result
);
logger
.
debug
(
"write OK"
);
boolean
result
=
mappedFile
.
appendMessage
(
storeMessage
.
getBytes
());
assertThat
(
result
).
isTrue
();
SelectMappedBufferResult
selectMappedBufferResult
=
mappedFile
.
selectMappedBuffer
(
0
);
byte
[]
data
=
new
byte
[
S
toreMessage
.
length
()];
byte
[]
data
=
new
byte
[
s
toreMessage
.
length
()];
selectMappedBufferResult
.
getByteBuffer
().
get
(
data
);
String
readString
=
new
String
(
data
);
logger
.
debug
(
"Read: "
+
readString
);
assertTrue
(
readString
.
equals
(
StoreMessage
));
assertThat
(
readString
).
isEqualTo
(
storeMessage
);
mappedFile
.
shutdown
(
1000
);
assertTrue
(!
mappedFile
.
isAvailable
());
selectMappedBufferResult
.
release
();
assertTrue
(
mappedFile
.
isCleanupOver
());
assertTrue
(
mappedFile
.
destroy
(
1000
));
}
@Ignore
public
void
test_jvm_crashed
()
throws
IOException
{
MappedFile
mappedFile
=
new
MappedFile
(
"target/unit_test_store/MappedFileTest/10086"
,
1024
*
64
);
boolean
result
=
mappedFile
.
appendMessage
(
StoreMessage
.
getBytes
());
assertTrue
(
result
);
logger
.
debug
(
"write OK"
);
SelectMappedBufferResult
selectMappedBufferResult
=
mappedFile
.
selectMappedBuffer
(
0
);
assertThat
(
mappedFile
.
isAvailable
()).
isFalse
();
selectMappedBufferResult
.
release
();
mappedFile
.
shutdown
(
1000
);
byte
[]
data
=
new
byte
[
StoreMessage
.
length
()];
selectMappedBufferResult
.
getByteBuffer
().
get
(
data
);
String
readString
=
new
String
(
data
);
logger
.
debug
(
readString
);
assertThat
(
mappedFile
.
isCleanupOver
()).
isTrue
();
assertThat
(
mappedFile
.
destroy
(
1000
)).
isTrue
();
}
}
store/src/test/java/org/apache/rocketmq/store/StoreCheckpointTest.java
浏览文件 @
881aef5d
...
...
@@ -21,24 +21,13 @@
package
org.apache.rocketmq.store
;
import
java.io.IOException
;
import
org.junit.AfterClass
;
import
org.junit.BeforeClass
;
import
org.junit.Test
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
public
class
StoreCheckpointTest
{
@BeforeClass
public
static
void
setUpBeforeClass
()
throws
Exception
{
}
@AfterClass
public
static
void
tearDownAfterClass
()
throws
Exception
{
}
@Test
public
void
test
_write_r
ead
()
throws
IOException
{
public
void
test
WriteAndR
ead
()
throws
IOException
{
StoreCheckpoint
storeCheckpoint
=
new
StoreCheckpoint
(
"target/checkpoint_test/0000"
);
long
physicMsgTimestamp
=
0xAABB
;
long
logicsMsgTimestamp
=
0xCCDD
;
...
...
@@ -47,10 +36,10 @@ public class StoreCheckpointTest {
storeCheckpoint
.
flush
();
long
diff
=
physicMsgTimestamp
-
storeCheckpoint
.
getMinTimestamp
();
assertT
rue
(
diff
==
3000
);
assertT
hat
(
diff
).
isEqualTo
(
3000
);
storeCheckpoint
.
shutdown
();
storeCheckpoint
=
new
StoreCheckpoint
(
"target/checkpoint_test/0000"
);
assertT
rue
(
physicMsgTimestamp
==
storeCheckpoint
.
getPhysicMsgTimestamp
()
);
assertT
rue
(
logicsMsgTimestamp
==
storeCheckpoint
.
getLogicsMsgTimestamp
()
);
assertT
hat
(
storeCheckpoint
.
getPhysicMsgTimestamp
()).
isEqualTo
(
physicMsgTimestamp
);
assertT
hat
(
storeCheckpoint
.
getLogicsMsgTimestamp
()).
isEqualTo
(
logicsMsgTimestamp
);
}
}
store/src/test/java/org/apache/rocketmq/store/index/IndexFileTest.java
浏览文件 @
881aef5d
...
...
@@ -24,47 +24,43 @@ import java.util.ArrayList;
import
java.util.List
;
import
org.junit.Test
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertFalse
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
public
class
IndexFileTest
{
private
static
final
int
HASH_SLOT_NUM
=
100
;
private
static
final
int
INDEX_NUM
=
400
;
private
final
int
HASH_SLOT_NUM
=
100
;
private
final
int
INDEX_NUM
=
400
;
@Test
public
void
test
_put_index
()
throws
Exception
{
public
void
test
PutKey
()
throws
Exception
{
IndexFile
indexFile
=
new
IndexFile
(
"100"
,
HASH_SLOT_NUM
,
INDEX_NUM
,
0
,
0
);
for
(
long
i
=
0
;
i
<
(
INDEX_NUM
-
1
);
i
++)
{
boolean
putResult
=
indexFile
.
putKey
(
Long
.
toString
(
i
),
i
,
System
.
currentTimeMillis
());
assertT
rue
(
putResult
);
assertT
hat
(
putResult
).
isTrue
(
);
}
// put over index file capacity.
boolean
putResult
=
indexFile
.
putKey
(
Long
.
toString
(
400
),
400
,
System
.
currentTimeMillis
());
assertFalse
(
putResult
);
assertThat
(
putResult
).
isFalse
();
indexFile
.
destroy
(
0
);
}
@Test
public
void
test
_put_get_index
()
throws
Exception
{
public
void
test
SelectPhyOffset
()
throws
Exception
{
IndexFile
indexFile
=
new
IndexFile
(
"200"
,
HASH_SLOT_NUM
,
INDEX_NUM
,
0
,
0
);
for
(
long
i
=
0
;
i
<
(
INDEX_NUM
-
1
);
i
++)
{
boolean
putResult
=
indexFile
.
putKey
(
Long
.
toString
(
i
),
i
,
System
.
currentTimeMillis
());
assertT
rue
(
putResult
);
assertT
hat
(
putResult
).
isTrue
(
);
}
// put over index file capacity.
boolean
putResult
=
indexFile
.
putKey
(
Long
.
toString
(
400
),
400
,
System
.
currentTimeMillis
());
assert
False
(
putResult
);
assert
That
(
putResult
).
isFalse
(
);
final
List
<
Long
>
phyOffsets
=
new
ArrayList
<
Long
>();
indexFile
.
selectPhyOffset
(
phyOffsets
,
"60"
,
10
,
0
,
Long
.
MAX_VALUE
,
true
);
assertFalse
(
phyOffsets
.
isEmpty
());
assertEquals
(
1
,
phyOffsets
.
size
());
assertThat
(
phyOffsets
).
isNotEmpty
();
assertThat
(
phyOffsets
.
size
()).
isEqualTo
(
1
);
indexFile
.
destroy
(
0
);
}
}
store/src/test/java/org/apache/rocketmq/store/schedule/ScheduleMessageTest.java
已删除
100644 → 0
浏览文件 @
e9a87ea9
/*
* 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.
*/
/**
* $Id: ScheduleMessageTest.java 1831 2013-05-16 01:39:51Z vintagewang@apache.org $
*/
package
org.apache.rocketmq.store.schedule
;
import
java.net.InetAddress
;
import
java.net.InetSocketAddress
;
import
java.net.SocketAddress
;
import
java.util.concurrent.atomic.AtomicInteger
;
import
org.apache.rocketmq.store.DefaultMessageStore
;
import
org.apache.rocketmq.store.GetMessageResult
;
import
org.apache.rocketmq.store.MessageExtBrokerInner
;
import
org.apache.rocketmq.store.MessageStore
;
import
org.apache.rocketmq.store.PutMessageResult
;
import
org.apache.rocketmq.store.config.MessageStoreConfig
;
import
org.junit.AfterClass
;
import
org.junit.BeforeClass
;
import
org.junit.Ignore
;
import
org.junit.Test
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
@Ignore
public
class
ScheduleMessageTest
{
private
static
final
String
StoreMessage
=
"Once, there was a chance for me!"
;
private
static
int
QUEUE_TOTAL
=
100
;
private
static
AtomicInteger
QueueId
=
new
AtomicInteger
(
0
);
private
static
SocketAddress
BornHost
;
private
static
SocketAddress
StoreHost
;
private
static
byte
[]
MessageBody
;
@BeforeClass
public
static
void
setUpBeforeClass
()
throws
Exception
{
StoreHost
=
new
InetSocketAddress
(
InetAddress
.
getLocalHost
(),
8123
);
BornHost
=
new
InetSocketAddress
(
InetAddress
.
getByName
(
"127.0.0.1"
),
0
);
}
@AfterClass
public
static
void
tearDownAfterClass
()
throws
Exception
{
}
@Test
public
void
test_delay_message
()
throws
Exception
{
System
.
out
.
println
(
"================================================================"
);
long
totalMsgs
=
10000
;
QUEUE_TOTAL
=
32
;
MessageBody
=
StoreMessage
.
getBytes
();
MessageStoreConfig
messageStoreConfig
=
new
MessageStoreConfig
();
messageStoreConfig
.
setMapedFileSizeCommitLog
(
1024
*
32
);
messageStoreConfig
.
setMapedFileSizeConsumeQueue
(
1024
*
16
);
messageStoreConfig
.
setMaxHashSlotNum
(
100
);
messageStoreConfig
.
setMaxIndexNum
(
1000
*
10
);
MessageStore
master
=
new
DefaultMessageStore
(
messageStoreConfig
,
null
,
null
,
null
);
boolean
load
=
master
.
load
();
assertTrue
(
load
);
master
.
start
();
for
(
int
i
=
0
;
i
<
totalMsgs
;
i
++)
{
MessageExtBrokerInner
msg
=
buildMessage
();
msg
.
setDelayTimeLevel
(
i
%
4
);
PutMessageResult
result
=
master
.
putMessage
(
msg
);
System
.
out
.
println
(
i
+
"\t"
+
result
.
getAppendMessageResult
().
getMsgId
());
}
System
.
out
.
println
(
"write message over, wait time up"
);
Thread
.
sleep
(
1000
*
20
);
for
(
long
i
=
0
;
i
<
totalMsgs
;
i
++)
{
try
{
GetMessageResult
result
=
master
.
getMessage
(
"GROUP_A"
,
"TOPIC_A"
,
0
,
i
,
1024
*
1024
,
null
);
if
(
result
==
null
)
{
System
.
out
.
println
(
"result == null "
+
i
);
}
assertTrue
(
result
!=
null
);
result
.
release
();
System
.
out
.
println
(
"read "
+
i
+
" OK"
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
}
Thread
.
sleep
(
1000
*
15
);
master
.
shutdown
();
master
.
destroy
();
System
.
out
.
println
(
"================================================================"
);
}
public
MessageExtBrokerInner
buildMessage
()
{
MessageExtBrokerInner
msg
=
new
MessageExtBrokerInner
();
msg
.
setTopic
(
"AAA"
);
msg
.
setTags
(
"TAG1"
);
msg
.
setKeys
(
"Hello"
);
msg
.
setBody
(
MessageBody
);
msg
.
setKeys
(
String
.
valueOf
(
System
.
currentTimeMillis
()));
msg
.
setQueueId
(
Math
.
abs
(
QueueId
.
getAndIncrement
())
%
QUEUE_TOTAL
);
msg
.
setSysFlag
(
4
);
msg
.
setBornTimestamp
(
System
.
currentTimeMillis
());
msg
.
setStoreHost
(
StoreHost
);
msg
.
setBornHost
(
BornHost
);
return
msg
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录