2018-04-14 01:02:01 +02:00
|
|
|
use std::sync::Arc;
|
|
|
|
use std::{fmt, mem};
|
2017-10-24 08:25:32 +02:00
|
|
|
|
2018-11-14 07:53:30 +01:00
|
|
|
use bytes::{Bytes, BytesMut};
|
|
|
|
use futures::{Async, Poll, Stream};
|
|
|
|
|
2018-11-14 18:38:16 +01:00
|
|
|
use error::{Error, PayloadError};
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2017-12-14 07:36:28 +01:00
|
|
|
/// Type represent streaming body
|
2018-11-14 18:38:16 +01:00
|
|
|
pub type BodyStream = Box<dyn Stream<Item = Bytes, Error = Error>>;
|
|
|
|
|
|
|
|
/// Type represent streaming payload
|
|
|
|
pub type PayloadStream = Box<dyn Stream<Item = Bytes, Error = PayloadError>>;
|
2017-10-24 08:25:32 +02:00
|
|
|
|
2018-11-17 06:30:37 +01:00
|
|
|
#[derive(Debug)]
|
|
|
|
/// Different type of body
|
|
|
|
pub enum BodyLength {
|
2018-11-14 07:53:30 +01:00
|
|
|
None,
|
|
|
|
Zero,
|
|
|
|
Sized(usize),
|
2018-11-17 06:30:37 +01:00
|
|
|
Sized64(u64),
|
2018-11-14 07:53:30 +01:00
|
|
|
Unsized,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Type that provides this trait can be streamed to a peer.
|
|
|
|
pub trait MessageBody {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength;
|
2018-11-14 07:53:30 +01:00
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MessageBody for () {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Zero
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
Ok(Async::Ready(None))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 08:25:32 +02:00
|
|
|
/// Represents various types of http message body.
|
|
|
|
pub enum Body {
|
|
|
|
/// Empty response. `Content-Length` header is set to `0`
|
|
|
|
Empty,
|
|
|
|
/// Specific response body.
|
2017-11-10 22:42:32 +01:00
|
|
|
Binary(Binary),
|
2017-10-24 08:25:32 +02:00
|
|
|
/// Unspecified streaming response. Developer is responsible for setting
|
|
|
|
/// right `Content-Length` or `Transfer-Encoding` headers.
|
2017-11-30 23:42:20 +01:00
|
|
|
Streaming(BodyStream),
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Represents various types of binary body.
|
|
|
|
/// `Content-Length` header is set to length of the body.
|
2017-11-27 19:39:47 +01:00
|
|
|
#[derive(Debug, PartialEq)]
|
2017-11-10 22:42:32 +01:00
|
|
|
pub enum Binary {
|
2017-10-24 08:25:32 +02:00
|
|
|
/// Bytes body
|
|
|
|
Bytes(Bytes),
|
|
|
|
/// Static slice
|
|
|
|
Slice(&'static [u8]),
|
2018-01-15 22:47:25 +01:00
|
|
|
/// Shared string body
|
2017-10-24 08:49:27 +02:00
|
|
|
#[doc(hidden)]
|
2018-05-30 01:32:39 +02:00
|
|
|
SharedString(Arc<String>),
|
2018-03-04 19:33:18 +01:00
|
|
|
/// Shared vec body
|
|
|
|
SharedVec(Arc<Vec<u8>>),
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Body {
|
2017-11-20 05:55:37 +01:00
|
|
|
/// Does this body streaming.
|
2017-12-14 01:44:35 +01:00
|
|
|
#[inline]
|
2017-11-20 05:55:37 +01:00
|
|
|
pub fn is_streaming(&self) -> bool {
|
2017-10-24 08:25:32 +02:00
|
|
|
match *self {
|
2018-10-05 02:00:27 +02:00
|
|
|
Body::Streaming(_) => true,
|
2018-04-14 01:02:01 +02:00
|
|
|
_ => false,
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
2017-11-09 01:44:23 +01:00
|
|
|
|
|
|
|
/// Is this binary body.
|
2017-12-14 01:44:35 +01:00
|
|
|
#[inline]
|
2017-11-09 01:44:23 +01:00
|
|
|
pub fn is_binary(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Body::Binary(_) => true,
|
2018-04-14 01:02:01 +02:00
|
|
|
_ => false,
|
2017-11-09 01:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
2017-10-24 08:25:32 +02:00
|
|
|
|
2018-05-16 01:41:46 +02:00
|
|
|
/// Is this binary empy.
|
|
|
|
#[inline]
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Body::Empty => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 08:39:01 +02:00
|
|
|
/// Create body from slice (copy)
|
2017-10-26 01:25:26 +02:00
|
|
|
pub fn from_slice(s: &[u8]) -> Body {
|
2017-11-10 22:42:32 +01:00
|
|
|
Body::Binary(Binary::Bytes(Bytes::from(s)))
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
2018-05-16 01:41:46 +02:00
|
|
|
|
|
|
|
/// Is this binary body.
|
|
|
|
#[inline]
|
2018-10-07 09:04:38 +02:00
|
|
|
pub(crate) fn into_binary(self) -> Option<Binary> {
|
2018-05-16 01:41:46 +02:00
|
|
|
match self {
|
2018-10-07 09:04:38 +02:00
|
|
|
Body::Binary(b) => Some(b),
|
|
|
|
_ => None,
|
2018-05-16 01:41:46 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
|
2017-11-30 23:42:20 +01:00
|
|
|
impl PartialEq for Body {
|
|
|
|
fn eq(&self, other: &Body) -> bool {
|
|
|
|
match *self {
|
|
|
|
Body::Empty => match *other {
|
|
|
|
Body::Empty => true,
|
|
|
|
_ => false,
|
|
|
|
},
|
|
|
|
Body::Binary(ref b) => match *other {
|
|
|
|
Body::Binary(ref b2) => b == b2,
|
|
|
|
_ => false,
|
|
|
|
},
|
2018-10-05 02:00:27 +02:00
|
|
|
Body::Streaming(_) => false,
|
2017-11-30 23:42:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Debug for Body {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
Body::Empty => write!(f, "Body::Empty"),
|
|
|
|
Body::Binary(ref b) => write!(f, "Body::Binary({:?})", b),
|
|
|
|
Body::Streaming(_) => write!(f, "Body::Streaming(_)"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
impl<T> From<T> for Body
|
|
|
|
where
|
|
|
|
T: Into<Binary>,
|
|
|
|
{
|
2017-10-24 08:39:01 +02:00
|
|
|
fn from(b: T) -> Body {
|
|
|
|
Body::Binary(b.into())
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl Binary {
|
2017-12-14 01:44:35 +01:00
|
|
|
#[inline]
|
2018-06-02 15:51:58 +02:00
|
|
|
/// Returns `true` if body is empty
|
2017-10-26 01:25:26 +02:00
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
self.len() == 0
|
|
|
|
}
|
|
|
|
|
2017-12-14 01:44:35 +01:00
|
|
|
#[inline]
|
2018-06-02 15:51:58 +02:00
|
|
|
/// Length of body in bytes
|
2017-10-24 08:39:01 +02:00
|
|
|
pub fn len(&self) -> usize {
|
2017-10-26 01:25:26 +02:00
|
|
|
match *self {
|
2017-11-10 22:42:32 +01:00
|
|
|
Binary::Bytes(ref bytes) => bytes.len(),
|
|
|
|
Binary::Slice(slice) => slice.len(),
|
|
|
|
Binary::SharedString(ref s) => s.len(),
|
2018-03-04 19:33:18 +01:00
|
|
|
Binary::SharedVec(ref s) => s.len(),
|
2017-10-24 08:39:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create binary body from slice
|
2017-11-10 22:42:32 +01:00
|
|
|
pub fn from_slice(s: &[u8]) -> Binary {
|
|
|
|
Binary::Bytes(Bytes::from(s))
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
2018-01-14 23:40:39 +01:00
|
|
|
|
|
|
|
/// Convert Binary to a Bytes instance
|
|
|
|
pub fn take(&mut self) -> Bytes {
|
|
|
|
mem::replace(self, Binary::Slice(b"")).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Clone for Binary {
|
|
|
|
fn clone(&self) -> Binary {
|
|
|
|
match *self {
|
|
|
|
Binary::Bytes(ref bytes) => Binary::Bytes(bytes.clone()),
|
|
|
|
Binary::Slice(slice) => Binary::Bytes(Bytes::from(slice)),
|
2018-03-04 19:33:18 +01:00
|
|
|
Binary::SharedString(ref s) => Binary::SharedString(s.clone()),
|
|
|
|
Binary::SharedVec(ref s) => Binary::SharedVec(s.clone()),
|
2018-01-14 23:40:39 +01:00
|
|
|
}
|
|
|
|
}
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
|
2018-01-11 00:28:33 +01:00
|
|
|
impl Into<Bytes> for Binary {
|
|
|
|
fn into(self) -> Bytes {
|
|
|
|
match self {
|
|
|
|
Binary::Bytes(bytes) => bytes,
|
|
|
|
Binary::Slice(slice) => Bytes::from(slice),
|
|
|
|
Binary::SharedString(s) => Bytes::from(s.as_str()),
|
2018-03-04 19:33:18 +01:00
|
|
|
Binary::SharedVec(s) => Bytes::from(AsRef::<[u8]>::as_ref(s.as_ref())),
|
2018-01-11 00:28:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<&'static str> for Binary {
|
|
|
|
fn from(s: &'static str) -> Binary {
|
|
|
|
Binary::Slice(s.as_ref())
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<&'static [u8]> for Binary {
|
|
|
|
fn from(s: &'static [u8]) -> Binary {
|
|
|
|
Binary::Slice(s)
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<Vec<u8>> for Binary {
|
|
|
|
fn from(vec: Vec<u8>) -> Binary {
|
|
|
|
Binary::Bytes(Bytes::from(vec))
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<String> for Binary {
|
|
|
|
fn from(s: String) -> Binary {
|
|
|
|
Binary::Bytes(Bytes::from(s))
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl<'a> From<&'a String> for Binary {
|
|
|
|
fn from(s: &'a String) -> Binary {
|
|
|
|
Binary::Bytes(Bytes::from(AsRef::<[u8]>::as_ref(&s)))
|
2017-10-30 06:50:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<Bytes> for Binary {
|
|
|
|
fn from(s: Bytes) -> Binary {
|
|
|
|
Binary::Bytes(s)
|
2017-10-24 08:39:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<BytesMut> for Binary {
|
|
|
|
fn from(s: BytesMut) -> Binary {
|
|
|
|
Binary::Bytes(s.freeze())
|
2017-10-24 08:39:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl From<Arc<String>> for Binary {
|
|
|
|
fn from(body: Arc<String>) -> Binary {
|
2018-05-30 01:32:39 +02:00
|
|
|
Binary::SharedString(body)
|
2017-10-24 08:49:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl<'a> From<&'a Arc<String>> for Binary {
|
|
|
|
fn from(body: &'a Arc<String>) -> Binary {
|
2018-05-30 01:32:39 +02:00
|
|
|
Binary::SharedString(Arc::clone(body))
|
2017-10-24 08:49:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-04 19:33:18 +01:00
|
|
|
impl From<Arc<Vec<u8>>> for Binary {
|
|
|
|
fn from(body: Arc<Vec<u8>>) -> Binary {
|
|
|
|
Binary::SharedVec(body)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> From<&'a Arc<Vec<u8>>> for Binary {
|
|
|
|
fn from(body: &'a Arc<Vec<u8>>) -> Binary {
|
|
|
|
Binary::SharedVec(Arc::clone(body))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-10 22:42:32 +01:00
|
|
|
impl AsRef<[u8]> for Binary {
|
2018-03-18 19:05:44 +01:00
|
|
|
#[inline]
|
2017-10-24 08:25:32 +02:00
|
|
|
fn as_ref(&self) -> &[u8] {
|
2017-10-26 01:25:26 +02:00
|
|
|
match *self {
|
2018-03-19 17:30:58 +01:00
|
|
|
Binary::Bytes(ref bytes) => bytes.as_ref(),
|
2017-11-10 22:42:32 +01:00
|
|
|
Binary::Slice(slice) => slice,
|
|
|
|
Binary::SharedString(ref s) => s.as_bytes(),
|
2018-03-04 19:33:18 +01:00
|
|
|
Binary::SharedVec(ref s) => s.as_ref().as_ref(),
|
2017-10-24 08:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-24 09:09:52 +02:00
|
|
|
|
2018-11-14 07:53:30 +01:00
|
|
|
impl MessageBody for Bytes {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Sized(self.len())
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
if self.is_empty() {
|
|
|
|
Ok(Async::Ready(None))
|
|
|
|
} else {
|
|
|
|
Ok(Async::Ready(Some(mem::replace(self, Bytes::new()))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MessageBody for &'static str {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Sized(self.len())
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
if self.is_empty() {
|
|
|
|
Ok(Async::Ready(None))
|
|
|
|
} else {
|
|
|
|
Ok(Async::Ready(Some(Bytes::from_static(
|
|
|
|
mem::replace(self, "").as_ref(),
|
|
|
|
))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MessageBody for &'static [u8] {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Sized(self.len())
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
if self.is_empty() {
|
|
|
|
Ok(Async::Ready(None))
|
|
|
|
} else {
|
|
|
|
Ok(Async::Ready(Some(Bytes::from_static(mem::replace(
|
|
|
|
self, b"",
|
|
|
|
)))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MessageBody for Vec<u8> {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Sized(self.len())
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
if self.is_empty() {
|
|
|
|
Ok(Async::Ready(None))
|
|
|
|
} else {
|
|
|
|
Ok(Async::Ready(Some(Bytes::from(mem::replace(
|
|
|
|
self,
|
|
|
|
Vec::new(),
|
|
|
|
)))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl MessageBody for String {
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Sized(self.len())
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
if self.is_empty() {
|
|
|
|
Ok(Async::Ready(None))
|
|
|
|
} else {
|
|
|
|
Ok(Async::Ready(Some(Bytes::from(
|
|
|
|
mem::replace(self, String::new()).into_bytes(),
|
|
|
|
))))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub struct MessageBodyStream<S> {
|
|
|
|
stream: S,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S> MessageBodyStream<S>
|
|
|
|
where
|
|
|
|
S: Stream<Item = Bytes, Error = Error>,
|
|
|
|
{
|
|
|
|
pub fn new(stream: S) -> Self {
|
|
|
|
MessageBodyStream { stream }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S> MessageBody for MessageBodyStream<S>
|
|
|
|
where
|
|
|
|
S: Stream<Item = Bytes, Error = Error>,
|
|
|
|
{
|
2018-11-17 06:30:37 +01:00
|
|
|
fn length(&self) -> BodyLength {
|
|
|
|
BodyLength::Unsized
|
2018-11-14 07:53:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn poll_next(&mut self) -> Poll<Option<Bytes>, Error> {
|
|
|
|
self.stream.poll()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-24 09:09:52 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
2017-11-20 05:55:37 +01:00
|
|
|
#[test]
|
|
|
|
fn test_body_is_streaming() {
|
|
|
|
assert_eq!(Body::Empty.is_streaming(), false);
|
|
|
|
assert_eq!(Body::Binary(Binary::from("")).is_streaming(), false);
|
|
|
|
}
|
|
|
|
|
2017-11-20 05:32:37 +01:00
|
|
|
#[test]
|
|
|
|
fn test_is_empty() {
|
|
|
|
assert_eq!(Binary::from("").is_empty(), true);
|
|
|
|
assert_eq!(Binary::from("test").is_empty(), false);
|
|
|
|
}
|
|
|
|
|
2017-10-24 09:09:52 +02:00
|
|
|
#[test]
|
|
|
|
fn test_static_str() {
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from("test").len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from("test").as_ref(), b"test");
|
2017-10-24 09:09:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_static_bytes() {
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from(b"test".as_ref()).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(b"test".as_ref()).as_ref(), b"test");
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from_slice(b"test".as_ref()).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from_slice(b"test".as_ref()).as_ref(), b"test");
|
2017-10-24 09:09:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_vec() {
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from(Vec::from("test")).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(Vec::from("test")).as_ref(), b"test");
|
2017-10-24 09:09:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_bytes() {
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from(Bytes::from("test")).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(Bytes::from("test")).as_ref(), b"test");
|
2017-10-24 09:09:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_arc_string() {
|
|
|
|
let b = Arc::new("test".to_owned());
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from(b.clone()).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(b.clone()).as_ref(), b"test");
|
2017-11-10 22:42:32 +01:00
|
|
|
assert_eq!(Binary::from(&b).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(&b).as_ref(), b"test");
|
2017-10-24 09:09:52 +02:00
|
|
|
}
|
2017-11-20 05:32:37 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_string() {
|
|
|
|
let b = "test".to_owned();
|
|
|
|
assert_eq!(Binary::from(b.clone()).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(b.clone()).as_ref(), b"test");
|
2017-11-20 05:32:37 +01:00
|
|
|
assert_eq!(Binary::from(&b).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(&b).as_ref(), b"test");
|
2017-11-20 05:32:37 +01:00
|
|
|
}
|
|
|
|
|
2018-03-04 19:33:18 +01:00
|
|
|
#[test]
|
|
|
|
fn test_shared_vec() {
|
|
|
|
let b = Arc::new(Vec::from(&b"test"[..]));
|
|
|
|
assert_eq!(Binary::from(b.clone()).len(), 4);
|
|
|
|
assert_eq!(Binary::from(b.clone()).as_ref(), &b"test"[..]);
|
|
|
|
assert_eq!(Binary::from(&b).len(), 4);
|
|
|
|
assert_eq!(Binary::from(&b).as_ref(), &b"test"[..]);
|
|
|
|
}
|
|
|
|
|
2017-11-20 05:32:37 +01:00
|
|
|
#[test]
|
|
|
|
fn test_bytes_mut() {
|
2018-04-14 01:02:01 +02:00
|
|
|
let b = BytesMut::from("test");
|
2017-11-20 05:32:37 +01:00
|
|
|
assert_eq!(Binary::from(b.clone()).len(), 4);
|
2018-04-05 05:24:09 +02:00
|
|
|
assert_eq!(Binary::from(b).as_ref(), b"test");
|
2017-11-20 05:32:37 +01:00
|
|
|
}
|
2018-01-11 00:28:33 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_binary_into() {
|
|
|
|
let bytes = Bytes::from_static(b"test");
|
|
|
|
let b: Bytes = Binary::from("test").into();
|
|
|
|
assert_eq!(b, bytes);
|
|
|
|
let b: Bytes = Binary::from(bytes.clone()).into();
|
|
|
|
assert_eq!(b, bytes);
|
|
|
|
}
|
2017-10-24 09:09:52 +02:00
|
|
|
}
|