This file is indexed.

/usr/share/php/tests/Horde_Argv/Horde/Argv/OptionChecksTest.php is in php-horde-argv 2.0.7-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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php

require_once __DIR__ . '/TestCase.php';

/**
 * @author     Chuck Hagenbuch <chuck@horde.org>
 * @author     Mike Naberezny <mike@maintainable.com>
 * @license    http://www.horde.org/licenses/bsd BSD
 * @category   Horde
 * @package    Argv
 * @subpackage UnitTests
 */

class Horde_Argv_OptionChecksTest extends Horde_Argv_TestCase
{
    public function setUp()
    {
        parent::setUp();
        $this->parser = new Horde_Argv_Parser(array('usage' => Horde_Argv_Option::SUPPRESS_USAGE));
    }

    public function assertOptionError($expected_message, $args)
    {
        $this->assertRaises(array($this, 'makeOption'), $args, 'Horde_Argv_OptionException', $expected_message);
    }

    public function testOptStringEmpty()
    {
        try {
            new Horde_Argv_Option();
        } catch (Exception $e) {
            $this->assertInstanceOf('InvalidArgumentException', $e);
            $this->assertEquals("at least one option string must be supplied", $e->getMessage());
            return true;
        }

        $this->fail("InvalidArgumentException for no option strings not thrown");
    }

    public function testOptStringTooShort()
    {
        $this->assertOptionError(
            "invalid option string 'b': must be at least two characters long",
            array("b"));
    }

    public function testOptStringShortInvalid()
    {
        $this->assertOptionError(
            "invalid short option string '--': must be " .
            "of the form -x, (x any non-dash char)",
            array("--"));
    }

    public function testOptStringLongInvalid()
    {
        $this->assertOptionError(
            "invalid long option string '---': " .
            "must start with --, followed by non-dash",
            array("---"));
    }

    public function testAttrInvalid()
    {
        $this->assertOptionError(
            "option -b: invalid keyword arguments: bar, foo",
            array("-b", array('foo' => null, 'bar' => null)));
    }

    public function testActionInvalid()
    {
        $this->assertOptionError(
            "option -b: invalid action: 'foo'",
            array("-b", array('action' => 'foo')));
    }

    public function testTypeInvalid()
    {
        $this->assertOptionError(
            "option -b: invalid option type: 'foo'",
            array("-b", array('type' => 'foo')));
    }

    public function testNoTypeForAction()
    {
        $this->assertOptionError(
            "option -b: must not supply a type for action 'count'",
            array("-b", array('action' => 'count', 'type' => 'int')));
    }

    public function testNoChoicesList()
    {
        $this->assertOptionError(
            "option -b/--bad: must supply a list of " .
            "choices for type 'choice'",
            array("-b", "--bad", array('type' => "choice")));
    }

    public function testBadChoicesList()
    {
        $typename = gettype('');
        $this->assertOptionError(
            sprintf("option -b/--bad: choices must be a list of " .
                    "strings ('%s' supplied)", $typename),
            array("-b", "--bad", array('type' => 'choice', 'choices' => 'bad choices')));
    }

    public function testNoChoicesForType()
    {
        $this->assertOptionError(
            "option -b: must not supply choices for type 'int'",
            array("-b", array('type' => 'int', 'choices' => "bad")));
    }

    public function testNoConstForAction()
    {
        $this->assertOptionError(
            "option -b: 'const' must not be supplied for action 'store'",
            array("-b", array('action' => 'store', 'const' => 1)));
    }

    public function testNoNargsForAction()
    {
        $this->assertOptionError(
            "option -b: 'nargs' must not be supplied for action 'count'",
            array("-b", array('action' => 'count', 'nargs' => 2)));
    }

    public function testCallbackNotCallable()
    {
        $this->assertOptionError(
            "option -b: callback not callable: 'foo'",
            array("-b", array('action' => 'callback', 'callback' => 'foo')));
    }

    public function dummy()
    {
    }

    public function testCallbackArgsNoArray()
    {
        $this->assertOptionError(
            "option -b: callbackArgs, if supplied, " .
            "must be an array: not 'foo'",
            array("-b", array('action' => 'callback',
                              'callback' => array($this, 'dummy'),
                              'callbackArgs' => 'foo')));
    }

    public function testNoCallbackForAction()
    {
        $this->assertOptionError(
            "option -b: callback supplied ('foo') for non-callback option",
            array("-b", array('action' => 'store',
                              'callback' => 'foo')));
    }

    public function testNoCallbackArgsForAction()
    {
        $this->assertOptionError(
            "option -b: callbackArgs supplied for non-callback option",
            array("-b", array('action' => 'store',
                              'callbackArgs' => 'foo')));
    }

}