File: test

package info (click to toggle)
xrootconsole 1%3A0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 576 kB
  • sloc: ansic: 6,693; makefile: 61; sh: 44
file content (38 lines) | stat: -rwxr-xr-x 2,663 bytes parent folder | download | duplicates (2)
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
#!/bin/sh
# simple test script
# yes, I know the color scheme is painful and wrong. :)


RC=0 

#timeout 7s sh -c "ping -i 5 localhost |./xrootconsole -bw 2 -bd '#000000' -fg 'darkgreen' -bg '#660099' --wrap -geometry +100+260 $@"
#LRC=$?; if [ "$LRC" -ne 124 ]; then RC="$LRC"; echo Test failed 1>&2; fi

# testing long lines, column wrapping

timeout 7s sh -c "{ while [ 1 ] ; do sleep 1; echo xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx; done; } |./xrootconsole -bw 2 -bd '#000000' -fg '#FF3333' -bg '#660099' --wrap -geometry +100+260 $@"
LRC=$?; if [ "$LRC" -ne 124 ]; then RC="$LRC"; echo Test failed 1>&2; fi

#extra newline bug test
timeout 7s sh -c "{ z=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx; while [ 1 ] ; do sleep 1; z=x$z; echo $z; done; } |./xrootconsole -bw 2 -bd '#000000' -fg '#FF3333' -bg '#660099' --wrap -geometry +100+260 $@"
LRC=$?; if [ "$LRC" -ne 124 ]; then RC="$LRC"; echo Test failed 1>&2; fi

#bottomup test
timeout 7s sh -c "{ z=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx; while [ 1 ] ; do sleep 1; z=x$z; echo $z; done; } |./xrootconsole --bottomup -bw 2 -bd '#000000' -fg '#FF3333' -bg '#660099' --wrap -geometry +100+260 $@"
LRC=$?; if [ "$LRC" -ne 124 ]; then RC="$LRC"; echo Test failed 1>&2; fi

#transparency test
timeout 7s sh -c "{ z=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx; while [ 1 ] ; do sleep 1; z=x$z; echo $z; done; } |./xrootconsole --bottomup -bw 2 -bd '#000000' -fg '#FF3333' --wrap -geometry +100+260 $@"
LRC=$?; if [ "$LRC" -ne 124 ]; then RC="$LRC"; echo Test failed 1>&2; fi

#ansi color test
timeout 7s sh -c "/bin/echo -ne '\e[mNormal \e[30mBlack \e[31mRed \e[32mGreen \e[33mBrown  \e[34mBlue \e[35mMagena \e[36mCyan \e[37mWhite \e[39mNormal\n\e[1mBold   \e[30mBlack \e[31mRed \e[32mGreen \e[33mYellow \e[34mBlue \e[35mMagena \e[36mCyan \e[37mWhite \e[39mNormal\n\e[mNormal \e[40mBlack \e[41mRed \e[42mGreen \e[43mBrown  \e[44mBlue \e[45mMagena \e[46mCyan \e[47mWhite \e[49mNormal\n\e[5mBlink  \e[40mBlack \e[41mRed \e[42mGreen \e[43mYellow \e[44mBlue \e[45mMagena \e[46mCyan \e[47mWhite \e[49mNormal\n\e[7mInvert' | ./xrootconsole --ansi-color -fg '#9966FF' -geometry +100+260 $@"
LRC=$?; if [ "$LRC" -ne 124 ]; then RC="$LRC"; echo Test failed 1>&2; fi

if [ "$RC" -eq 0 ]; then
    echo "All tests succeeded."
    exit 0
else
    echo "Some tests failed."
    exit "$RC"
fi