import java.io.IOException;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
/**
* @author Kai Moritz
"}" +
"}";
+ final String error_100 = "{\"error\":{\"message\":\"Unsupported get request. Please read the Graph API documentation at https:\\/\\/developers.facebook.com\\/docs\\/graph-api\",\"type\":\"GraphMethodException\",\"code\":100,\"fbtrace_id\":\"Bs\\/0p3CiVld\"}}";
+
@Test
public void testSerialize() throws JsonProcessingException
assertEquals(example, OBJECT_MAPPER.writeValueAsString(error));
}
+ @Test
+ public void testSerialize100() throws JsonProcessingException
+ {
+ FacebookErrorMessage error = new FacebookErrorMessage();
+ error.message = "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api";
+ error.type = "GraphMethodException";
+ error.code = 100;
+ error.traceId = "Bs/0p3CiVld";
+
+ assertEquals(error_100, OBJECT_MAPPER.writeValueAsString(error));
+ }
+
@Test
public void testDeserialize() throws IOException
{
assertEquals("A message", error.userMessage);
assertEquals("EJplcsCHuLu", error.traceId);
}
+
+ @Test
+ public void testDeserialize100() throws IOException
+ {
+ FacebookErrorMessage error =
+ OBJECT_MAPPER.readValue(error_100, FacebookErrorMessage.class);
+
+ assertEquals("Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api", error.message);
+ assertEquals("GraphMethodException", error.type);
+ assertEquals(new Integer(100), error.code);
+ assertNull(error.subCode);
+ assertNull(error.userTitle);
+ assertNull(error.userMessage);
+ assertEquals("Bs/0p3CiVld", error.traceId);
+ }
}