aboutsummaryrefslogtreecommitdiff
path: root/tests/diff.test
blob: f78eaa661e30f63e6572fb83585fdc93f62e16eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash

#testing "name" "command" "result" "infile" "stdin"

seq 10 > left
seq 11 > right

testing "unknown argument" 'diff --oops left right 2>/dev/null ; echo $?' "2\n" "" ""
testing "missing" 'diff missing1 missing2 2>/dev/null ; echo $?' "2\n" "" ""

testing "- -" 'diff - - ; echo $?' "0\n" "" "whatever"

expected='--- lll
+++ rrr
@@ -8,3 +8,4 @@
 8
 9
 10
+11
'
# Hm this only gives unified diffs?
testing "simple" "diff -L lll -L rrr left right" "$expected" "" ""


expected='--- tree1/file
+++ tree2/file
@@ -1 +1 @@
-foo
+food
'
mkdir -p tree1 tree2
echo foo > tree1/file
echo food > tree2/file

testing "-r" "diff -r -L tree1/file -L tree2/file tree1 tree2 |tee out" "$expected" "" ""

echo -e "hello\r\nworld\r\n"> a
echo -e "hello\nworld\n"> b
testing "--strip-trailing-cr off" "diff -q a b" "Files a and b differ\n" "" ""
testing "--strip-trailing-cr on" "diff -u --strip-trailing-cr a b" "" "" ""