Merge pull request #19 from zaeleus/id

Implement traits for ID to make it usable outside its module
This commit is contained in:
Magnus Hallin 2017-02-04 10:15:31 +01:00 committed by GitHub
commit 7b6bf74dac

View file

@ -1,4 +1,6 @@
use std::convert::From;
use std::marker::PhantomData;
use std::ops::Deref;
use ast::{InputValue, Selection, FromInputValue, ToInputValue};
use value::Value;
@ -11,8 +13,23 @@ use types::base::GraphQLType;
/// An ID as defined by the GraphQL specification
///
/// Represented as a string, but can be converted _to_ from an integer as well.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ID(String);
impl From<String> for ID {
fn from(s: String) -> ID {
ID(s)
}
}
impl Deref for ID {
type Target = str;
fn deref(&self) -> &str {
&self.0
}
}
graphql_scalar!(ID as "ID" {
resolve(&self) -> Value {
Value::string(&self.0)
@ -156,3 +173,21 @@ impl<T> GraphQLType for EmptyMutation<T> {
registry.build_object_type::<Self>(&[]).into_meta()
}
}
#[cfg(test)]
mod tests {
use super::ID;
#[test]
fn test_id_from_string() {
let actual = ID::from(String::from("foo"));
let expected = ID(String::from("foo"));
assert_eq!(actual, expected);
}
#[test]
fn test_id_deref() {
let id = ID(String::from("foo"));
assert_eq!(id.len(), 3);
}
}