view mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/ExtensionsTest.java @ 977:38adef4f1b8f Indore-2017.2.x

Update copyright
author pavel.sher
date Mon, 22 Jan 2018 11:40:45 +0100
parents dd3a471a1188
children 10dc26b32c35
line wrap: on
line source
/*
 * Copyright 2000-2018 JetBrains s.r.o.
 *
 * 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 jetbrains.buildServer.buildTriggers.vcs.mercurial;

import jetbrains.buildServer.vcs.VcsException;
import jetbrains.buildServer.vcs.VcsRoot;
import junit.framework.Assert;
import org.jetbrains.annotations.NotNull;
import org.testng.annotations.Test;

import java.io.File;
import java.io.IOException;

import static jetbrains.buildServer.buildTriggers.vcs.mercurial.MercurialSupportBuilder.mercurialSupport;
import static jetbrains.buildServer.buildTriggers.vcs.mercurial.ServerPluginConfigBuilder.serverPluginConfig;
import static jetbrains.buildServer.buildTriggers.vcs.mercurial.VcsRootBuilder.vcsRoot;

/**
 * Created 25.02.14 13:17
 *
 * @author Eugene Petrenko (eugene.petrenko@jetbrains.com)
 */
@RequiredHgVersion(min = "2.0.0")
public class ExtensionsTest extends BaseMercurialTestCase {

  @Test(dataProviderClass = HgVersionConstraint.class, dataProvider = "installedHgVersion")
  public void test_no_extension(HgVersion _) throws IOException, VcsException {
    String extension = "HGExtensionThatDoesNotExits";

    try {
      runWithExtensions(extension);
      Assert.fail();
    } catch (VcsException e) {
      Assert.assertTrue(e.getMessage().contains(extension));
    }
  }

  @Test(dataProviderClass = HgVersionConstraint.class, dataProvider = "installedHgVersion")
  public void test_extension(HgVersion _) throws IOException, VcsException {
    runWithExtensions("mq", "largefiles");
  }

  private void runWithExtensions(@NotNull String... extensions) throws IOException, VcsException {
    ServerPluginConfig config = serverPluginConfig()
            .cachesDir(myTempFiles.createTempDir())
            .hgPath(Util.getHgPath())
            .build();

    final File myRemoteRepository = myTempFiles.createTempDir();
    Util.copyRepository(new File("mercurial-tests/testData/rep2"), myRemoteRepository);


    final MercurialSupportBuilder hgBuilder = mercurialSupport().withConfig(config);
    final MercurialVcsSupport vcs = hgBuilder.build();
    final VcsRoot root = vcsRoot().withUrl(myRemoteRepository.getAbsolutePath()).withBranch("default").withExtensions(extensions).build();

    vcs.getCollectChangesPolicy().getCurrentState(root);
    vcs.getTestConnectionSupport().testConnection(root);
  }


}