use of com.facebook.buck.timing.DefaultClock in project buck by facebook.
the class RageCommandIntegrationTest method testUpload.
@Test
public void testUpload() throws Exception {
ProjectWorkspace workspace = TestDataHelper.createProjectWorkspaceForScenario(this, "interactive_report", temporaryFolder);
workspace.setUp();
final AtomicReference<String> requestMethod = new AtomicReference<>();
final AtomicReference<String> requestPath = new AtomicReference<>();
final AtomicReference<byte[]> requestBody = new AtomicReference<>();
final String successMessage = "Upload successful";
try (HttpdForTests httpd = new HttpdForTests()) {
httpd.addHandler(new AbstractHandler() {
@Override
public void handle(String s, Request request, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws IOException, ServletException {
httpServletResponse.setStatus(200);
request.setHandled(true);
if (request.getUri().getPath().equals("/status.php")) {
return;
}
requestPath.set(request.getUri().getPath());
requestMethod.set(request.getMethod());
requestBody.set(ByteStreams.toByteArray(httpServletRequest.getInputStream()));
try (DataOutputStream out = new DataOutputStream(httpServletResponse.getOutputStream())) {
out.writeBytes(successMessage);
}
}
});
httpd.start();
RageConfig rageConfig = createRageConfig(httpd.getRootUri().getPort(), "", RageProtocolVersion.SIMPLE);
ProjectFilesystem filesystem = new ProjectFilesystem(temporaryFolder.getRoot());
Clock clock = new DefaultClock();
DefectReporter reporter = new DefaultDefectReporter(filesystem, objectMapper, rageConfig, BuckEventBusFactory.newInstance(clock), clock);
AutomatedReport automatedReport = new AutomatedReport(reporter, filesystem, objectMapper, new TestConsole(), TestBuildEnvironmentDescription.INSTANCE, VcsInfoCollector.create(new NoOpCmdLineInterface()), rageConfig, Optional::empty);
DefectSubmitResult defectSubmitResult = automatedReport.collectAndSubmitResult().get();
assertThat(defectSubmitResult.getReportSubmitMessage(), Matchers.equalTo(Optional.of(successMessage)));
assertThat(requestPath.get(), Matchers.equalTo(UPLOAD_PATH));
assertThat(requestMethod.get(), Matchers.equalTo("POST"));
filesystem.mkdirs(filesystem.getBuckPaths().getBuckOut());
Path report = filesystem.createTempFile(filesystem.getBuckPaths().getBuckOut(), "report", "zip");
filesystem.writeBytesToPath(requestBody.get(), report);
ZipInspector zipInspector = new ZipInspector(filesystem.resolve(report));
zipInspector.assertFileExists("report.json");
zipInspector.assertFileExists("buckconfig.local");
zipInspector.assertFileExists("bucklogging.local.properties");
zipInspector.assertFileExists(BUILD_COMMAND_DIR_PATH + "buck.log");
zipInspector.assertFileExists(AUTODEPS_COMMAND_DIR_PATH + "buck.log");
zipInspector.assertFileExists(BUILD_COMMAND_DIR_PATH + "buck-machine-log");
zipInspector.assertFileExists(AUTODEPS_COMMAND_DIR_PATH + "buck-machine-log");
}
}
use of com.facebook.buck.timing.DefaultClock in project buck by facebook.
the class DefectReporterTest method testAttachesReport.
@Test
public void testAttachesReport() throws Exception {
ProjectFilesystem filesystem = new ProjectFilesystem(temporaryFolder.getRoot());
ObjectMapper objectMapper = ObjectMappers.newDefaultInstance();
RageConfig config = RageConfig.of(FakeBuckConfig.builder().build());
Clock clock = new DefaultClock();
DefectReporter reporter = new DefaultDefectReporter(filesystem, objectMapper, config, BuckEventBusFactory.newInstance(clock), clock);
DefectSubmitResult defectSubmitResult = reporter.submitReport(DefectReport.builder().setBuildEnvironmentDescription(TEST_ENV_DESCRIPTION).setUserLocalConfiguration(TEST_USER_LOCAL_CONFIGURATION).build());
Path reportPath = filesystem.resolve(defectSubmitResult.getReportSubmitLocation().get());
try (ZipFile zipFile = new ZipFile(reportPath.toFile())) {
ZipEntry entry = zipFile.getEntry("report.json");
JsonNode reportNode = objectMapper.readTree(zipFile.getInputStream(entry));
assertThat(reportNode.get("buildEnvironmentDescription").get("user").asText(), Matchers.equalTo("test_user"));
assertThat(reportNode.get("userLocalConfiguration").get("noBuckCheckPresent").asBoolean(), Matchers.equalTo(true));
}
}
use of com.facebook.buck.timing.DefaultClock in project buck by facebook.
the class DefectReporterTest method testAttachesPaths.
@Test
public void testAttachesPaths() throws Exception {
ProjectFilesystem filesystem = new ProjectFilesystem(temporaryFolder.getRoot());
RageConfig config = RageConfig.of(FakeBuckConfig.builder().build());
Clock clock = new DefaultClock();
DefectReporter reporter = new DefaultDefectReporter(filesystem, ObjectMappers.newDefaultInstance(), config, BuckEventBusFactory.newInstance(clock), clock);
Path fileToBeIncluded = Paths.get("FileToBeIncluded.txt");
filesystem.touch(fileToBeIncluded);
String fileToBeIncludedContent = "testcontentbehere";
filesystem.writeContentsToPath(fileToBeIncludedContent, fileToBeIncluded);
DefectSubmitResult defectSubmitResult = reporter.submitReport(DefectReport.builder().setBuildEnvironmentDescription(TEST_ENV_DESCRIPTION).setIncludedPaths(fileToBeIncluded).setUserLocalConfiguration(TEST_USER_LOCAL_CONFIGURATION).build());
Path reportPath = filesystem.resolve(defectSubmitResult.getReportSubmitLocation().get());
ZipInspector inspector = new ZipInspector(reportPath);
inspector.assertFileContents(fileToBeIncluded, fileToBeIncludedContent);
}
use of com.facebook.buck.timing.DefaultClock in project buck by facebook.
the class RageCommandIntegrationTest method testJsonUpload.
@Test
public void testJsonUpload() throws Exception {
ProjectWorkspace workspace = TestDataHelper.createProjectWorkspaceForScenario(this, "interactive_report", temporaryFolder);
workspace.setUp();
try (HttpdForTests httpd = new HttpdForTests()) {
httpd.addHandler(new AbstractHandler() {
@Override
public void handle(String s, Request request, HttpServletRequest httpServletRequest, HttpServletResponse httpResponse) throws IOException, ServletException {
httpResponse.setStatus(200);
request.setHandled(true);
if (request.getUri().getPath().equals("/status.php")) {
return;
}
RageJsonResponse json = RageJsonResponse.of(/* isRequestSuccessful */
true, /* errorMessage */
Optional.empty(), /* rageUrl */
Optional.of("http://remoteUrlToVisit"), /* message */
Optional.of("This is supposed to be JSON."));
try (DataOutputStream out = new DataOutputStream(httpResponse.getOutputStream())) {
objectMapper.writeValue(out, json);
}
}
});
httpd.start();
RageConfig rageConfig = createRageConfig(httpd.getRootUri().getPort(), "", RageProtocolVersion.JSON);
ProjectFilesystem filesystem = new ProjectFilesystem(temporaryFolder.getRoot());
ObjectMapper objectMapper = ObjectMappers.newDefaultInstance();
Clock clock = new DefaultClock();
DefectReporter reporter = new DefaultDefectReporter(filesystem, objectMapper, rageConfig, BuckEventBusFactory.newInstance(clock), clock);
AutomatedReport automatedReport = new AutomatedReport(reporter, filesystem, objectMapper, new TestConsole(), TestBuildEnvironmentDescription.INSTANCE, VcsInfoCollector.create(new NoOpCmdLineInterface()), rageConfig, Optional::empty);
DefectSubmitResult submitReport = automatedReport.collectAndSubmitResult().get();
assertEquals("http://remoteUrlToVisit", submitReport.getReportSubmitLocation().get());
assertEquals("This is supposed to be JSON.", submitReport.getReportSubmitMessage().get());
}
}
use of com.facebook.buck.timing.DefaultClock in project buck by facebook.
the class BuildInfoRecorderIntegrationTest method testPerformUploadToArtifactCache.
@Test
public void testPerformUploadToArtifactCache() throws IOException, InterruptedException {
BuildInfoRecorder buildInfoRecorder = createBuildInfoRecorder(new FakeProjectFilesystem() {
@Override
public void createZip(Collection<Path> pathsToIncludeInZip, Path out) throws IOException {
// For this test, nothing really cares about the content, so just write out the name.
writeBytesToPath(out.toString().getBytes(), out);
}
});
Path cacheDir = Files.createTempDirectory("root");
ArtifactCache artifactCache = TestArtifactCaches.createDirCacheForTest(cacheDir, Paths.get("cache"));
buildInfoRecorder.performUploadToArtifactCache(ImmutableSet.of(new RuleKey(RULE_KEY)), artifactCache, new BuckEventBus(new DefaultClock(), new BuildId()));
assertTrue(cacheDir.resolve(DirArtifactCacheTestUtil.getPathForRuleKey(artifactCache, new RuleKey(RULE_KEY), Optional.empty())).toFile().exists());
}
Aggregations