blob: bb29499bbaa670a6bcdb3f4af30e2efc4b7a2b55 [file] [log] [blame]
/*
* Copyright 2014-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.python;
import static org.hamcrest.Matchers.containsString;
import static org.junit.Assert.assertThat;
import com.facebook.buck.testutil.integration.DebuggableTemporaryFolder;
import com.facebook.buck.testutil.integration.ProjectWorkspace;
import com.facebook.buck.testutil.integration.ProjectWorkspace.ProcessResult;
import com.facebook.buck.testutil.integration.TestDataHelper;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import java.io.IOException;
import java.nio.file.Paths;
import java.util.Properties;
public class PythonTestIntegrationTest {
@Rule
public DebuggableTemporaryFolder tmp = new DebuggableTemporaryFolder();
public ProjectWorkspace workspace;
@Before
public void setUp() throws IOException {
Properties props = System.getProperties();
props.setProperty(
"buck.path_to_python_test_main",
Paths.get("src/com/facebook/buck/python/__test_main__.py").toAbsolutePath().toString());
props.setProperty(
"buck.path_to_pex",
Paths.get("src/com/facebook/buck/python/pex.py").toAbsolutePath().toString());
workspace = TestDataHelper.createProjectWorkspaceForScenario(
this, "python_test", tmp);
workspace.setUp();
}
@Test
public void testPullingJarFromCacheDoesNotResultInReportingStaleTestResults() throws IOException {
// This test should pass.
ProcessResult result1 = workspace.runBuckCommand("test", "//:test-success");
result1.assertSuccess();
workspace.resetBuildLogFile();
// This test should fail.
ProcessResult result2 = workspace.runBuckCommand("test", "//:test-failure");
result2.assertTestFailure();
assertThat(
"`buck test` should fail because test_that_fails() failed.",
result2.getStderr(),
containsString("test_that_fails"));
}
}