893N/A#
3909N/A# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
893N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
893N/A#
893N/A# This code is free software; you can redistribute it and/or modify it
893N/A# under the terms of the GNU General Public License version 2 only, as
893N/A# published by the Free Software Foundation.
893N/A#
893N/A# This code is distributed in the hope that it will be useful, but WITHOUT
893N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
893N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
893N/A# version 2 for more details (a copy is included in the LICENSE file that
893N/A# accompanied this code).
893N/A#
893N/A# You should have received a copy of the GNU General Public License version
893N/A# 2 along with this work; if not, write to the Free Software Foundation,
893N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
893N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
893N/A#
893N/A
893N/A# @test
2826N/A# @bug 4313887 6907737
893N/A# @summary Unit test for walkFileTree method
2826N/A# @build CreateFileTree PrintFileTree SkipSiblings TerminateWalk MaxDepth
893N/A# @run shell walk_file_tree.sh
893N/A
893N/A# if TESTJAVA isn't set then we assume an interactive run.
893N/A
893N/Aif [ -z "$TESTJAVA" ]; then
893N/A TESTSRC=.
893N/A TESTCLASSES=.
893N/A JAVA=java
893N/Aelse
893N/A JAVA="${TESTJAVA}/bin/java"
893N/Afi
893N/A
893N/AOS=`uname -s`
893N/Acase "$OS" in
2072N/A Windows_* | CYGWIN* )
893N/A echo "This test does not run on Windows"
893N/A exit 0
893N/A ;;
893N/A * )
893N/A CLASSPATH=${TESTCLASSES}:${TESTSRC}
893N/A ;;
893N/Aesac
893N/Aexport CLASSPATH
893N/A
893N/A# create the file tree
893N/AROOT=`$JAVA CreateFileTree`
893N/Aif [ $? != 0 ]; then exit 1; fi
893N/A
893N/Afailures=0
893N/A
893N/A# print the file tree and compare output with find(1)
893N/A$JAVA PrintFileTree "$ROOT" > out1
893N/Afind "$ROOT" > out2
893N/Adiff out1 out2
893N/Aif [ $? != 0 ]; then failures=`expr $failures + 1`; fi
893N/A
2188N/A# repeat test following links. Some versions of find(1) output
2188N/A# cycles (sym links to ancestor directories), other versions do
2188N/A# not. For that reason we run PrintFileTree with the -printCycles
2188N/A# option when the output without this option differs to find(1).
2188N/Afind "$ROOT" -follow > out1
2188N/A$JAVA PrintFileTree -follow "$ROOT" > out2
893N/Adiff out1 out2
2188N/Aif [ $? != 0 ];
2188N/A then
2188N/A # re-run printing cycles to stdout
2188N/A $JAVA PrintFileTree -follow -printCycles "$ROOT" > out2
2188N/A diff out1 out2
2188N/A if [ $? != 0 ]; then failures=`expr $failures + 1`; fi
2188N/A fi
893N/A
893N/A# test SKIP_SIBLINGS
893N/A$JAVA SkipSiblings "$ROOT"
893N/Aif [ $? != 0 ]; then failures=`expr $failures + 1`; fi
893N/A
893N/A# test TERMINATE
893N/A$JAVA TerminateWalk "$ROOT"
893N/Aif [ $? != 0 ]; then failures=`expr $failures + 1`; fi
893N/A
2826N/A# test maxDepth
2826N/A$JAVA MaxDepth "$ROOT"
2826N/Aif [ $? != 0 ]; then failures=`expr $failures + 1`; fi
2826N/A
893N/A# clean-up
893N/Arm -r "$ROOT"
893N/A
893N/Aecho ''
893N/Aif [ $failures -gt 0 ];
893N/A then echo "$failures test(s) failed";
893N/A else echo "Test passed"; fi
893N/Aexit $failures