org.eclipse.egit.gitflow.op.FeatureCheckoutOperationTest.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.egit.gitflow.op.FeatureCheckoutOperationTest.java

Source

/*******************************************************************************
 * Copyright (C) 2015, Max Hohenegger <eclipse@hohenegger.eu>
 *
 * 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
 *******************************************************************************/
package org.eclipse.egit.gitflow.op;

import static org.junit.Assert.assertEquals;

import org.eclipse.core.resources.IFile;
import org.eclipse.egit.core.op.BranchOperation;
import org.eclipse.egit.gitflow.GitFlowRepository;
import org.eclipse.jgit.api.CheckoutResult.Status;
import org.eclipse.jgit.lib.Repository;
import org.junit.Test;

public class FeatureCheckoutOperationTest extends AbstractFeatureOperationTest {
    @Test
    public void testFeatureCheckout() throws Exception {
        Repository repository = testRepository.getRepository();
        GitFlowRepository gfRepo = init("testFeatureCheckout\n\nfirst commit\n");

        new FeatureStartOperation(gfRepo, MY_FEATURE).execute(null);
        new BranchOperation(repository, gfRepo.getConfig().getDevelop()).execute(null);

        new FeatureCheckoutOperation(gfRepo, MY_FEATURE).execute(null);

        assertEquals(gfRepo.getConfig().getFullFeatureBranchName(MY_FEATURE), repository.getFullBranch());
    }

    @Test
    public void testFeatureCheckoutConflicts() throws Exception {
        Repository repository = testRepository.getRepository();
        GitFlowRepository gfRepo = init("testFeatureCheckoutConflicts\n\nfirst commit\n");

        // setup something we can modify later
        IFile file = testUtils.addFileToProject(project.getProject(), "folder1/file1.txt", "Hello world");
        testRepository.connect(project.getProject());
        testRepository.trackAllFiles(project.getProject());
        testRepository.commit("Initial commit");

        new FeatureStartOperation(gfRepo, MY_FEATURE).execute(null);
        // modify on first branch
        testUtils.changeContentOfFile(project.getProject(), file, "Hello Feature");
        testRepository.addToIndex(file);
        testRepository.commit("Feature commit");
        new BranchOperation(repository, gfRepo.getConfig().getDevelop()).execute(null);
        assertEquals(gfRepo.getConfig().getDevelopFull(), repository.getFullBranch());

        // modify on second branch
        testUtils.changeContentOfFile(project.getProject(), file, "Hello Develop");
        testRepository.addToIndex(file);

        FeatureCheckoutOperation featureCheckoutOperation = new FeatureCheckoutOperation(gfRepo, MY_FEATURE);
        featureCheckoutOperation.execute(null);

        assertEquals(Status.CONFLICTS, featureCheckoutOperation.getResult().getStatus());
        assertEquals(gfRepo.getConfig().getDevelopFull(), repository.getFullBranch());
    }
}