blob: d5a31942232cffaa46a107c350ae8b7a40e8eff4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.sling.pipes;
import org.apache.sling.api.resource.PersistenceException;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class BasePipeTest extends AbstractPipeTest {
protected BasePipe resetDryRun(Object value) throws PersistenceException {
BasePipe basePipe = (BasePipe)plumber.newPipe(context.resourceResolver()).echo("blah").build();
basePipe.bindings.addBinding(BasePipe.DRYRUN_KEY, value);
return basePipe;
}
@Test
public void dryRunTest() throws Exception {
assertFalse("Is dry run should be false with flag set to text false", resetDryRun("false").isDryRun());
assertFalse("Is dry run should be false with flag set to boolean false", resetDryRun(false).isDryRun());
assertFalse("Is dry run should be true with no dry run flag", resetDryRun(null).isDryRun());
assertTrue("Is dry run should be true with flag set to boolean true", resetDryRun(true).isDryRun());
assertTrue("Is dry run should be true with flag set to text true", resetDryRun("true").isDryRun());
assertTrue("Is dry run should be true with flag set to something that is not false or 'false'", resetDryRun("other").isDryRun());
}
}