]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/test/java/org/argeo/slc/core/execution/FileExecutionResourcesSpringTest.java
Add license headers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / test / java / org / argeo / slc / core / execution / FileExecutionResourcesSpringTest.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.core.execution;
18
19 import java.io.File;
20
21 public class FileExecutionResourcesSpringTest extends
22 AbstractExecutionFlowTestCase {
23 private String basePath = FileExecutionResources.DEFAULT_EXECUTION_RESOURCES_TMP_PATH;
24
25 public void testSimple() throws Exception {
26 File file = getFile("subdir/writeTo");
27 try {
28 assertFalse(file.exists());
29 configureAndExecuteSlcFlow("executionResources.xml",
30 "executionResources.simple");
31 assertTrue(file.exists());
32 } finally {
33 file.deleteOnExit();
34 }
35 }
36
37 public void testPlaceholderPass() throws Exception {
38 File file = getFile("subdir/60");
39 try {
40 assertFalse(file.exists());
41 configureAndExecuteSlcFlow("executionResources.xml",
42 "executionResources.placeholderPass");
43 assertTrue(file.exists());
44 } finally {
45 file.deleteOnExit();
46 }
47 }
48
49 /**
50 * Test that it generate the wrong file because of issue when using
51 * execution placeholder in contructor-arg
52 */
53 public void testPlaceholderFail() throws Exception {
54 File file = getFile("subdir/@{var}");
55 try {
56 assertFalse(file.exists());
57 configureAndExecuteSlcFlow("executionResources.xml",
58 "executionResources.placeholderFail");
59 assertTrue(file.exists());
60 } finally {
61 file.deleteOnExit();
62 }
63 }
64
65 protected File getFile(String relativePath) {
66 return new File(basePath + File.separator
67 + relativePath.replace('/', File.separatorChar));
68 }
69 }