Search in sources :

Example 6 with YarnLockParser

use of com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser in project synopsys-detect by blackducksoftware.

the class DetectableFactory method yarnLockParser.

private YarnLockParser yarnLockParser() {
    YarnLockLineAnalyzer yarnLockLineAnalyzer = new YarnLockLineAnalyzer();
    YarnLockDependencySpecParser yarnLockDependencySpecParser = new YarnLockDependencySpecParser(yarnLockLineAnalyzer);
    YarnLockEntrySectionParserSet yarnLockEntryElementParser = new YarnLockEntrySectionParserSet(yarnLockLineAnalyzer, yarnLockDependencySpecParser);
    YarnLockEntryParser yarnLockEntryParser = new YarnLockEntryParser(yarnLockLineAnalyzer, yarnLockEntryElementParser);
    return new YarnLockParser(yarnLockEntryParser);
}
Also used : YarnLockDependencySpecParser(com.synopsys.integration.detectable.detectables.yarn.parse.entry.section.YarnLockDependencySpecParser) YarnLockEntrySectionParserSet(com.synopsys.integration.detectable.detectables.yarn.parse.entry.section.YarnLockEntrySectionParserSet) YarnLockParser(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser) YarnLockEntryParser(com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryParser) YarnLockLineAnalyzer(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockLineAnalyzer)

Example 7 with YarnLockParser

use of com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser in project synopsys-detect by blackducksoftware.

the class YarnLockParserTest method testThatYarnLockVersionsResolveAsExpected.

@Test
void testThatYarnLockVersionsResolveAsExpected() {
    List<String> yarnLockText = new ArrayList<>();
    yarnLockText.add("http-proxy@^1.8.1:");
    yarnLockText.add("  version \"1.16.2\"");
    yarnLockText.add("  resolved \"http://nexus.fr.murex.com/nexus3/repository/npm-all/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742\"");
    yarnLockText.add("  dependencies:");
    yarnLockText.add("    eventemitter3 \"1.x.x\"");
    yarnLockText.add("    requires-port \"1.x.x\"");
    yarnLockText.add("http-server@^0.9.0:");
    yarnLockText.add("  version \"0.9.0\"");
    yarnLockText.add("  resolved \"http://nexus.fr.murex.com/nexus3/repository/npm-all/http-server/-/http-server-0.9.0.tgz#8f1b06bdc733618d4dc42831c7ba1aff4e06001a\"");
    YarnLockParser yarnLockParser = createYarnLockParser();
    YarnLock yarnLock = yarnLockParser.parseYarnLock(yarnLockText);
    assertEntry(yarnLock, "http-proxy", "^1.8.1", "1.16.2", new YarnLockDependency("eventemitter3", "1.x.x", false), new YarnLockDependency("requires-port", "1.x.x", false));
    assertEntry(yarnLock, "http-server", "^0.9.0", "0.9.0");
}
Also used : YarnLock(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLock) YarnLockParser(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser) ArrayList(java.util.ArrayList) YarnLockDependency(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockDependency) Test(org.junit.jupiter.api.Test) UnitTest(com.synopsys.integration.detectable.annotations.UnitTest)

Example 8 with YarnLockParser

use of com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser in project synopsys-detect by blackducksoftware.

the class YarnLockParserTest method testThatDependenciesWithQuotesAreResolvedCorrectly.

@Test
void testThatDependenciesWithQuotesAreResolvedCorrectly() {
    List<String> yarnLockText = new ArrayList<>();
    yarnLockText.add("\"cssstyle@>= 0.2.37 < 0.3.0\":");
    yarnLockText.add("  version \"0.2.37\"");
    yarnLockText.add("  resolved \"http://nexus/nexus3/repository/npm-all/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54\"");
    yarnLockText.add("  dependencies:");
    yarnLockText.add("    cssom \"0.3.x\"");
    YarnLockParser yarnLockParser = createYarnLockParser();
    YarnLock yarnLock = yarnLockParser.parseYarnLock(yarnLockText);
    assertEntry(yarnLock, "cssstyle", ">= 0.2.37 < 0.3.0", "0.2.37", new YarnLockDependency("cssom", "0.3.x", false));
}
Also used : YarnLock(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLock) YarnLockParser(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser) ArrayList(java.util.ArrayList) YarnLockDependency(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockDependency) Test(org.junit.jupiter.api.Test) UnitTest(com.synopsys.integration.detectable.annotations.UnitTest)

Example 9 with YarnLockParser

use of com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser in project synopsys-detect by blackducksoftware.

the class YarnLockParserTest method testThatYarnLockPeerNotAdded.

@Test
void testThatYarnLockPeerNotAdded() {
    List<String> yarnLockText = Arrays.asList("any-root-dep@1:", // must have a version to create an entry
    "  version: 1", "  peerDependencies:", "    some-peer: ^10.0.0", "  peerDependenciesMeta:", "    some-peer:", "      optional: true");
    YarnLockParser yarnLockParser = createYarnLockParser();
    YarnLock yarnLock = yarnLockParser.parseYarnLock(yarnLockText);
    Assertions.assertEquals(1, yarnLock.getEntries().size());
    YarnLockEntry first = yarnLock.getEntries().get(0);
    Assertions.assertEquals(0, first.getDependencies().size());
}
Also used : YarnLock(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLock) YarnLockEntry(com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntry) YarnLockParser(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser) Test(org.junit.jupiter.api.Test) UnitTest(com.synopsys.integration.detectable.annotations.UnitTest)

Example 10 with YarnLockParser

use of com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser in project synopsys-detect by blackducksoftware.

the class YarnLockParserTest method testThatMultipleDepsPerLineCanBeHandledCorrectly.

@Test
void testThatMultipleDepsPerLineCanBeHandledCorrectly() {
    List<String> yarnLockText = new ArrayList<>();
    yarnLockText.add("debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@~2.6.4, debug@~2.6.6:");
    yarnLockText.add("  version \"2.6.9\"");
    yarnLockText.add("  resolved \"http://nexus/nexus3/repository/npm-all/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f\"");
    yarnLockText.add("  dependencies:");
    yarnLockText.add("    ms \"2.0.0\"");
    YarnLockParser yarnLockParser = createYarnLockParser();
    YarnLock yarnLock = yarnLockParser.parseYarnLock(yarnLockText);
    assertEntry(yarnLock, "debug", "2", "2.6.9", new YarnLockDependency("ms", "2.0.0", false));
    assertEntry(yarnLock, "debug", "2.6.9", "2.6.9", new YarnLockDependency("ms", "2.0.0", false));
    assertEntry(yarnLock, "debug", "^2.2.0", "2.6.9", new YarnLockDependency("ms", "2.0.0", false));
    assertEntry(yarnLock, "debug", "^2.3.3", "2.6.9", new YarnLockDependency("ms", "2.0.0", false));
    assertEntry(yarnLock, "debug", "~2.6.4", "2.6.9", new YarnLockDependency("ms", "2.0.0", false));
    assertEntry(yarnLock, "debug", "~2.6.6", "2.6.9", new YarnLockDependency("ms", "2.0.0", false));
}
Also used : YarnLock(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLock) YarnLockParser(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser) ArrayList(java.util.ArrayList) YarnLockDependency(com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockDependency) Test(org.junit.jupiter.api.Test) UnitTest(com.synopsys.integration.detectable.annotations.UnitTest)

Aggregations

YarnLockParser (com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockParser)13 YarnLock (com.synopsys.integration.detectable.detectables.yarn.parse.YarnLock)11 Test (org.junit.jupiter.api.Test)11 UnitTest (com.synopsys.integration.detectable.annotations.UnitTest)10 YarnLockDependency (com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockDependency)8 ArrayList (java.util.ArrayList)6 YarnLockEntry (com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntry)4 YarnLockLineAnalyzer (com.synopsys.integration.detectable.detectables.yarn.parse.YarnLockLineAnalyzer)3 YarnLockEntryParser (com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryParser)3 YarnLockDependencySpecParser (com.synopsys.integration.detectable.detectables.yarn.parse.entry.section.YarnLockDependencySpecParser)3 YarnLockEntrySectionParserSet (com.synopsys.integration.detectable.detectables.yarn.parse.entry.section.YarnLockEntrySectionParserSet)3 File (java.io.File)1 NotNull (org.jetbrains.annotations.NotNull)1