This file is indexed.

/usr/lib/python3/dist-packages/plainbox/impl/commands/test_parse.py is in python3-plainbox 0.5.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# This file is part of Checkbox.
#
# Copyright 2013 Canonical Ltd.
# Written by:
#   Zygmunt Krynicki <zygmunt.krynicki@canonical.com>
#
# Checkbox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3,
# as published by the Free Software Foundation.

#
# Checkbox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.

"""
plainbox.impl.commands.test_parse
=================================

Test definitions for plainbox.impl.commands.parse module
"""

import argparse
from inspect import cleandoc
from unittest import TestCase

from plainbox.impl.commands.parse import ParseCommand
from plainbox.impl.parsers import ParserPlugIn
from plainbox.impl.parsers import all_parsers
from plainbox.testing_utils.io import TestIO
from plainbox.vendor import mock


class TestParseCommand(TestCase):

    def setUp(self):
        self.ns = mock.Mock()

    def test_init(self):
        ParseCommand()

    _help = """
usage: test parse [-h] PARSER-NAME

This command can be used to invoke any of the parsers exposed to the
`plainbox.parsers` entry point, parse standard input and produce a JSON dump
of the resulting data structure on stdout. Keep in mind that most parsers were
designed with the 'C' locale in mind. You may have to override the environment
variable LANG to "C".

positional arguments:
  PARSER-NAME  Name of the parser to use

optional arguments:
  -h, --help   show this help message and exit

Example: LANG=C pactl list | plainbox dev parse pactl-list
"""

    maxDiff = None

    def test_register_parser(self):
        # Create an argument parser
        parser = argparse.ArgumentParser(prog='test')
        # Add subparsers to it
        subparsers = parser.add_subparsers()
        # Register the ParseCommand into subparsers
        ParseCommand().register_parser(subparsers)
        # With IO capture helper
        with TestIO() as io:
            # Print the help message
            parser.print_help()
        # Ensure that a short help message was included
        self.assertIn("parse stdin with the specified parser", io.stdout)
        # With another IO capture helper
        with TestIO() as io:
            # With a trap for SystemExit exception
            with self.assertRaises(SystemExit):
                # Run the 'parse --help' command
                parser.parse_args(['parse', '--help'])
        # Ensure that a detailed help message was printed
        self.assertEqual(io.stdout, cleandoc(self._help) + '\n')

    @mock.patch("plainbox.impl.commands.parse.ParseInvocation")
    def test_invoked(self, patched_ParseInvocation):
        # Make a fake ParserPlugIn
        mock_parser = mock.Mock(spec=ParserPlugIn)
        # Give it a plugin_name and summary
        mock_parser.plugin_name = "foo"
        mock_parser.summary = "summary of foo"
        # With temporary override to use the fake parser
        with all_parsers.fake_plugins([mock_parser]):
            # Set the name of the expected parser to 'foo'
            self.ns.parser_name = 'foo'
            # And invoke the ParseCommand
            retval = ParseCommand().invoked(self.ns)
        # Ensure that ParseInvocation was called with the fake parser
        patched_ParseInvocation.assert_called_once_with(mock_parser)
        # Ensure that ParsesCommand.invoked() returned whatever
        # was returned by ParseInvocation.run()
        self.assertEqual(
            retval,
            patched_ParseInvocation(self.ns.parser_name).run.return_value)

    def test_invoked_question_mark(self):
        # Make a fake ParserPlugIn
        mock_parser = mock.Mock(spec=ParserPlugIn)
        # Give it a plugin_name, name and summary
        mock_parser.plugin_name = "foo"
        mock_parser.name = "foo"
        mock_parser.summary = "summary of foo"
        # With temporary override to use the fake parser
        with all_parsers.fake_plugins([mock_parser]):
            # Set the name of the expected parser to '?'
            self.ns.parser_name = '?'
            # With IO capture helper
            with TestIO() as io:
                # And invoke the ParseCommand
                retval = ParseCommand().invoked(self.ns)
        # Ensure that a list of parsers was printed
        self.assertEqual(
            io.stdout, cleandoc(
                """
                The following parsers are available:
                  foo: summary of foo
                """) + '\n')
        # Ensure that the return code was 0
        self.assertEqual(retval, 0)