Search in sources :

Example 1 with ConanCodeLocationGenerator

use of com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator in project synopsys-detect by blackducksoftware.

the class DetectableFactory method conanCliExtractor.

private ConanCliExtractor conanCliExtractor(ConanCliOptions options) {
    ConanCommandRunner conanCommandRunner = new ConanCommandRunner(executableRunner, options.getLockfilePath().orElse(null), options.getAdditionalArguments().orElse(null));
    ConanInfoLineAnalyzer conanInfoLineAnalyzer = new ConanInfoLineAnalyzer();
    ConanCodeLocationGenerator conanCodeLocationGenerator = new ConanCodeLocationGenerator(options.getDependencyTypeFilter(), options.preferLongFormExternalIds());
    NodeElementParser nodeElementParser = new NodeElementParser(conanInfoLineAnalyzer);
    ConanInfoNodeParser conanInfoNodeParser = new ConanInfoNodeParser(conanInfoLineAnalyzer, nodeElementParser);
    ConanInfoParser conanInfoParser = new ConanInfoParser(conanInfoNodeParser, conanCodeLocationGenerator, externalIdFactory);
    return new ConanCliExtractor(conanCommandRunner, conanInfoParser, toolVersionLogger);
}
Also used : ConanInfoParser(com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoParser) ConanCodeLocationGenerator(com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator) NodeElementParser(com.synopsys.integration.detectable.detectables.conan.cli.parser.element.NodeElementParser) ConanCommandRunner(com.synopsys.integration.detectable.detectables.conan.cli.process.ConanCommandRunner) ConanInfoLineAnalyzer(com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoLineAnalyzer) ConanCliExtractor(com.synopsys.integration.detectable.detectables.conan.cli.ConanCliExtractor) ConanInfoNodeParser(com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoNodeParser)

Example 2 with ConanCodeLocationGenerator

use of com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator in project synopsys-detect by blackducksoftware.

the class ConanLockfileParserFunctionalTest method testRelativePath.

@Test
public void testRelativePath() throws IOException, IntegrationException {
    File lockfile = FunctionalTestFiles.asFile("/conan/lockfile/conan_relpath.lock");
    EnumListFilter<ConanDependencyType> dependencyTypeFilter = EnumListFilter.excludeNone();
    ConanLockfileParser parser = new ConanLockfileParser(new Gson(), new ConanCodeLocationGenerator(dependencyTypeFilter, true), new ExternalIdFactory());
    String conanLockfileContents = FileUtils.readFileToString(lockfile, StandardCharsets.UTF_8);
    ConanDetectableResult result = parser.generateCodeLocationFromConanLockfileContents(conanLockfileContents);
    assertEquals(1, result.getCodeLocation().getDependencyGraph().getRootDependencies().size());
}
Also used : ConanCodeLocationGenerator(com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator) ExternalIdFactory(com.synopsys.integration.bdio.model.externalid.ExternalIdFactory) ConanLockfileParser(com.synopsys.integration.detectable.detectables.conan.lockfile.parser.ConanLockfileParser) Gson(com.google.gson.Gson) ConanDetectableResult(com.synopsys.integration.detectable.detectables.conan.ConanDetectableResult) ConanDependencyType(com.synopsys.integration.detectable.detectables.conan.cli.config.ConanDependencyType) File(java.io.File) Test(org.junit.jupiter.api.Test) FunctionalTest(com.synopsys.integration.detectable.annotations.FunctionalTest)

Example 3 with ConanCodeLocationGenerator

use of com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator in project synopsys-detect by blackducksoftware.

the class DetectableFactory method conanLockfileExtractor.

private ConanLockfileExtractor conanLockfileExtractor(ConanLockfileExtractorOptions options) {
    ConanCodeLocationGenerator conanCodeLocationGenerator = new ConanCodeLocationGenerator(options.getDependencyTypeFilter(), options.preferLongFormExternalIds());
    ConanLockfileParser conanLockfileParser = new ConanLockfileParser(gson, conanCodeLocationGenerator, externalIdFactory);
    return new ConanLockfileExtractor(conanLockfileParser);
}
Also used : ConanCodeLocationGenerator(com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator) ConanLockfileExtractor(com.synopsys.integration.detectable.detectables.conan.lockfile.ConanLockfileExtractor) ConanLockfileParser(com.synopsys.integration.detectable.detectables.conan.lockfile.parser.ConanLockfileParser)

Example 4 with ConanCodeLocationGenerator

use of com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator in project synopsys-detect by blackducksoftware.

the class ConanCliParserFunctionalTest method test.

@Test
public void test() throws IOException, IntegrationException {
    File conanInfoOutputFile = FunctionalTestFiles.asFile("/conan/cli/conan_info.txt");
    EnumListFilter<ConanDependencyType> dependencyTypeFilter = EnumListFilter.excludeNone();
    ConanCodeLocationGenerator conanCodeLocationGenerator = new ConanCodeLocationGenerator(dependencyTypeFilter, false);
    ConanInfoLineAnalyzer conanInfoLineAnalyzer = new ConanInfoLineAnalyzer();
    NodeElementParser nodeElementParser = new NodeElementParser(conanInfoLineAnalyzer);
    ConanInfoNodeParser conanInfoNodeParser = new ConanInfoNodeParser(conanInfoLineAnalyzer, nodeElementParser);
    ConanInfoParser parser = new ConanInfoParser(conanInfoNodeParser, conanCodeLocationGenerator, new ExternalIdFactory());
    String conanInfoOutput = FileUtils.readFileToString(conanInfoOutputFile, StandardCharsets.UTF_8);
    ConanDetectableResult result = parser.generateCodeLocationFromConanInfoOutput(conanInfoOutput);
    assertEquals(3, result.getCodeLocation().getDependencyGraph().getRootDependencies().size());
    DependencyGraph actualDependencyGraph = result.getCodeLocation().getDependencyGraph();
    GraphCompare.assertEqualsResource("/conan/cli/noProjectRef_graph.json", actualDependencyGraph);
}
Also used : ConanInfoParser(com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoParser) ConanCodeLocationGenerator(com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator) NodeElementParser(com.synopsys.integration.detectable.detectables.conan.cli.parser.element.NodeElementParser) ExternalIdFactory(com.synopsys.integration.bdio.model.externalid.ExternalIdFactory) ConanInfoLineAnalyzer(com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoLineAnalyzer) ConanInfoNodeParser(com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoNodeParser) ConanDetectableResult(com.synopsys.integration.detectable.detectables.conan.ConanDetectableResult) DependencyGraph(com.synopsys.integration.bdio.graph.DependencyGraph) ConanDependencyType(com.synopsys.integration.detectable.detectables.conan.cli.config.ConanDependencyType) File(java.io.File) Test(org.junit.jupiter.api.Test)

Example 5 with ConanCodeLocationGenerator

use of com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator in project synopsys-detect by blackducksoftware.

the class ConanLockfileParserFunctionalTest method testNoProjectRef.

@Test
public void testNoProjectRef() throws IOException, IntegrationException {
    File lockfile = FunctionalTestFiles.asFile("/conan/lockfile/conan.lock");
    EnumListFilter<ConanDependencyType> dependencyTypeFilter = EnumListFilter.excludeNone();
    ConanLockfileParser parser = new ConanLockfileParser(new Gson(), new ConanCodeLocationGenerator(dependencyTypeFilter, false), new ExternalIdFactory());
    String conanLockfileContents = FileUtils.readFileToString(lockfile, StandardCharsets.UTF_8);
    ConanDetectableResult result = parser.generateCodeLocationFromConanLockfileContents(conanLockfileContents);
    assertEquals(3, result.getCodeLocation().getDependencyGraph().getRootDependencies().size());
    DependencyGraph actualDependencyGraph = result.getCodeLocation().getDependencyGraph();
    GraphCompare.assertEqualsResource("/conan/lockfile/noProjectRef_graph.json", actualDependencyGraph);
}
Also used : ConanCodeLocationGenerator(com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator) ExternalIdFactory(com.synopsys.integration.bdio.model.externalid.ExternalIdFactory) ConanLockfileParser(com.synopsys.integration.detectable.detectables.conan.lockfile.parser.ConanLockfileParser) Gson(com.google.gson.Gson) ConanDetectableResult(com.synopsys.integration.detectable.detectables.conan.ConanDetectableResult) DependencyGraph(com.synopsys.integration.bdio.graph.DependencyGraph) ConanDependencyType(com.synopsys.integration.detectable.detectables.conan.cli.config.ConanDependencyType) File(java.io.File) Test(org.junit.jupiter.api.Test) FunctionalTest(com.synopsys.integration.detectable.annotations.FunctionalTest)

Aggregations

ConanCodeLocationGenerator (com.synopsys.integration.detectable.detectables.conan.ConanCodeLocationGenerator)8 ExternalIdFactory (com.synopsys.integration.bdio.model.externalid.ExternalIdFactory)6 ConanDetectableResult (com.synopsys.integration.detectable.detectables.conan.ConanDetectableResult)6 ConanDependencyType (com.synopsys.integration.detectable.detectables.conan.cli.config.ConanDependencyType)6 ConanLockfileParser (com.synopsys.integration.detectable.detectables.conan.lockfile.parser.ConanLockfileParser)6 File (java.io.File)6 Test (org.junit.jupiter.api.Test)6 Gson (com.google.gson.Gson)5 FunctionalTest (com.synopsys.integration.detectable.annotations.FunctionalTest)5 DependencyGraph (com.synopsys.integration.bdio.graph.DependencyGraph)4 ConanInfoLineAnalyzer (com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoLineAnalyzer)2 ConanInfoNodeParser (com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoNodeParser)2 ConanInfoParser (com.synopsys.integration.detectable.detectables.conan.cli.parser.ConanInfoParser)2 NodeElementParser (com.synopsys.integration.detectable.detectables.conan.cli.parser.element.NodeElementParser)2 ConanCliExtractor (com.synopsys.integration.detectable.detectables.conan.cli.ConanCliExtractor)1 ConanCommandRunner (com.synopsys.integration.detectable.detectables.conan.cli.process.ConanCommandRunner)1 ConanLockfileExtractor (com.synopsys.integration.detectable.detectables.conan.lockfile.ConanLockfileExtractor)1