2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
//! A type representing either success or failure
|
2011-12-13 18:25:51 -06:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
#[allow(missing_doc)];
|
2012-10-03 16:52:09 -05:00
|
|
|
|
2013-07-02 14:47:32 -05:00
|
|
|
use clone::Clone;
|
2012-09-04 13:12:17 -05:00
|
|
|
use cmp::Eq;
|
2012-12-23 16:41:37 -06:00
|
|
|
use either;
|
2013-08-01 02:16:42 -05:00
|
|
|
use iterator::Iterator;
|
2013-08-03 12:40:20 -05:00
|
|
|
use option::{None, Option, Some, OptionIterator};
|
2012-12-23 16:41:37 -06:00
|
|
|
use vec;
|
2013-06-21 07:29:53 -05:00
|
|
|
use vec::{OwnedVector, ImmutableVector};
|
2013-06-08 20:38:47 -05:00
|
|
|
use container::Container;
|
2013-08-03 18:59:24 -05:00
|
|
|
use to_str::ToStr;
|
|
|
|
use str::StrSlice;
|
|
|
|
|
|
|
|
/// `Result` is a type that represents either success (`Ok`) or failure (`Err`).
|
|
|
|
///
|
|
|
|
/// In order to provide informative error messages, `E` is reqired to implement `ToStr`.
|
|
|
|
/// It is further recommended for `E` to be a descriptive error type, eg a `enum` for
|
|
|
|
/// all possible errors cases.
|
2013-03-22 14:33:53 -05:00
|
|
|
#[deriving(Clone, Eq)]
|
2013-08-03 18:59:24 -05:00
|
|
|
pub enum Result<T, E> {
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Contains the successful result value
|
2012-08-26 18:54:31 -05:00
|
|
|
Ok(T),
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Contains the error value
|
2013-08-03 18:59:24 -05:00
|
|
|
Err(E)
|
2011-12-13 18:25:51 -06:00
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
impl<T, E: ToStr> Result<T, E> {
|
|
|
|
/// Convert to the `either` type
|
|
|
|
///
|
|
|
|
/// `Ok` result variants are converted to `either::Right` variants, `Err`
|
|
|
|
/// result variants are converted to `either::Left`.
|
2013-07-26 20:36:51 -05:00
|
|
|
#[inline]
|
2013-07-24 22:25:18 -05:00
|
|
|
pub fn to_either(self)-> either::Either<E, T>{
|
2013-07-26 20:36:51 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => either::Right(t),
|
|
|
|
Err(e) => either::Left(e),
|
|
|
|
}
|
2011-12-16 09:31:35 -06:00
|
|
|
}
|
2013-07-26 21:19:33 -05:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Get a reference to the value out of a successful result
|
|
|
|
///
|
|
|
|
/// # Failure
|
|
|
|
///
|
|
|
|
/// If the result is an error
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:26 -05:00
|
|
|
pub fn get_ref<'a>(&'a self) -> &'a T {
|
|
|
|
match *self {
|
2013-07-24 22:41:13 -05:00
|
|
|
Ok(ref t) => t,
|
2013-08-03 18:59:24 -05:00
|
|
|
Err(ref e) => fail!("called `Result::get_ref()` on `Err` value: %s", e.to_str()),
|
2013-07-26 20:03:26 -05:00
|
|
|
}
|
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
2013-07-24 22:41:13 -05:00
|
|
|
/// Returns true if the result is `Ok`
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:44 -05:00
|
|
|
pub fn is_ok(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Ok(_) => true,
|
|
|
|
Err(_) => false
|
|
|
|
}
|
|
|
|
}
|
2012-04-01 17:44:01 -05:00
|
|
|
|
2013-07-24 22:41:13 -05:00
|
|
|
/// Returns true if the result is `Err`
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:44 -05:00
|
|
|
pub fn is_err(&self) -> bool {
|
|
|
|
!self.is_ok()
|
|
|
|
}
|
2012-04-01 17:44:01 -05:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Ok` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is returned. if `self` is `Err` then it is
|
|
|
|
/// immediately returned. This function can be used to compose the results
|
|
|
|
/// of two functions.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
2013-08-03 12:40:20 -05:00
|
|
|
/// for buf in read_file(file) {
|
2013-08-03 18:59:24 -05:00
|
|
|
/// print_buf(buf)
|
|
|
|
/// }
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-08-03 12:40:20 -05:00
|
|
|
pub fn iter<'r>(&'r self) -> OptionIterator<&'r T> {
|
2013-07-26 20:03:44 -05:00
|
|
|
match *self {
|
2013-08-03 12:40:20 -05:00
|
|
|
Ok(ref t) => Some(t),
|
|
|
|
Err(*) => None,
|
2013-08-07 21:21:36 -05:00
|
|
|
}.move_iter()
|
2013-07-26 20:03:44 -05:00
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Err` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is returned. if `self` is `Ok` then it is
|
|
|
|
/// immediately returned. This function can be used to pass through a
|
|
|
|
/// successful result while handling an error.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-08-03 12:40:20 -05:00
|
|
|
pub fn iter_err<'r>(&'r self) -> OptionIterator<&'r E> {
|
2013-07-26 20:03:44 -05:00
|
|
|
match *self {
|
2013-08-03 12:40:20 -05:00
|
|
|
Ok(*) => None,
|
|
|
|
Err(ref t) => Some(t),
|
2013-08-07 21:21:36 -05:00
|
|
|
}.move_iter()
|
2013-07-26 20:03:44 -05:00
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Unwraps a result, yielding the content of an `Ok`.
|
|
|
|
/// Fails if the value is a `Err` with an error message derived
|
|
|
|
/// from `E`'s `ToStr` implementation.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:57 -05:00
|
|
|
pub fn unwrap(self) -> T {
|
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
2013-08-03 18:59:24 -05:00
|
|
|
Err(e) => fail!("called `Result::unwrap()` on `Err` value: %s", e.to_str()),
|
2013-07-26 20:03:57 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Unwraps a result, yielding the content of an `Err`.
|
|
|
|
/// Fails if the value is a `Ok`.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-26 20:03:57 -05:00
|
|
|
pub fn unwrap_err(self) -> E {
|
2013-08-03 18:59:24 -05:00
|
|
|
self.expect_err("called `Result::unwrap_err()` on `Ok` value")
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Unwraps a result, yielding the content of an `Ok`.
|
|
|
|
/// Fails if the value is a `Err` with a custom failure message.
|
|
|
|
#[inline]
|
|
|
|
pub fn expect(self, reason: &str) -> T {
|
|
|
|
match self {
|
|
|
|
Ok(t) => t,
|
|
|
|
Err(_) => fail!(reason.to_owned()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Unwraps a result, yielding the content of an `Err`
|
|
|
|
/// Fails if the value is a `Ok` with a custom failure message.
|
|
|
|
#[inline]
|
|
|
|
pub fn expect_err(self, reason: &str) -> E {
|
2013-07-26 20:03:57 -05:00
|
|
|
match self {
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => e,
|
2013-08-03 18:59:24 -05:00
|
|
|
Ok(_) => fail!(reason.to_owned()),
|
2013-07-26 20:03:57 -05:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 20:55:19 -06:00
|
|
|
|
2013-08-04 18:05:25 -05:00
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Ok` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is wrapped in `Ok` and returned. if `self` is
|
|
|
|
/// `Err` then it is immediately returned. This function can be used to
|
|
|
|
/// compose the results of two functions.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// let res = do read_file(file).map_move |buf| {
|
|
|
|
/// parse_bytes(buf)
|
|
|
|
/// }
|
|
|
|
#[inline]
|
|
|
|
pub fn map_move<U>(self, op: &fn(T) -> U) -> Result<U,E> {
|
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(op(t)),
|
|
|
|
Err(e) => Err(e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Err` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is wrapped in an `Err` and returned. if `self` is
|
|
|
|
/// `Ok` then it is immediately returned. This function can be used to pass
|
|
|
|
/// through a successful result while handling an error.
|
|
|
|
#[inline]
|
|
|
|
pub fn map_err_move<F>(self, op: &fn(E) -> F) -> Result<T,F> {
|
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(t),
|
|
|
|
Err(e) => Err(op(e))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Ok` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is returned. if `self` is `Err` then it is
|
|
|
|
/// immediately returned. This function can be used to compose the results
|
|
|
|
/// of two functions.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// let res = do read_file(file) |buf| {
|
|
|
|
/// Ok(parse_bytes(buf))
|
|
|
|
/// };
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-24 22:41:13 -05:00
|
|
|
pub fn chain<U>(self, op: &fn(T) -> Result<U, E>) -> Result<U, E> {
|
2013-07-22 19:27:53 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => op(t),
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => Err(e),
|
2013-07-22 19:27:53 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
/// Call a function based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Err` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is returned. if `self` is `Ok` then it is
|
|
|
|
/// immediately returned. This function can be used to pass through a
|
|
|
|
/// successful result while handling an error.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-24 22:41:13 -05:00
|
|
|
pub fn chain_err<F>(self, op: &fn(E) -> Result<T, F>) -> Result<T, F> {
|
2013-07-22 19:27:53 -05:00
|
|
|
match self {
|
|
|
|
Ok(t) => Ok(t),
|
2013-07-24 22:41:13 -05:00
|
|
|
Err(e) => op(e),
|
2013-07-22 19:27:53 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
2012-06-22 19:32:52 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
impl<T: Clone, E: ToStr> Result<T, E> {
|
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Err` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is wrapped in an `Err` and returned. if `self` is
|
|
|
|
/// `Ok` then it is immediately returned. This function can be used to pass
|
|
|
|
/// through a successful result while handling an error.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-08-03 18:59:24 -05:00
|
|
|
pub fn map_err<F: Clone>(&self, op: &fn(&E) -> F) -> Result<T,F> {
|
2013-07-26 21:19:33 -05:00
|
|
|
match *self {
|
|
|
|
Ok(ref t) => Ok(t.clone()),
|
|
|
|
Err(ref e) => Err(op(e))
|
|
|
|
}
|
2012-06-22 19:32:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
impl<T, E: Clone + ToStr> Result<T, E> {
|
|
|
|
/// Call a method based on a previous result
|
|
|
|
///
|
|
|
|
/// If `self` is `Ok` then the value is extracted and passed to `op`
|
|
|
|
/// whereupon `op`s result is wrapped in `Ok` and returned. if `self` is
|
|
|
|
/// `Err` then it is immediately returned. This function can be used to
|
|
|
|
/// compose the results of two functions.
|
|
|
|
///
|
|
|
|
/// Example:
|
|
|
|
///
|
|
|
|
/// let res = do read_file(file).map |buf| {
|
|
|
|
/// parse_bytes(buf)
|
|
|
|
/// };
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-08-03 12:40:20 -05:00
|
|
|
pub fn map<U>(&self, op: &fn(&T) -> U) -> Result<U,E> {
|
2013-07-22 20:41:53 -05:00
|
|
|
match *self {
|
2013-08-03 18:59:24 -05:00
|
|
|
Ok(ref t) => Ok(op(t)),
|
|
|
|
Err(ref e) => Err(e.clone())
|
2013-07-22 20:41:53 -05:00
|
|
|
}
|
|
|
|
}
|
2013-08-03 18:59:24 -05:00
|
|
|
}
|
2012-06-22 19:32:52 -05:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
#[inline]
|
|
|
|
#[allow(missing_doc)]
|
|
|
|
pub fn map_opt<T, U: ToStr, V>(o_t: &Option<T>,
|
|
|
|
op: &fn(&T) -> Result<V,U>) -> Result<Option<V>,U> {
|
|
|
|
match *o_t {
|
|
|
|
None => Ok(None),
|
|
|
|
Some(ref t) => match op(t) {
|
|
|
|
Ok(v) => Ok(Some(v)),
|
|
|
|
Err(e) => Err(e)
|
2013-07-26 21:19:33 -05:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
2012-03-25 15:54:05 -05:00
|
|
|
}
|
2012-03-13 19:46:16 -05:00
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
// FIXME: #8228 Replaceable by an external iterator?
|
|
|
|
/// Maps each element in the vector `ts` using the operation `op`. Should an
|
|
|
|
/// error occur, no further mappings are performed and the error is returned.
|
|
|
|
/// Should no error occur, a vector containing the result of each map is
|
|
|
|
/// returned.
|
|
|
|
///
|
|
|
|
/// Here is an example which increments every integer in a vector,
|
|
|
|
/// checking for overflow:
|
|
|
|
///
|
|
|
|
/// fn inc_conditionally(x: uint) -> result<uint,str> {
|
|
|
|
/// if x == uint::max_value { return Err("overflow"); }
|
|
|
|
/// else { return Ok(x+1u); }
|
|
|
|
/// }
|
|
|
|
/// map(~[1u, 2u, 3u], inc_conditionally).chain {|incd|
|
|
|
|
/// assert!(incd == ~[2u, 3u, 4u]);
|
|
|
|
/// }
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-07-02 14:47:32 -05:00
|
|
|
pub fn map_vec<T,U,V>(ts: &[T], op: &fn(&T) -> Result<V,U>)
|
|
|
|
-> Result<~[V],U> {
|
2013-06-08 20:38:47 -05:00
|
|
|
let mut vs: ~[V] = vec::with_capacity(ts.len());
|
2013-08-03 11:45:23 -05:00
|
|
|
for t in ts.iter() {
|
2012-08-06 14:34:08 -05:00
|
|
|
match op(t) {
|
2013-05-29 18:59:33 -05:00
|
|
|
Ok(v) => vs.push(v),
|
|
|
|
Err(u) => return Err(u)
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
}
|
2013-02-15 02:51:28 -06:00
|
|
|
return Ok(vs);
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
// FIXME: #8228 Replaceable by an external iterator?
|
|
|
|
/// Same as map, but it operates over two parallel vectors.
|
|
|
|
///
|
|
|
|
/// A precondition is used here to ensure that the vectors are the same
|
|
|
|
/// length. While we do not often use preconditions in the standard
|
|
|
|
/// library, a precondition is used here because result::t is generally
|
|
|
|
/// used in 'careful' code contexts where it is both appropriate and easy
|
|
|
|
/// to accommodate an error like the vectors being of different lengths.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-08-03 18:59:24 -05:00
|
|
|
pub fn map_vec2<S, T, U: ToStr, V>(ss: &[S], ts: &[T],
|
|
|
|
op: &fn(&S,&T) -> Result<V,U>) -> Result<~[V],U> {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(vec::same_length(ss, ts));
|
2013-06-08 20:38:47 -05:00
|
|
|
let n = ts.len();
|
2012-09-21 20:43:30 -05:00
|
|
|
let mut vs = vec::with_capacity(n);
|
2012-03-13 19:46:16 -05:00
|
|
|
let mut i = 0u;
|
|
|
|
while i < n {
|
2012-09-25 18:23:04 -05:00
|
|
|
match op(&ss[i],&ts[i]) {
|
2013-05-29 18:59:33 -05:00
|
|
|
Ok(v) => vs.push(v),
|
|
|
|
Err(u) => return Err(u)
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
i += 1u;
|
|
|
|
}
|
2013-02-15 02:51:28 -06:00
|
|
|
return Ok(vs);
|
2012-03-13 19:46:16 -05:00
|
|
|
}
|
|
|
|
|
2013-08-03 18:59:24 -05:00
|
|
|
// FIXME: #8228 Replaceable by an external iterator?
|
|
|
|
/// Applies op to the pairwise elements from `ss` and `ts`, aborting on
|
|
|
|
/// error. This could be implemented using `map_zip()` but it is more efficient
|
|
|
|
/// on its own as no result vector is built.
|
2013-06-18 16:45:18 -05:00
|
|
|
#[inline]
|
2013-08-03 18:59:24 -05:00
|
|
|
pub fn iter_vec2<S, T, U: ToStr>(ss: &[S], ts: &[T],
|
|
|
|
op: &fn(&S,&T) -> Result<(),U>) -> Result<(),U> {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(vec::same_length(ss, ts));
|
2013-06-08 20:38:47 -05:00
|
|
|
let n = ts.len();
|
2012-03-22 22:06:01 -05:00
|
|
|
let mut i = 0u;
|
|
|
|
while i < n {
|
2012-09-25 18:23:04 -05:00
|
|
|
match op(&ss[i],&ts[i]) {
|
2012-08-26 18:54:31 -05:00
|
|
|
Ok(()) => (),
|
2013-05-29 18:59:33 -05:00
|
|
|
Err(u) => return Err(u)
|
2012-03-22 22:06:01 -05:00
|
|
|
}
|
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-26 18:54:31 -05:00
|
|
|
return Ok(());
|
2012-03-22 22:06:01 -05:00
|
|
|
}
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2013-07-24 22:25:18 -05:00
|
|
|
use super::*;
|
2013-08-04 18:05:25 -05:00
|
|
|
|
2013-07-26 20:36:51 -05:00
|
|
|
use either;
|
2013-08-04 18:05:25 -05:00
|
|
|
use str::OwnedStr;
|
2012-12-27 19:53:04 -06:00
|
|
|
|
2013-07-24 22:25:18 -05:00
|
|
|
pub fn op1() -> Result<int, ~str> { Ok(666) }
|
2012-01-17 19:28:21 -06:00
|
|
|
|
2013-07-24 22:25:18 -05:00
|
|
|
pub fn op2(i: int) -> Result<uint, ~str> {
|
|
|
|
Ok(i as uint + 1u)
|
2012-03-13 16:39:28 -05:00
|
|
|
}
|
2012-01-17 19:28:21 -06:00
|
|
|
|
2013-07-24 22:25:18 -05:00
|
|
|
pub fn op3() -> Result<int, ~str> { Err(~"sadface") }
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn chain_success() {
|
2013-08-03 18:59:24 -05:00
|
|
|
assert_eq!(op1().chain(op2).unwrap(), 667u);
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn chain_failure() {
|
2013-08-03 18:59:24 -05:00
|
|
|
assert_eq!(op3().chain( op2).unwrap_err(), ~"sadface");
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|
2012-05-26 22:33:08 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_iter() {
|
2012-05-26 22:33:08 -05:00
|
|
|
let mut valid = false;
|
2013-08-03 12:40:20 -05:00
|
|
|
let okval = Ok::<~str, ~str>(~"a");
|
|
|
|
do okval.iter().next().map |_| { valid = true; };
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
|
2013-08-03 12:40:20 -05:00
|
|
|
let errval = Err::<~str, ~str>(~"b");
|
|
|
|
do errval.iter().next().map |_| { valid = false; };
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_iter_err() {
|
2012-05-26 22:33:08 -05:00
|
|
|
let mut valid = true;
|
2013-08-03 12:40:20 -05:00
|
|
|
let okval = Ok::<~str, ~str>(~"a");
|
|
|
|
do okval.iter_err().next().map |_| { valid = false };
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
|
|
|
|
valid = false;
|
2013-08-03 12:40:20 -05:00
|
|
|
let errval = Err::<~str, ~str>(~"b");
|
|
|
|
do errval.iter_err().next().map |_| { valid = true };
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(valid);
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_map() {
|
2013-08-04 18:05:25 -05:00
|
|
|
assert_eq!(Ok::<~str, ~str>(~"a").map(|x| (~"b").append(*x)), Ok(~"ba"));
|
|
|
|
assert_eq!(Err::<~str, ~str>(~"a").map(|x| (~"b").append(*x)), Err(~"a"));
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_impl_map_err() {
|
2013-08-04 18:05:25 -05:00
|
|
|
assert_eq!(Ok::<~str, ~str>(~"a").map_err(|x| (~"b").append(*x)), Ok(~"a"));
|
|
|
|
assert_eq!(Err::<~str, ~str>(~"a").map_err(|x| (~"b").append(*x)), Err(~"ba"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_impl_map_move() {
|
2013-08-04 16:59:36 -05:00
|
|
|
assert_eq!(Ok::<~str, ~str>(~"a").map_move(|x| x + "b"), Ok(~"ab"));
|
|
|
|
assert_eq!(Err::<~str, ~str>(~"a").map_move(|x| x + "b"), Err(~"a"));
|
2013-08-04 18:05:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_impl_map_err_move() {
|
2013-08-04 16:59:36 -05:00
|
|
|
assert_eq!(Ok::<~str, ~str>(~"a").map_err_move(|x| x + "b"), Ok(~"a"));
|
|
|
|
assert_eq!(Err::<~str, ~str>(~"a").map_err_move(|x| x + "b"), Err(~"ab"));
|
2012-05-26 22:33:08 -05:00
|
|
|
}
|
2012-10-22 20:31:13 -05:00
|
|
|
|
|
|
|
#[test]
|
2013-01-29 13:47:18 -06:00
|
|
|
pub fn test_get_ref_method() {
|
2012-10-22 20:31:13 -05:00
|
|
|
let foo: Result<int, ()> = Ok(100);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*foo.get_ref(), 100);
|
2012-10-22 20:31:13 -05:00
|
|
|
}
|
2013-07-26 20:36:51 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn test_to_either() {
|
|
|
|
let r: Result<int, ()> = Ok(100);
|
|
|
|
let err: Result<(), int> = Err(404);
|
|
|
|
|
|
|
|
assert_eq!(r.to_either(), either::Right(100));
|
|
|
|
assert_eq!(err.to_either(), either::Left(404));
|
|
|
|
}
|
2012-01-17 19:28:21 -06:00
|
|
|
}
|