/* * Copyright 2015-present Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. */ package com.facebook.buck.jvm.scala; import static org.hamcrest.Matchers.containsString; import static org.junit.Assert.assertThat; import static org.junit.Assert.assertTrue; import com.facebook.buck.testutil.integration.ProjectWorkspace; import com.facebook.buck.testutil.integration.TemporaryPaths; import com.facebook.buck.testutil.integration.TestDataHelper; import java.io.IOException; import org.junit.Before; import org.junit.Rule; import org.junit.Test; public class ScalaTestIntegrationTest { @Rule public TemporaryPaths tmp = new TemporaryPaths(); public ProjectWorkspace workspace; @Before public void setUp() throws IOException { workspace = TestDataHelper.createProjectWorkspaceForScenario(this, "scala_test", tmp); workspace.setUp(); } @Test(timeout = (2 * 60 * 1000)) public void testTest() throws IOException { // This test should pass. ProjectWorkspace.ProcessResult result1 = workspace.runBuckCommand("test", "//:test-success"); result1.assertSuccess(); workspace.resetBuildLogFile(); // This test should fail. ProjectWorkspace.ProcessResult result2 = workspace.runBuckCommand("test", "//:test-failure"); result2.assertTestFailure(); assertThat( "`buck test` should fail because `not work` failed.", result2.getStderr(), containsString("not work")); } @Test(timeout = (2 * 60 * 1000)) public void testTestTimeout() throws IOException { ProjectWorkspace.ProcessResult result = workspace.runBuckCommand("test", "//:test-spinning"); result.assertSpecialExitCode("test should fail", 42); String stderr = result.getStderr(); assertTrue(stderr, stderr.contains("test timed out before generating results file")); } }