-
-
Notifications
You must be signed in to change notification settings - Fork 319
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
112 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
/** | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* This software consists of voluntary contributions made by many individuals | ||
* and is licensed under the LGPL. For more information please see | ||
* <http://phing.info>. | ||
*/ | ||
|
||
namespace Phing\Test\Type\Selector; | ||
|
||
use Phing\Test\Support\BuildFileTest; | ||
|
||
/** | ||
* Class ReadableSelectorTest. | ||
* | ||
* Test cases for isReadable selectors. | ||
* | ||
* @internal | ||
*/ | ||
class ReadableSelectorTest extends BuildFileTest | ||
{ | ||
public function setUp(): void | ||
{ | ||
$this->configureProject( | ||
PHING_TEST_BASE . '/etc/types/selectors/ReadableSelectorTest.xml' | ||
); | ||
$this->executeTarget('setup'); | ||
} | ||
|
||
public function tearDown(): void | ||
{ | ||
$this->executeTarget('clean'); | ||
} | ||
|
||
public function testReadable(): void | ||
{ | ||
$this->executeTarget(__FUNCTION__); | ||
$this->assertPropertySet('selected'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<project name="test" basedir="." default="main"> | ||
|
||
<property name="tmp.dir" value="tmp/selector"/> | ||
<property name="output" value="${tmp.dir}/testoutput"/> | ||
|
||
<property name="file" value="testfile"/> | ||
|
||
<condition property="unix"> | ||
<os family="unix"/> | ||
</condition> | ||
|
||
<condition property="windows"> | ||
<os family="windows"/> | ||
</condition> | ||
|
||
<target name="setup"> | ||
<mkdir dir="${output}"/> | ||
</target> | ||
|
||
<target name="unix-clean" unless="windows"> | ||
<chmod file="${output}/${file}" mode="777"/> | ||
<delete file="${output}"/> | ||
</target> | ||
|
||
<target name="win-clean" unless="unix"> | ||
<attrib file="${output}/${file}" readonly="false"/> | ||
<delete file="${output}"/> | ||
</target> | ||
|
||
<target name="clean" depends="unix-clean,win-clean"/> | ||
|
||
<target name="createTestdir"> | ||
<mkdir dir="${output}"/> | ||
<touch file="${output}/${file}"/> | ||
</target> | ||
|
||
<target name="testReadable" depends="createTestdir"> | ||
<condition property="selected"> | ||
<isfileselected file="${output}/${file}"> | ||
<readable/> | ||
</isfileselected> | ||
</condition> | ||
</target> | ||
|
||
<target name="main"> | ||
<echo msg="This test build file is not executable."/> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters