提交 d72addff 编写于 作者: S shroman

Removed author info and formatted.

上级 8feb88d1
...@@ -6,39 +6,33 @@ ...@@ -6,39 +6,33 @@
* (the "License"); you may not use this file except in compliance with * (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at * the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.apache.rocketmq.common; package org.apache.rocketmq.common;
import org.apache.rocketmq.common.message.Message;
import org.apache.rocketmq.common.message.MessageDecoder;
import org.junit.Test;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays; import java.util.Arrays;
import java.util.List; import java.util.List;
import org.apache.rocketmq.common.message.Message;
import org.apache.rocketmq.common.message.MessageDecoder;
import org.junit.Test;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
/**
* Created by liuzhendong on 16/12/21.
*/
public class MessageEncodeDecodeTest { public class MessageEncodeDecodeTest {
@Test @Test
public void testEncodeDecodeSingle() throws Exception{ public void testEncodeDecodeSingle() throws Exception {
Message message = new Message("topic", "body".getBytes()); Message message = new Message("topic", "body".getBytes());
message.setFlag(12); message.setFlag(12);
message.putUserProperty("key","value"); message.putUserProperty("key", "value");
byte[] bytes = MessageDecoder.encodeMessage(message); byte[] bytes = MessageDecoder.encodeMessage(message);
ByteBuffer buffer = ByteBuffer.allocate(bytes.length); ByteBuffer buffer = ByteBuffer.allocate(bytes.length);
buffer.put(bytes); buffer.put(bytes);
...@@ -59,7 +53,7 @@ public class MessageEncodeDecodeTest { ...@@ -59,7 +53,7 @@ public class MessageEncodeDecodeTest {
message.putUserProperty("key", "value" + i); message.putUserProperty("key", "value" + i);
messages.add(message); messages.add(message);
} }
byte[] bytes = MessageDecoder.encodeMessages(messages); byte[] bytes = MessageDecoder.encodeMessages(messages);
ByteBuffer buffer = ByteBuffer.allocate(bytes.length); ByteBuffer buffer = ByteBuffer.allocate(bytes.length);
buffer.put(bytes); buffer.put(bytes);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册