org.gitective.tests.GitTestCase.java Source code

Java tutorial

Introduction

Here is the source code for org.gitective.tests.GitTestCase.java

Source

/*
 * Copyright (c) 2011 Kevin Sawicki <kevinsawicki@gmail.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */
package org.gitective.tests;

import java.io.File;
import java.io.PrintWriter;
import java.text.MessageFormat;
import java.util.Date;
import java.util.List;

import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.MergeResult;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.PersonIdent;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.merge.MergeStrategy;
import org.eclipse.jgit.notes.Note;
import org.eclipse.jgit.revwalk.RevCommit;
import org.gitective.core.CommitUtils;
import org.junit.Assert;
import org.junit.Before;

/**
 * Base test case with utilities for common Git operations performed during
 * testing
 */
public abstract class GitTestCase extends Assert {

    /**
     * Test repository .git directory
     */
    protected File testRepo;

    /**
     * Author used for commits
     */
    protected PersonIdent author = new PersonIdent("Test Author", "author@test.com");

    /**
     * Committer used for commits
     */
    protected PersonIdent committer = new PersonIdent("Test Committer", "committer@test.com");

    /**
     * Set up method that initializes git repository
     *
     * @throws Exception
     */
    @Before
    public void setUp() throws Exception {
        testRepo = initRepo();
    }

    /**
     * Initialize a new repo in a new directory
     *
     * @return created .git folder
     * @throws GitAPIException
     */
    protected File initRepo() throws GitAPIException {
        String tmpDir = System.getProperty("java.io.tmpdir");
        assertNotNull("java.io.tmpdir was null", tmpDir);
        File dir = new File(tmpDir, "git-test-case-" + System.nanoTime());
        assertTrue(dir.mkdir());

        Git.init().setDirectory(dir).setBare(false).call();
        File repo = new File(dir, Constants.DOT_GIT);
        assertTrue(repo.exists());
        repo.deleteOnExit();
        return repo;
    }

    /**
     * Create branch with name and checkout
     *
     * @param name
     * @return branch ref
     * @throws Exception
     */
    protected Ref branch(String name) throws Exception {
        return branch(testRepo, name);
    }

    /**
     * Create branch with name and checkout
     *
     * @param repo
     * @param name
     * @return branch ref
     * @throws Exception
     */
    protected Ref branch(File repo, String name) throws Exception {
        Git git = Git.open(repo);
        git.branchCreate().setName(name).call();
        return checkout(repo, name);
    }

    /**
     * Checkout branch
     *
     * @param name
     * @return branch ref
     * @throws Exception
     */
    protected Ref checkout(String name) throws Exception {
        return checkout(testRepo, name);
    }

    /**
     * Checkout branch
     *
     * @param repo
     * @param name
     * @return branch ref
     * @throws Exception
     */
    protected Ref checkout(File repo, String name) throws Exception {
        Git git = Git.open(repo);
        Ref ref = git.checkout().setName(name).call();
        assertNotNull(ref);
        return ref;
    }

    /**
     * Create tag with name
     *
     * @param name
     * @return tag ref
     * @throws Exception
     */
    protected Ref tag(String name) throws Exception {
        return tag(testRepo, name);
    }

    /**
     * Create tag with name
     *
     * @param repo
     * @param name
     * @return tag ref
     * @throws Exception
     */
    protected Ref tag(File repo, String name) throws Exception {
        Git git = Git.open(repo);
        git.tag().setName(name).setMessage(name).call();
        Ref tagRef = git.getRepository().getTags().get(name);
        assertNotNull(tagRef);
        return tagRef;
    }

    /**
     * Add file to test repository
     *
     * @param path
     * @param content
     * @return commit
     * @throws Exception
     */
    protected RevCommit add(String path, String content) throws Exception {
        return add(testRepo, path, content);
    }

    /**
     * Add file to test repository
     *
     * @param repo
     *
     * @param path
     * @param content
     * @return commit
     * @throws Exception
     */
    protected RevCommit add(File repo, String path, String content) throws Exception {
        String message = MessageFormat.format("Committing {0} at {1}", path, new Date());
        return add(repo, path, content, message);
    }

    /**
     * Add file to test repository
     *
     * @param path
     * @param content
     * @param message
     * @return commit
     * @throws Exception
     */
    protected RevCommit add(String path, String content, String message) throws Exception {
        return add(testRepo, path, content, message);
    }

    /**
     * Add file to test repository
     *
     * @param repo
     * @param path
     * @param content
     * @param message
     * @return commit
     * @throws Exception
     */
    protected RevCommit add(File repo, String path, String content, String message) throws Exception {
        File file = new File(repo.getParentFile(), path);
        if (!file.getParentFile().exists())
            assertTrue(file.getParentFile().mkdirs());
        if (!file.exists())
            assertTrue(file.createNewFile());
        PrintWriter writer = new PrintWriter(file);
        if (content == null)
            content = "";
        try {
            writer.print(content);
        } finally {
            writer.close();
        }
        Git git = Git.open(repo);
        git.add().addFilepattern(path).call();
        RevCommit commit = git.commit().setOnly(path).setMessage(message).setAuthor(author).setCommitter(committer)
                .call();
        assertNotNull(commit);
        return commit;
    }

    /**
     * Move file in test repository
     *
     * @param from
     * @param to
     * @return commit
     * @throws Exception
     */
    protected RevCommit mv(String from, String to) throws Exception {
        return mv(testRepo, from, to, MessageFormat.format("Moving {0} to {1} at {2}", from, to, new Date()));
    }

    /**
     * Move file in test repository
     *
     * @param from
     * @param to
     * @param message
     * @return commit
     * @throws Exception
     */
    protected RevCommit mv(String from, String to, String message) throws Exception {
        return mv(testRepo, from, to, message);
    }

    /**
     * Move file in test repository
     *
     * @param repo
     * @param from
     * @param to
     * @param message
     * @return commit
     * @throws Exception
     */
    protected RevCommit mv(File repo, String from, String to, String message) throws Exception {
        File file = new File(repo.getParentFile(), from);
        file.renameTo(new File(repo.getParentFile(), to));
        Git git = Git.open(repo);
        git.rm().addFilepattern(from);
        git.add().addFilepattern(to).call();
        RevCommit commit = git.commit().setAll(true).setMessage(message).setAuthor(author).setCommitter(committer)
                .call();
        assertNotNull(commit);
        return commit;
    }

    /**
     * Add files to test repository
     *
     * @param paths
     * @param contents
     * @return commit
     * @throws Exception
     */
    protected RevCommit add(List<String> paths, List<String> contents) throws Exception {
        return add(testRepo, paths, contents, "Committing multiple files");
    }

    /**
     * Add files to test repository
     *
     * @param repo
     * @param paths
     * @param contents
     * @param message
     * @return commit
     * @throws Exception
     */
    protected RevCommit add(File repo, List<String> paths, List<String> contents, String message) throws Exception {
        Git git = Git.open(repo);
        for (int i = 0; i < paths.size(); i++) {
            String path = paths.get(i);
            String content = contents.get(i);
            File file = new File(repo.getParentFile(), path);
            if (!file.getParentFile().exists())
                assertTrue(file.getParentFile().mkdirs());
            if (!file.exists())
                assertTrue(file.createNewFile());
            PrintWriter writer = new PrintWriter(file);
            if (content == null)
                content = "";
            try {
                writer.print(content);
            } finally {
                writer.close();
            }
            git.add().addFilepattern(path).call();
        }
        RevCommit commit = git.commit().setMessage(message).setAuthor(author).setCommitter(committer).call();
        assertNotNull(commit);
        return commit;
    }

    /**
     * Merge ref into current branch
     *
     * @param ref
     * @return result
     * @throws Exception
     */
    protected MergeResult merge(String ref) throws Exception {
        Git git = Git.open(testRepo);
        return git.merge().setStrategy(MergeStrategy.RESOLVE)
                .include(CommitUtils.getCommit(git.getRepository(), ref)).call();
    }

    /**
     * Add note to latest commit with given content
     *
     * @param content
     * @return note
     * @throws Exception
     */
    protected Note note(String content) throws Exception {
        return note(content, "commits");
    }

    /**
     * Add note to latest commit with given content
     *
     * @param content
     * @param ref
     * @return note
     * @throws Exception
     */
    protected Note note(String content, String ref) throws Exception {
        Git git = Git.open(testRepo);
        Note note = git.notesAdd().setMessage(content).setNotesRef(Constants.R_NOTES + ref)
                .setObjectId(CommitUtils.getHead(git.getRepository())).call();
        assertNotNull(note);
        return note;
    }

    /**
     * Delete and commit file at path
     *
     * @param path
     * @return commit
     * @throws Exception
     */
    protected RevCommit delete(String path) throws Exception {
        String message = MessageFormat.format("Committing {0} at {1}", path, new Date());
        Git git = Git.open(testRepo);
        git.rm().addFilepattern(path).call();
        RevCommit commit = git.commit().setOnly(path).setMessage(message).setAuthor(author).setCommitter(committer)
                .call();
        assertNotNull(commit);
        return commit;
    }
}