/**
 * Copyright (C) 2016 Matthieu Brouillard [http://oss.brouillard.fr/jgitver] ([email protected])
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package fr.brouillard.oss.jgitver.strategy.configurable.others;

import static fr.brouillard.oss.jgitver.impl.Lambdas.unchecked;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;

import org.eclipse.jgit.lib.ObjectId;
import org.junit.jupiter.api.Test;

import fr.brouillard.oss.jgitver.Scenarios;
import fr.brouillard.oss.jgitver.ScenarioTest;

class Scenario8WithoutGPrefixCommitTest extends ScenarioTest {

    Scenario8WithoutGPrefixCommitTest() {
        super(
                Scenarios::s8_main_and_branch_with_intermediate_light_tag,
                calculator -> calculator
                        .setMavenLike(false)
                        .setAutoIncrementPatch(true)
                        .setUseGitCommitId(true)
                        .setUseLongFormat(false)
                        .setGitCommitIdLength(8)
                        .setUseDistance(false));
    }

    @Test
    void head_is_on_master_by_default() throws Exception {
        assertThat(repository.getBranch(), is("master"));
    }

    @Test
    void version_of_A_commit() {
        ObjectId firstCommit = scenario.getCommits().get("A");

        // checkout the first commit in scenario
        unchecked(() -> git.checkout().setName(firstCommit.name()).call());
        assertThat(versionCalculator.getVersion(), is("0.0.0" + "-" + firstCommit.name().substring(0,8)));
    }

    @Test
    void version_of_B_commit() {
        ObjectId bCommit = scenario.getCommits().get("B");

        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName(bCommit.name()).call());
        assertThat(versionCalculator.getVersion(), is("1.0.0" + "-" + bCommit.name().substring(0,8)));
    }

    @Test
    void version_of_C_commit() {
        ObjectId cCommit = scenario.getCommits().get("C");

        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName(cCommit.name()).call());
        assertThat(versionCalculator.getVersion(), is("1.0.1" + "-" + cCommit.name().substring(0,8)));
    }

    @Test
    void version_of_D_commit() {
        ObjectId dCommit = scenario.getCommits().get("D");

        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName(dCommit.name()).call());
        assertThat(versionCalculator.getVersion(), is("1.1.0" + "-" + dCommit.name().substring(0,8)));
    }

    @Test
    void version_of_E_commit() {
        ObjectId eCommit = scenario.getCommits().get("E");

        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName(eCommit.name()).call());
        assertThat(versionCalculator.getVersion(), is("1.1.0" + "-" + eCommit.name().substring(0,8)));
    }

    @Test
    void version_of_F_commit() {
        ObjectId fCommit = scenario.getCommits().get("F");

        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName(fCommit.name()).call());
        assertThat(versionCalculator.getVersion(), is("1.0.1" + "-" + fCommit.name().substring(0,8)));
    }

    @Test
    void version_of_annotated_tags() {
        unchecked(() -> git.checkout().setName("1.0.0").call());
        assertThat(versionCalculator.getVersion(), is("1.0.0" + "-" + scenario.getCommits().get("B").name().substring(0,8)));
    }

    @Test
    void version_of_light_tag_1_1_0() {
        unchecked(() -> git.checkout().setName("1.1.0").call());
        assertThat(versionCalculator.getVersion(), is("1.1.0" + "-" + scenario.getCommits().get("D").name().substring(0,8)));
    }

    @Test
    void version_of_master() {
        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName("master").call());
        assertThat(versionCalculator.getVersion(), is("1.1.0" + "-" + scenario.getCommits().get("E").name().substring(0,8)));
    }

    @Test
    void version_of_branch_issue_10() {
        // checkout the commit in scenario
        unchecked(() -> git.checkout().setName("issue-10").call());
        assertThat(versionCalculator.getVersion(), is("1.0.1"+ "-" + scenario.getCommits().get("F").name().substring(0,8) + "-issue_10"));
    }
}