use of org.devgateway.ocds.persistence.mongo.Release in project oc-explorer by devgateway.
the class OcdsControllerTest method ocdsPackageByOcid.
@Test
public void ocdsPackageByOcid() throws Exception {
final ReleasePackage releasePackage = ocdsController.ocdsPackageByOcid("ocds-endpoint-001");
Assert.assertNotNull(releasePackage);
final Optional<Release> release = releasePackage.getReleases().stream().findFirst();
Assert.assertEquals(true, release.isPresent());
Assert.assertEquals("ocds-endpoint-001", release.get().getOcid());
}
use of org.devgateway.ocds.persistence.mongo.Release in project oc-explorer by devgateway.
the class ReleaseExportTest method testReleaseExportIsValid.
@Test
public void testReleaseExportIsValid() throws Exception {
final ClassLoader classLoader = getClass().getClassLoader();
final File file = new File(classLoader.getResource("json/award-release-test.json").getFile());
final JsonImport releaseJsonImport = new ReleaseJsonImport(releaseRepository, file);
final Release release = (Release) releaseJsonImport.importObject();
final MvcResult result = this.mockMvc.perform(MockMvcRequestBuilders.get("/api/ocds/release/ocid/" + release.getOcid()).accept(MediaType.APPLICATION_JSON_UTF8)).andExpect(status().isOk()).andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8)).andReturn();
final String content = result.getResponse().getContentAsString();
final JsonNode jsonNodeResponse = JsonLoader.fromString(content);
final OcdsSchemaValidatorService.ProcessingReportWithNode processingReport = ocdsSchemaValidator.validate(jsonNodeResponse);
if (!processingReport.getReport().isSuccess()) {
for (ProcessingMessage processingMessage : processingReport.getReport()) {
logger.error(">>> processingMessage: \n" + processingMessage);
}
}
Assert.assertEquals("Is the release valid?", true, processingReport.getReport().isSuccess());
}
use of org.devgateway.ocds.persistence.mongo.Release in project oc-explorer by devgateway.
the class ReleaseExportTest method testWholeStandardIsImplemented.
@Test
public void testWholeStandardIsImplemented() throws Exception {
final ClassLoader classLoader = getClass().getClassLoader();
final File file = new File(classLoader.getResource("json/full-release.json").getFile());
final JsonImport releaseJsonImport = new ReleaseJsonImport(releaseRepository, file);
final Release release = (Release) releaseJsonImport.importObject();
final MvcResult result = this.mockMvc.perform(MockMvcRequestBuilders.get("/api/ocds/release/ocid/" + release.getOcid()).accept(MediaType.APPLICATION_JSON_UTF8)).andExpect(status().isOk()).andExpect(content().contentType(MediaType.APPLICATION_JSON_UTF8)).andReturn();
final String content = result.getResponse().getContentAsString();
final JsonNode jsonNodeResponse = JsonLoader.fromString(content);
final OcdsSchemaValidatorService.ProcessingReportWithNode processingReport = ocdsSchemaValidator.validate(jsonNodeResponse);
if (!processingReport.getReport().isSuccess()) {
for (ProcessingMessage processingMessage : processingReport.getReport()) {
logger.error(">>> processingMessage: \n" + processingMessage);
}
}
Assert.assertEquals("Do we implement the entire standard (with all fields required)?", true, processingReport.getReport().isSuccess());
}
use of org.devgateway.ocds.persistence.mongo.Release in project oc-explorer by devgateway.
the class ReleaseRowImporter method importRow.
@Override
public void importRow(final String[] row) throws ParseException {
Release release = createReleaseFromReleaseRow(row);
release.setDate(new Date());
if (release.getId() == null) {
repository.insert(release);
} else {
repository.save(release);
}
}
use of org.devgateway.ocds.persistence.mongo.Release in project oc-explorer by devgateway.
the class ReleaseCompilerService method createSaveCompiledReleaseAndSaveRecord.
public void createSaveCompiledReleaseAndSaveRecord(final Record record) {
Release compiledRelease = createCompiledRelease(record);
record.setCompiledRelease(releaseRepository.save(compiledRelease));
recordRepository.save(record);
}
Aggregations