[Request] [++ ] D8860: rhg: add harness tests for rhg files
acezar (Antoine Cezar)
phabricator at mercurial-scm.org
Mon Aug 3 14:09:40 UTC 2020
acezar created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D8860
AFFECTED FILES
tests/test-rhg.t
CHANGE DETAILS
diff --git a/tests/test-rhg.t b/tests/test-rhg.t
--- a/tests/test-rhg.t
+++ b/tests/test-rhg.t
@@ -1,5 +1,6 @@
#require rust
+Define an rhg function that will only run if rhg exists
$ rhg() {
> if [ -f "$RUNTESTDIR/../rust/target/debug/rhg" ]; then
> "$RUNTESTDIR/../rust/target/debug/rhg" "$@"
@@ -8,19 +9,52 @@
> exit 80
> fi
> }
+
+Unimplemented command
$ rhg unimplemented-command
[252]
+
+Finding root
$ rhg root
abort: no repository found in '$TESTTMP' (.hg not found)!
[255]
+
$ hg init repository
$ cd repository
$ rhg root
$TESTTMP/repository
+
+Unwritable file descriptor
$ rhg root > /dev/full
abort: No space left on device (os error 28)
[255]
+
+Deleted repository
$ rm -rf `pwd`
$ rhg root
abort: error getting current working directory: $ENOENT$
[255]
+
+Listing tracked files
+ $ cd $TESTTMP
+ $ hg init repository
+ $ cd repository
+ $ for i in 1 2 3; do
+ > echo $i >> file$i
+ > hg add file$i
+ > done
+ > hg commit -m "commit $i" -q
+
+Listing tracked files from root
+ $ rhg files
+ file1
+ file2
+ file3
+
+Listing tracked files from subdirectory
+ $ mkdir -p path/to/directory
+ $ cd path/to/directory
+ $ rhg files
+ ../../../file1
+ ../../../file2
+ ../../../file3
To: acezar, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20200803/59d4f5f5/attachment.html>
More information about the Mercurial-patches
mailing list