本文整理汇总了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");
}
示例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();
}
示例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;
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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;
}
示例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);
}
示例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());
}
示例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();
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}