blob: e82ca8818b1c4225ca0de51014d5120c134c7558 [file] [log] [blame]
Divya Kothari01e6a732014-09-03 13:38:18 -05001#!/bin/bash
2
3# Copyright 2014 Divya Kothari <divya.s.kothari@gmail.com>
4# Copyright 2014 Naha Maggu <maggu.neha@gmail.com>
5
6[ -f testing.sh ] && . testing.sh
7
8#testing "name" "command" "result" "infile" "stdin"
9echo "hello" > file
10tar -cJf file.xz file
11# Get system xzcat
12xzcatExe=`which xzcat`
13$xzcatExe file.xz > xzcatOut
14testing "xzcat - decompresses a single file" "xzcat file.xz > Tempfile && echo "yes"; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile" "yes\nyes\n" "" ""
15
16#testing "name" "command" "result" "infile" "stdin"
17echo "hello" > file1
18echo "hi" > file2
19echo "Hi, Good morning !! I am a xzcat tester" > file3
20tar -cJf file1.xz file1
21tar -cJf file2.xz file2
22tar -cJf file3.xz file3
23# Get system xzcat
24xzcatExe=`which xzcat`
25$xzcatExe file1.xz file2.xz file3.xz > xzcatOut
26testing "xzcat - decompresses multiple files" "xzcat file1.xz file2.xz file3.xz > Tempfile && echo "yes" ; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile " "yes\nyes\n" "" ""