test: print command output for dfiltertest failures
[metze/wireshark/wip.git] / test / suite_io.py
1 #
2 # -*- coding: utf-8 -*-
3 # Wireshark tests
4 # By Gerald Combs <gerald@wireshark.org>
5 #
6 # Ported from a set of Bash scripts which were copyright 2005 Ulf Lamping
7 #
8 # SPDX-License-Identifier: GPL-2.0-or-later
9 #
10 '''File I/O tests'''
11
12 import io
13 import os.path
14 import subprocesstest
15 import sys
16 import unittest
17 import fixtures
18
19 testout_pcap = 'testout.pcap'
20 baseline_file = 'io-rawshark-dhcp-pcap.txt'
21
22
23 @fixtures.fixture(scope='session')
24 def io_baseline_str(dirs):
25     with open(os.path.join(dirs.baseline_dir, baseline_file), 'r') as f:
26         return f.read()
27
28
29 def check_io_4_packets(self, capture_file, cmd=None, from_stdin=False, to_stdout=False):
30     # Test direct->direct, stdin->direct, and direct->stdout file I/O.
31     # Similar to suite_capture.check_capture_10_packets and
32     # suite_capture.check_capture_stdin.
33     self.assertIsNotNone(cmd)
34     testout_file = self.filename_from_id(testout_pcap)
35     if from_stdin and to_stdout:
36         # XXX If we support this, should we bother with separate stdin->direct
37         # and direct->stdout tests?
38         self.fail('Stdin and stdout not supported in the same test.')
39     elif from_stdin:
40         # cat -B "${CAPTURE_DIR}dhcp.pcap" | $DUT -r - -w ./testout.pcap 2>./testout.txt
41         cat_dhcp_cmd = subprocesstest.cat_dhcp_command('cat')
42         stdin_cmd = '{0} | "{1}" -r - -w "{2}"'.format(cat_dhcp_cmd, cmd, testout_file)
43         io_proc = self.assertRun(stdin_cmd, shell=True)
44     elif to_stdout:
45         # $DUT -r "${CAPTURE_DIR}dhcp.pcap" -w - > ./testout.pcap 2>./testout.txt
46         stdout_cmd = '"{0}" -r "{1}" -w - > "{2}"'.format(cmd, capture_file('dhcp.pcap'), testout_file)
47         io_proc = self.assertRun(stdout_cmd, shell=True)
48     else: # direct->direct
49         # $DUT -r "${CAPTURE_DIR}dhcp.pcap" -w ./testout.pcap > ./testout.txt 2>&1
50         io_proc = self.assertRun((cmd,
51             '-r', capture_file('dhcp.pcap'),
52             '-w', testout_file,
53         ))
54     self.assertTrue(os.path.isfile(testout_file))
55     self.checkPacketCount(4)
56
57
58 @fixtures.mark_usefixtures('test_env')
59 @fixtures.uses_fixtures
60 class case_tshark_io(subprocesstest.SubprocessTestCase):
61     def test_tshark_io_stdin_direct(self, cmd_tshark, capture_file):
62         '''Read from stdin and write direct using TShark'''
63         check_io_4_packets(self, capture_file, cmd=cmd_tshark, from_stdin=True)
64
65     def test_tshark_io_direct_stdout(self, cmd_tshark, capture_file):
66         '''Read direct and write to stdout using TShark'''
67         check_io_4_packets(self, capture_file, cmd=cmd_tshark, to_stdout=True)
68
69     def test_tshark_io_direct_direct(self, cmd_tshark, capture_file):
70         '''Read direct and write direct using TShark'''
71         check_io_4_packets(self, capture_file, cmd=cmd_tshark)
72
73
74 @fixtures.mark_usefixtures('test_env')
75 @fixtures.uses_fixtures
76 class case_rawshark_io(subprocesstest.SubprocessTestCase):
77     @unittest.skipUnless(sys.byteorder == 'little', 'Requires a little endian system')
78     def test_rawshark_io_stdin(self, cmd_rawshark, capture_file, io_baseline_str):
79         '''Read from stdin using Rawshark'''
80         # tail -c +25 "${CAPTURE_DIR}dhcp.pcap" | $RAWSHARK -dencap:1 -R "udp.port==68" -nr - > $IO_RAWSHARK_DHCP_PCAP_TESTOUT 2> /dev/null
81         # diff -u --strip-trailing-cr $IO_RAWSHARK_DHCP_PCAP_BASELINE $IO_RAWSHARK_DHCP_PCAP_TESTOUT > $DIFF_OUT 2>&1
82         capture_file = capture_file('dhcp.pcap')
83         testout_file = self.filename_from_id(testout_pcap)
84         raw_dhcp_cmd = subprocesstest.cat_dhcp_command('raw')
85         rawshark_cmd = '{0} | "{1}" -r - -n -dencap:1 -R "udp.port==68"'.format(raw_dhcp_cmd, cmd_rawshark)
86         rawshark_proc = self.assertRun(rawshark_cmd, shell=True)
87         self.assertTrue(self.diffOutput(rawshark_proc.stdout_str, io_baseline_str, 'rawshark', baseline_file))