コード例 #1
0
ファイル: test_config.py プロジェクト: wuxi20/Pythonista
    def test_argvlist_positional_substitution(self, tmpdir, newconfig):
        config = newconfig("""
            [section]
            key2=
                cmd1 []
                cmd2 {posargs:{item2} \
                     other}
        """)
        reader = IniReader(config._cfg)
        posargs = ['hello', 'world']
        reader.addsubstitions(posargs, item2="value2")
        #py.test.raises(tox.exception.ConfigError,
        #    "reader.getargvlist('section', 'key1')")
        assert reader.getargvlist('section', 'key1') == []
        argvlist = reader.getargvlist("section", "key2")
        assert argvlist[0] == ["cmd1"] + posargs
        assert argvlist[1] == ["cmd2"] + posargs

        reader = IniReader(config._cfg)
        reader.addsubstitions([], item2="value2")
        #py.test.raises(tox.exception.ConfigError,
        #    "reader.getargvlist('section', 'key1')")
        assert reader.getargvlist('section', 'key1') == []
        argvlist = reader.getargvlist("section", "key2")
        assert argvlist[0] == ["cmd1"]
        assert argvlist[1] == ["cmd2", "value2", "other"]
コード例 #2
0
ファイル: test_config.py プロジェクト: pombredanne/tox
    def test_argvlist_positional_substitution(self, tmpdir, newconfig):
        config = newconfig("""
            [section]
            key2=
                cmd1 []
                cmd2 {posargs:{item2} \
                     other}
        """)
        reader = IniReader(config._cfg)
        posargs = ['hello', 'world']
        reader.addsubstitions(posargs, item2="value2")
        #py.test.raises(tox.exception.ConfigError,
        #    "reader.getargvlist('section', 'key1')")
        assert reader.getargvlist('section', 'key1') == []
        argvlist = reader.getargvlist("section", "key2")
        assert argvlist[0] == ["cmd1"] + posargs
        assert argvlist[1] == ["cmd2"] + posargs

        reader = IniReader(config._cfg)
        reader.addsubstitions([], item2="value2")
        #py.test.raises(tox.exception.ConfigError,
        #    "reader.getargvlist('section', 'key1')")
        assert reader.getargvlist('section', 'key1') == []
        argvlist = reader.getargvlist("section", "key2")
        assert argvlist[0] == ["cmd1"]
        assert argvlist[1] == ["cmd2", "value2", "other"]
コード例 #3
0
ファイル: test_config.py プロジェクト: wuxi20/Pythonista
 def test_argvlist_multiline(self, tmpdir, newconfig):
     config = newconfig("""
         [section]
         key2=
             cmd1 {item1} \ # a comment
                  {item2}
     """)
     reader = IniReader(config._cfg)
     reader.addsubstitions(item1="with space", item2="grr")
     #py.test.raises(tox.exception.ConfigError,
     #    "reader.getargvlist('section', 'key1')")
     assert reader.getargvlist('section', 'key1') == []
     x = reader.getargvlist("section", "key2")
     assert x == [["cmd1", "with space", "grr"]]
コード例 #4
0
ファイル: test_config.py プロジェクト: pombredanne/tox
 def test_argvlist_multiline(self, tmpdir, newconfig):
     config = newconfig("""
         [section]
         key2=
             cmd1 {item1} \ # a comment
                  {item2}
     """)
     reader = IniReader(config._cfg)
     reader.addsubstitions(item1="with space", item2="grr")
     #py.test.raises(tox.exception.ConfigError,
     #    "reader.getargvlist('section', 'key1')")
     assert reader.getargvlist('section', 'key1') == []
     x = reader.getargvlist("section", "key2")
     assert x == [["cmd1", "with space", "grr"]]
コード例 #5
0
ファイル: test_config.py プロジェクト: wuxi20/Pythonista
 def test_argvlist_quoting_in_command(self, tmpdir, newconfig):
     config = newconfig("""
         [section]
         key1=
             cmd1 'with space' \ # a comment
                  'after the comment'
     """)
     reader = IniReader(config._cfg)
     x = reader.getargvlist("section", "key1")
     assert x == [["cmd1", "with space", "after the comment"]]
コード例 #6
0
ファイル: test_config.py プロジェクト: pombredanne/tox
 def test_argvlist_quoting_in_command(self, tmpdir, newconfig):
     config = newconfig("""
         [section]
         key1=
             cmd1 'with space' \ # a comment
                  'after the comment'
     """)
     reader = IniReader(config._cfg)
     x = reader.getargvlist("section", "key1")
     assert x == [["cmd1", "with space", "after the comment"]]
コード例 #7
0
ファイル: test_config.py プロジェクト: pombredanne/tox
    def test_substition_with_multiple_words(self, newconfig):
        inisource = """
            [section]
            key = py.test -n5 --junitxml={envlogdir}/junit-{envname}.xml []
            """
        config = newconfig(inisource)
        reader = IniReader(config._cfg)
        posargs = ['hello', 'world']
        reader.addsubstitions(posargs, envlogdir='ENV_LOG_DIR', envname='ENV_NAME')

        expected = ['py.test', '-n5', '--junitxml=ENV_LOG_DIR/junit-ENV_NAME.xml', 'hello', 'world']
        assert reader.getargvlist('section', 'key')[0] == expected
コード例 #8
0
ファイル: test_config.py プロジェクト: wuxi20/Pythonista
    def test_substition_with_multiple_words(self, newconfig):
        inisource = """
            [section]
            key = py.test -n5 --junitxml={envlogdir}/junit-{envname}.xml []
            """
        config = newconfig(inisource)
        reader = IniReader(config._cfg)
        posargs = ['hello', 'world']
        reader.addsubstitions(posargs,
                              envlogdir='ENV_LOG_DIR',
                              envname='ENV_NAME')

        expected = [
            'py.test', '-n5', '--junitxml=ENV_LOG_DIR/junit-ENV_NAME.xml',
            'hello', 'world'
        ]
        assert reader.getargvlist('section', 'key')[0] == expected
コード例 #9
0
ファイル: test_config.py プロジェクト: pombredanne/tox
    def test_positional_arguments_are_only_replaced_when_standing_alone(self, tmpdir, newconfig):
        config = newconfig("""
            [section]
            key=
                cmd0 []
                cmd1 -m '[abc]'
                cmd2 -m '\'something\'' []
                cmd3 something[]else
        """)
        reader = IniReader(config._cfg)
        posargs = ['hello', 'world']
        reader.addsubstitions(posargs)

        argvlist = reader.getargvlist('section', 'key')
        assert argvlist[0] == ['cmd0'] + posargs
        assert argvlist[1] == ['cmd1', '-m', '[abc]']
        assert argvlist[2] == ['cmd2', '-m', "something"] + posargs
        assert argvlist[3] == ['cmd3', 'something[]else']
コード例 #10
0
ファイル: test_config.py プロジェクト: wuxi20/Pythonista
    def test_positional_arguments_are_only_replaced_when_standing_alone(
            self, tmpdir, newconfig):
        config = newconfig("""
            [section]
            key=
                cmd0 []
                cmd1 -m '[abc]'
                cmd2 -m '\'something\'' []
                cmd3 something[]else
        """)
        reader = IniReader(config._cfg)
        posargs = ['hello', 'world']
        reader.addsubstitions(posargs)

        argvlist = reader.getargvlist('section', 'key')
        assert argvlist[0] == ['cmd0'] + posargs
        assert argvlist[1] == ['cmd1', '-m', '[abc]']
        assert argvlist[2] == ['cmd2', '-m', "something"] + posargs
        assert argvlist[3] == ['cmd3', 'something[]else']