toybox/tests/cut.test
<<
>>
Prefs
   1#!/bin/bash
   2
   3# Copyright 2013 Robin Mittal <robinmittal.it@gmail.com>
   4# Copyright 2013 Divya Kothari <divya.s.kothari@gmail.com>
   5# Copyright 2013  Kyungwan.Han <asura321@gmail.com>
   6
   7[ -f testing.sh ] && . testing.sh
   8
   9#testing "name" "command" "result" "infile" "stdin"
  10
  11# Creating test file for testing cut
  12echo "one:two:three:four:five:six:seven
  13alpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu
  14the quick brown fox jumps over the lazy dog" >abc.txt
  15
  16testcmd "-b a,a,a" "-b 3,3,3 abc.txt" "e\np\ne\n" "" ""
  17testcmd "-b overlaps" "-b 1-3,2-5,7-9,9-10 abc.txt" \
  18  "one:to:th\nalphabeta\nthe qick \n" "" ""
  19testcmd "-b encapsulated" "-b 3-8,4-6 abc.txt" "e:two:\npha:be\ne quic\n" \
  20  "" ""
  21testcmd "-bO overlaps" "-O ' ' -b 1-3,2-5,7-9,9-10 abc.txt" \
  22  "one:t o:th\nalpha beta\nthe q ick \n" "" ""
  23testcmd "high-low error" "-b 8-3 abc.txt 2>/dev/null || echo err" "err\n" \
  24  "" ""
  25
  26testcmd "-c a-b" "-c 4-10 abc.txt" ":two:th\nha:beta\n quick \n" "" ""
  27testcmd "-c a-" "-c 41- abc.txt" "\ntheta:iota:kappa:lambda:mu\ndog\n" "" ""
  28testcmd "-c -b" "-c -39 abc.txt" \
  29  "one:two:three:four:five:six:seven\nalpha:beta:gamma:delta:epsilon:zeta:eta\nthe quick brown fox jumps over the lazy\n" \
  30  "" ""
  31testcmd "-c a" "-c 40 abc.txt" "\n:\n \n" "" ""
  32testcmd "-c a,b-c,d" "-c 3,5-7,10 abc.txt" "etwoh\npa:ba\nequi \n" "" ""
  33toyonly testcmd "-c japan.txt" '-c 3-6,9-12 "$FILES/utf8/japan.txt"' \
  34  "ガラスをられます\n" "" ""
  35
  36toyonly testcmd "-C test1.txt" '-C -1 "$FILES/utf8/test1.txt"' "l̴̗̞̠\n" "" ""
  37
  38# substitute for awk
  39testcmd "-DF" "-DF 2,7,5" \
  40  "said and your\nare\nis demand. supply\nforecast :\nyou you better,\n\nEm: Took hate\n" "" \
  41"Bother, said Pooh. It's your husband, and he has a gun.
  42Cheerios are donut seeds.
  43Talk is cheap because supply exceeds demand.
  44Weather forecast for tonight : dark.
  45Apple: you can buy better, but you can't pay more.
  46Subcalifragilisticexpialidocious.
  47Auntie Em: Hate you, hate Kansas. Took the dog. Dorothy."
  48testcmd "-DF 2" "-DF 7,1,3-6,2-5" \
  49  "seven one three four five six two three four five\n" "" \
  50  "one two three four five six seven eight nine\n"
  51
  52testcmd "empty field" "-d ':' -f 1-3" "a::b\n" "" "a::b\n"
  53testcmd "empty field 2" "-d ':' -f 3-5" "b::c\n" "" "a::b::c:d\n"
  54
  55testcmd "-f a-" "-d ':' -f 5- abc.txt" "five:six:seven\nepsilon:zeta:eta:theta:iota:kappa:lambda:mu\nthe quick brown fox jumps over the lazy dog\n" "" ""
  56
  57testcmd "show whole line with no delim" "-d ' ' -f 3 abc.txt" \
  58        "one:two:three:four:five:six:seven\nalpha:beta:gamma:delta:epsilon:zeta:eta:theta:iota:kappa:lambda:mu\nbrown\n" "" ""
  59
  60testcmd "-c (a-b)" "-c 1-15 " "ref_categorie=t\n" "" "ref_categorie=test\n"
  61testcmd "-c (a)" "-c 14" "=\n" "" "ref_categorie=test\n"
  62
  63# Modifying abc.txt data as per new testcase
  64echo "abcdefghijklmnopqrstuvwxyz" >abc.txt
  65
  66testcmd "-c (a,b,c)" "-c 4,5,20 abc.txt" "det\n" "" ""
  67testcmd "-b (a,b,c)" "-b 4,5,20 abc.txt" "det\n" "" ""
  68
  69# Modifying abc.txt data as per testcase
  70echo "406378:Sales:Itorre:Jan
  71031762:Marketing:Nasium:Jim
  72636496:Research:Ancholie:Mel
  73396082:Sales:Jucacion:Ed" >abc.txt
  74
  75testcmd "-d -f(:) -s" "-d: -f3 -s abc.txt" "Itorre\nNasium\nAncholie\nJucacion\n" "" ""
  76testcmd "-d -f( ) -s" "-d' ' -f3 -s abc.txt && echo yes" "yes\n" "" ""
  77testcmd "-d -f(a) -s" "-da -f3 -s abc.txt" "n\nsium:Jim\n\ncion:Ed\n" "" ""
  78testcmd "-d -f(a) -s -n" "-da -f3 -s -n abc.txt" "n\nsium:Jim\n\ncion:Ed\n" "" ""
  79
  80# Feature posix documents but nobody bothers to implement
  81toyonly testcmd "-nb" '-nb 8-17 "$FILES/utf8/japan.txt"' "ガラス\n" "" ""
  82
  83# Feature that is, as far as I can tell, totally undocumented?
  84testcmd "-d newline" "-d \$'\n' -f 2-3,5" "two\nthree\nfive\n" "" \
  85  'one\ntwo\nthree\nfour\nfive\nsix\seven\n'
  86
  87# Removing abc.txt file for cleanup purpose
  88rm abc.txt
  89