blob: f3d653d58c1e3510a17b7be20437599ee06e669c [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.assertNull;
import org.eclipse.egit.github.core.CommitFile;
import org.junit.Test;
/**
* Unit tests of {@link CommitFile}
*/
public class CommitFileTest {
/**
* Test default state of commit file
*/
@Test
public void defaultState() {
CommitFile file = new CommitFile();
assertEquals(0, file.getAdditions());
assertEquals(0, file.getChanges());
assertEquals(0, file.getDeletions());
assertNull(file.getBlobUrl());
assertNull(file.getFilename());
assertNull(file.getPatch());
assertNull(file.getRawUrl());
assertNull(file.getSha());
assertNull(file.getStatus());
}
/**
* Test updating commit file fields
*/
@Test
public void updateFields() {
CommitFile file = new CommitFile();
assertEquals(123, file.setAdditions(123).getAdditions());
assertEquals(456, file.setChanges(456).getChanges());
assertEquals(789, file.setDeletions(789).getDeletions());
assertEquals("blob url", file.setBlobUrl("blob url").getBlobUrl());
assertEquals("file.txt", file.setFilename("file.txt").getFilename());
assertEquals("file.patch", file.setPatch("file.patch").getPatch());
assertEquals("raw url", file.setRawUrl("raw url").getRawUrl());
assertEquals("aaaaa", file.setSha("aaaaa").getSha());
assertEquals("add", file.setStatus("add").getStatus());
}
}