use of com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryBuilder in project synopsys-detect by blackducksoftware.
the class YarnLockHeaderSectionParserTest method testParserHandlesMissingSymbol.
@Test
void testParserHandlesMissingSymbol() {
String line = "example, example@1";
List<String> lines = Arrays.asList(line);
Assertions.assertTrue(yarnLockParser.applies(line));
YarnLockEntryBuilder builder = new YarnLockEntryBuilder();
yarnLockParser.parseSection(builder, lines, 0);
// Complete the builder requirements and build the entry
builder.setVersion("testVersion");
YarnLockEntry entry = builder.build();
List<YarnLockEntryId> ids = entry.getIds();
Assertions.assertEquals(2, ids.size());
Assertions.assertEquals("example", ids.get(0).getName());
Assertions.assertEquals("", ids.get(0).getVersion());
Assertions.assertEquals("example", ids.get(1).getName());
Assertions.assertEquals("1", ids.get(1).getVersion());
}
use of com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryBuilder in project synopsys-detect by blackducksoftware.
the class YarnLockHeaderSectionParserTest method handlesSymbolInName.
@Test
void handlesSymbolInName() {
String line = "@example";
List<String> lines = Arrays.asList(line);
Assertions.assertTrue(yarnLockParser.applies(line));
YarnLockEntryBuilder builder = new YarnLockEntryBuilder();
yarnLockParser.parseSection(builder, lines, 0);
// Complete the builder requirements and build the entry
builder.setVersion("testVersion");
YarnLockEntry entry = builder.build();
List<YarnLockEntryId> ids = entry.getIds();
Assertions.assertEquals(1, ids.size());
Assertions.assertEquals("@example", ids.get(0).getName());
Assertions.assertEquals("", ids.get(0).getVersion());
}
use of com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryBuilder in project synopsys-detect by blackducksoftware.
the class YarnLockKeyValuePairSectionParserTest method doTest.
private void doTest(String line, String versionValue) {
Assertions.assertTrue(yarnLockKeyValuePairElementParser.applies(line));
YarnLockEntryBuilder builder = new YarnLockEntryBuilder();
builder.addId(new YarnLockEntryId("idname", "idversion"));
List<String> lines = Arrays.asList(line);
yarnLockKeyValuePairElementParser.parseSection(builder, lines, 0);
YarnLockEntry entry = builder.build();
Assertions.assertEquals(versionValue, entry.getVersion());
}
use of com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryBuilder in project synopsys-detect by blackducksoftware.
the class YarnLockHeaderSectionParserTest method testList.
@Test
void testList() {
String line = "\"@apollographql/apollo-tools@^0.4.2\", \"@apollographql/apollo-tools@^0.4.3\":";
List<String> lines = Arrays.asList(line);
Assertions.assertTrue(yarnLockParser.applies(line));
YarnLockEntryBuilder builder = new YarnLockEntryBuilder();
yarnLockParser.parseSection(builder, lines, 0);
// Complete the builder requirements and build the entry
builder.setVersion("testVersion");
YarnLockEntry entry = builder.build();
List<YarnLockEntryId> ids = entry.getIds();
Assertions.assertEquals(2, ids.size());
Assertions.assertEquals("@apollographql/apollo-tools", ids.get(0).getName());
Assertions.assertEquals("^0.4.2", ids.get(0).getVersion());
Assertions.assertEquals("@apollographql/apollo-tools", ids.get(1).getName());
Assertions.assertEquals("^0.4.3", ids.get(1).getVersion());
}
use of com.synopsys.integration.detectable.detectables.yarn.parse.entry.YarnLockEntryBuilder in project synopsys-detect by blackducksoftware.
the class YarnLockHeaderSectionParserTest method testQuotedId.
@Test
void testQuotedId() {
String line = "\"xtend@>=4.0.0 <4.1.0-0\", xtend@^4.0.0, xtend@~4.0.1:";
List<String> lines = Arrays.asList(line);
Assertions.assertTrue(yarnLockParser.applies(line));
YarnLockEntryBuilder builder = new YarnLockEntryBuilder();
yarnLockParser.parseSection(builder, lines, 0);
// Complete the builder requirements and build the entry
builder.setVersion("testVersion");
YarnLockEntry entry = builder.build();
List<YarnLockEntryId> ids = entry.getIds();
Assertions.assertEquals(3, ids.size());
Assertions.assertEquals("xtend", ids.get(0).getName());
Assertions.assertEquals(">=4.0.0 <4.1.0-0", ids.get(0).getVersion());
Assertions.assertEquals("xtend", ids.get(1).getName());
Assertions.assertEquals("^4.0.0", ids.get(1).getVersion());
Assertions.assertEquals("xtend", ids.get(2).getName());
Assertions.assertEquals("~4.0.1", ids.get(2).getVersion());
}
Aggregations