Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.gerrit.tests/src/org/eclipse/mylyn/gerrit/tests/core/client/rest/AccountInfoTest.java')
-rw-r--r--org.eclipse.mylyn.gerrit.tests/src/org/eclipse/mylyn/gerrit/tests/core/client/rest/AccountInfoTest.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.gerrit.tests/src/org/eclipse/mylyn/gerrit/tests/core/client/rest/AccountInfoTest.java b/org.eclipse.mylyn.gerrit.tests/src/org/eclipse/mylyn/gerrit/tests/core/client/rest/AccountInfoTest.java
new file mode 100644
index 000000000..c57bfd4a3
--- /dev/null
+++ b/org.eclipse.mylyn.gerrit.tests/src/org/eclipse/mylyn/gerrit/tests/core/client/rest/AccountInfoTest.java
@@ -0,0 +1,63 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Tasktop Technologies and others.
+ * 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:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.gerrit.tests.core.client.rest;
+
+import java.io.File;
+import java.io.IOException;
+
+import junit.framework.TestCase;
+
+import org.eclipse.mylyn.commons.sdk.util.CommonTestUtil;
+import org.eclipse.mylyn.internal.gerrit.core.client.JSonSupport;
+import org.eclipse.mylyn.internal.gerrit.core.client.rest.AccountInfo;
+import org.junit.Test;
+
+public class AccountInfoTest extends TestCase {
+
+ @Test
+ public void testFromEmptyJson() throws Exception {
+ AccountInfo accountInfo = parseFile("testdata/EmptyWithMagic.json");
+
+ assertNotNull(accountInfo);
+ assertEquals(-1, accountInfo.getId());
+ assertNull(accountInfo.getName());
+ assertNull(accountInfo.getEmail());
+ assertNull(accountInfo.getUsername());
+ }
+
+ @Test
+ public void testFromInvalid() throws Exception {
+ AccountInfo accountInfo = parseFile("testdata/InvalidWithMagic.json");
+
+ assertNotNull(accountInfo);
+ assertEquals(-1, accountInfo.getId());
+ assertNull(accountInfo.getName());
+ assertNull(accountInfo.getEmail());
+ assertNull(accountInfo.getUsername());
+ }
+
+ @Test
+ public void testFromValid() throws IOException {
+ AccountInfo accountInfo = parseFile("testdata/AccountInfo_johnDoe.json");
+
+ assertEquals(1000195, accountInfo.getId());
+ assertEquals("John Doe", accountInfo.getName());
+ assertEquals("john.doe@example.com", accountInfo.getEmail());
+ assertNull(accountInfo.getUsername());
+ }
+
+ private AccountInfo parseFile(String path) throws IOException {
+ File file = CommonTestUtil.getFile(this, path);
+ String content = CommonTestUtil.read(file);
+ return new JSonSupport().parseResponse(content, AccountInfo.class);
+ }
+}

Back to the top