aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite_dfilter/group_stringz.py
blob: bfc337dceb9885ac2ce45bc17059a580c8c02ea4 (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
# Copyright (c) 2013 by Gilbert Ramirez <gram@alumni.rice.edu>
#
# SPDX-License-Identifier: GPL-2.0-or-later

import unittest
import fixtures
from suite_dfilter.dfiltertest import *


@fixtures.uses_fixtures
class case_stringz(unittest.TestCase):
    trace_file = "tftp.pcap"

    def test_stringz_1(self, checkDFilterCount):
        dfilter = 'tftp.type == octet'
        checkDFilterCount(dfilter, 1)

    def test_stringz_2(self, checkDFilterCount):
        dfilter = 'tftp.type == "octet"'
        checkDFilterCount(dfilter, 1)

    def test_stringz_3(self, checkDFilterCount):
        dfilter = 'tftp.type == junk'
        checkDFilterCount(dfilter, 0)