当前位置: 首页>>代码示例>>Java>>正文


Java Orchestrator类代码示例

本文整理汇总了Java中com.sonar.orchestrator.Orchestrator的典型用法代码示例。如果您正苦于以下问题:Java Orchestrator类的具体用法?Java Orchestrator怎么用?Java Orchestrator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Orchestrator类属于com.sonar.orchestrator包,在下文中一共展示了Orchestrator类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setupSonarQube

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
@Before
public void setupSonarQube() {
    System.getProperties().setProperty("sonar.runtimeVersion", sonarQubeVersion);

    orchestrator = Orchestrator.builderEnv()
            .addPlugin(FileLocation.byWildcardMavenFilename(new File("target"), "sonar-jdepend-plugin-*.jar"))
            .setOrchestratorProperty("javaVersion", javaVersion).addPlugin("java")
            .restoreProfileAtStartup(FileLocation.of(new File("target/it", "profile.xml"))).build();

    orchestrator.start();

    // Provision project
    orchestrator.getServer().adminWsClient().projectClient()
            .create(NewProject.create().key("nl.future-edge.sonarqube.plugins:sonar-jdepend-plugin-it")
                    .name("Test project for Integration Test"));
    orchestrator.getServer().associateProjectToQualityProfile(
            "nl.future-edge.sonarqube.plugins:sonar-jdepend-plugin-it", "java", "test");
}
 
开发者ID:willemsrb,项目名称:sonar-jdepend-plugin,代码行数:19,代码来源:PluginIT.java

示例2: setupSonarQube

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
@Before
public void setupSonarQube() {
	System.getProperties().setProperty("sonar.runtimeVersion", sonarQubeVersion);

	final OrchestratorBuilder builder = Orchestrator.builderEnv();
	builder.addPlugin(FileLocation.byWildcardMavenFilename(new File("target"), "sonar-issueresolver-plugin-*.jar"));
	builder.setOrchestratorProperty("javaVersion", "4.2.1").addPlugin("java");

	// Enable debug logging for web components
	builder.setServerProperty("sonar.log.level.web", "DEBUG");

	orchestrator = builder.build();
	orchestrator.start();
}
 
开发者ID:willemsrb,项目名称:sonar-issueresolver-plugin,代码行数:15,代码来源:PluginIT.java

示例3: getRuleKeysFromRepository

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
private static Set<String> getRuleKeysFromRepository(Orchestrator orchestrator, String language) {
  Set<String> ruleKeys = new HashSet<>();
  String json = new HttpRequestFactory(orchestrator.getServer().getUrl())
    .get("/api/rules/search", ImmutableMap.<String, Object>of("languages", language, "repositories", language, "ps", "1000"));
  @SuppressWarnings("unchecked")
  List<Map> jsonRules = (List<Map>) ((Map) JSONValue.parse(json)).get("rules");
  for (Map jsonRule : jsonRules) {
    String key = ((String) jsonRule.get("key")).substring(language.length() + 1);
    ruleKeys.add(key);
  }
  return ruleKeys;
}
 
开发者ID:racodond,项目名称:sonar-css-plugin,代码行数:13,代码来源:ProfileGenerator.java

示例4: TestMetricsIntegrationJUnit2Test

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
public TestMetricsIntegrationJUnit2Test(Orchestrator orchestrator) {
    orchestrator.executeBuild(build);
    wsClient = new TestSonarClient(
            WsClientFactories.getDefault().newClient(HttpConnector.newBuilder()
            .url(orchestrator.getServer().getUrl())
            .build()), PROJECT_KEY);
}
 
开发者ID:sonar-perl,项目名称:sonar-perl,代码行数:8,代码来源:TestMetricsIntegrationJUnit2Test.java

示例5: ProjectMetricsIntegrationTest

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
public ProjectMetricsIntegrationTest(Orchestrator orchestrator) {
    orchestrator.executeBuild(build);
    wsClient = new TestSonarClient(
            WsClientFactories.getDefault().newClient(HttpConnector.newBuilder()
            .url(orchestrator.getServer().getUrl())
            .build()), PROJECT_KEY);
}
 
开发者ID:sonar-perl,项目名称:sonar-perl,代码行数:8,代码来源:ProjectMetricsIntegrationTest.java

示例6: PerlCriticIntegrationTest

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
public PerlCriticIntegrationTest(Orchestrator orchestrator) {
    orchestrator.executeBuild(build);
    wsClient = new TestSonarClient(
            WsClientFactories.getDefault().newClient(HttpConnector.newBuilder()
            .url(orchestrator.getServer().getUrl())
            .build()), PROJECT_KEY);
}
 
开发者ID:sonar-perl,项目名称:sonar-perl,代码行数:8,代码来源:PerlCriticIntegrationTest.java

示例7: TestMetricsIntegrationTest

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
public TestMetricsIntegrationTest(Orchestrator orchestrator) {
    orchestrator.executeBuild(build);
    wsClient = new TestSonarClient(
            WsClientFactories.getDefault().newClient(HttpConnector.newBuilder()
            .url(orchestrator.getServer().getUrl())
            .build()), PROJECT_KEY);
}
 
开发者ID:sonar-perl,项目名称:sonar-perl,代码行数:8,代码来源:TestMetricsIntegrationTest.java

示例8: orchestratorBuilderFor

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
private static OrchestratorBuilder orchestratorBuilderFor(String version) {
    FileLocation sonarPluginJar = FileLocation.byWildcardMavenFilename(new File("../../sonar-perl-plugin/build/libs"),
            "sonar-perl-plugin-*.jar");
    OrchestratorBuilder orchestratorBuilder = Orchestrator.builderEnv()
            .setSonarVersion(version)
            .addPlugin(sonarPluginJar);
    return orchestratorBuilder;
}
 
开发者ID:sonar-perl,项目名称:sonar-perl,代码行数:9,代码来源:IntegrationTests.java

示例9: TestMetricsIntegrationJUnit1Test

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
public TestMetricsIntegrationJUnit1Test(Orchestrator orchestrator) {
    orchestrator.executeBuild(build);
    wsClient = new TestSonarClient(
            WsClientFactories.getDefault().newClient(HttpConnector.newBuilder()
            .url(orchestrator.getServer().getUrl())
            .build()), PROJECT_KEY);
}
 
开发者ID:sonar-perl,项目名称:sonar-perl,代码行数:8,代码来源:TestMetricsIntegrationJUnit1Test.java

示例10: newAdminWsClient

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
public static WsClient newAdminWsClient(Orchestrator orchestrator) {
  Server server = orchestrator.getServer();
  return WsClientFactories.getDefault().newClient(HttpConnector.newBuilder()
    .url(server.getUrl())
    .credentials(Server.ADMIN_LOGIN, Server.ADMIN_PASSWORD)
    .build());
}
 
开发者ID:SonarSource,项目名称:sonar-scanner-maven,代码行数:8,代码来源:ItUtils.java

示例11: setupSonarQube

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
@Before
public void setupSonarQube() {
    System.getProperties().setProperty("sonar.runtimeVersion", sonarQubeVersion);

    orchestrator = Orchestrator.builderEnv()
            .addPlugin(FileLocation.byWildcardMavenFilename(new File("target"), "sonar-rci-plugin-*.jar"))
            .setOrchestratorProperty("javaVersion", "4.2.1").addPlugin("java").build();

    orchestrator.start();
}
 
开发者ID:willemsrb,项目名称:sonar-rci-plugin,代码行数:11,代码来源:PluginIT.java

示例12: getRuleKeysFromRepository

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
private static Set<String> getRuleKeysFromRepository(Orchestrator orchestrator) {
  Set<String> ruleKeys = new HashSet<>();
  String json = new HttpRequestFactory(orchestrator.getServer().getUrl())
    .get("/api/rules/search", ImmutableMap.<String, Object>of("languages", "gherkin", "repositories", "gherkin", "ps", "1000"));
  @SuppressWarnings("unchecked")
  List<Map> jsonRules = (List<Map>) ((Map) JSONValue.parse(json)).get("rules");
  for (Map jsonRule : jsonRules) {
    String key = ((String) jsonRule.get("key")).substring(8);
    ruleKeys.add(key);
  }
  return ruleKeys;
}
 
开发者ID:racodond,项目名称:sonar-gherkin-plugin,代码行数:13,代码来源:ProfileGenerator.java

示例13: getRuleKeysFromRepository

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
private static Set<String> getRuleKeysFromRepository(String repository, Orchestrator orchestrator) {
  Set<String> ruleKeys = new HashSet<>();
  String json = new HttpRequestFactory(orchestrator.getServer().getUrl())
    .get("/api/rules/search", ImmutableMap.of("languages", "jproperties", "repositories", repository, "ps", "1000"));
  @SuppressWarnings("unchecked")
  List<Map> jsonRules = (List<Map>) ((Map) JSONValue.parse(json)).get("rules");
  for (Map jsonRule : jsonRules) {
    String key = ((String) jsonRule.get("key")).substring(repository.length() + 1);
    ruleKeys.add(key);
  }
  return ruleKeys;
}
 
开发者ID:racodond,项目名称:sonar-jproperties-plugin,代码行数:13,代码来源:ProfileGenerator.java

示例14: getRuleKeysFromRepository

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
private static Set<String> getRuleKeysFromRepository(Orchestrator orchestrator) {
  Set<String> ruleKeys = new HashSet<>();
  String json = new HttpRequestFactory(orchestrator.getServer().getUrl())
    .get("/api/rules/search", ImmutableMap.<String, Object>of("languages", "json", "repositories", "json", "ps", "1000"));
  @SuppressWarnings("unchecked")
  List<Map> jsonRules = (List<Map>) ((Map) JSONValue.parse(json)).get("rules");
  for (Map jsonRule : jsonRules) {
    String key = ((String) jsonRule.get("key")).substring(5);
    ruleKeys.add(key);
  }
  return ruleKeys;
}
 
开发者ID:racodond,项目名称:sonar-json-plugin,代码行数:13,代码来源:ProfileGenerator.java

示例15: searchComponent

import com.sonar.orchestrator.Orchestrator; //导入依赖的package包/类
@CheckForNull
static Component searchComponent(Orchestrator orchestrator, String projectKey, String componentKey) {
  List<Component> components = newWsClient(orchestrator).components().tree(
    new TreeWsRequest()
      .setBaseComponentKey(projectKey)
      .setQuery(componentKey))
    .getComponentsList();
  return components.size() == 1 ? components.get(0) : null;
}
 
开发者ID:SonarSource,项目名称:sonar-web,代码行数:10,代码来源:WebTestSuite.java


注:本文中的com.sonar.orchestrator.Orchestrator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。