aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/analysis/actions/FileWriteActionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/analysis/actions/FileWriteActionTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/analysis/actions/FileWriteActionTest.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/analysis/actions/FileWriteActionTest.java b/src/test/java/com/google/devtools/build/lib/analysis/actions/FileWriteActionTest.java
new file mode 100644
index 0000000000..1bc136fcd5
--- /dev/null
+++ b/src/test/java/com/google/devtools/build/lib/analysis/actions/FileWriteActionTest.java
@@ -0,0 +1,46 @@
+// Copyright 2015 Google Inc. All rights reserved.
+//
+// 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.google.devtools.build.lib.analysis.actions;
+
+import com.google.devtools.build.lib.actions.ActionOwner;
+import com.google.devtools.build.lib.actions.Artifact;
+
+public class FileWriteActionTest extends FileWriteActionTestCase {
+
+ @Override
+ protected FileWriteAction createAction(
+ ActionOwner actionOwner, Artifact outputArtifact, String data, boolean makeExecutable) {
+ return new FileWriteAction(actionOwner, outputArtifact, data, makeExecutable);
+ }
+
+ public void testNoInputs() {
+ checkNoInputsByDefault();
+ }
+
+ public void testDestinationArtifactIsOutput() {
+ checkDestinationArtifactIsOutput();
+ }
+
+ public void testCanWriteNonExecutableFile() throws Exception {
+ checkCanWriteNonExecutableFile();
+ }
+
+ public void testCanWriteExecutableFile() throws Exception {
+ checkCanWriteExecutableFile();
+ }
+
+ public void testComputesConsistentKeys() throws Exception {
+ checkComputesConsistentKeys();
+ }
+}