blob: fa6fefae054ee8ebe231edae27402a7076eb325d [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2011 GitHub Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kevin Sawicki (GitHub Inc.) - initial API and implementation
*****************************************************************************/
package org.eclipse.egit.github.core.tests;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import com.google.gson.JsonPrimitive;
import java.util.Date;
import org.eclipse.egit.github.core.client.DateFormatter;
import org.junit.Test;
/**
* Unit tests of {@link DateFormatter}
*/
public class DateFormatterTest {
/**
* Verify serialized date returns value deserilized
*/
@Test
public void serializeDeserialize() {
DateFormatter formatter = new DateFormatter();
Date date = new Date(10000);
JsonElement element = formatter.serialize(date, null, null);
assertNotNull(element);
String value = element.getAsString();
assertNotNull(value);
assertTrue(value.length() > 0);
Date out = formatter.deserialize(element, null, null);
assertNotNull(out);
assertEquals(date.getTime(), out.getTime());
}
/**
* Deserialize empty string
*/
@Test(expected = JsonParseException.class)
public void emptyInput() {
new DateFormatter().deserialize(new JsonPrimitive(""), null, null);
}
}