mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Merge pull request #1180 from dufferzafar/pathod-base
Python 3 - pathod.language.base
This commit is contained in:
commit
898602ad21
@ -3,6 +3,7 @@ from __future__ import absolute_import
|
|||||||
import itertools
|
import itertools
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
from six.moves import range
|
||||||
import pyparsing as pp
|
import pyparsing as pp
|
||||||
|
|
||||||
from . import http, http2, websockets, writer, exceptions
|
from . import http, http2, websockets, writer, exceptions
|
||||||
@ -19,7 +20,7 @@ __all__ = [
|
|||||||
def expand(msg):
|
def expand(msg):
|
||||||
times = getattr(msg, "times", None)
|
times = getattr(msg, "times", None)
|
||||||
if times:
|
if times:
|
||||||
for j_ in xrange(int(times.value)):
|
for j_ in range(int(times.value)):
|
||||||
yield msg.strike_token("times")
|
yield msg.strike_token("times")
|
||||||
else:
|
else:
|
||||||
yield msg
|
yield msg
|
||||||
|
@ -3,6 +3,7 @@ import os
|
|||||||
import abc
|
import abc
|
||||||
import pyparsing as pp
|
import pyparsing as pp
|
||||||
|
|
||||||
|
import six
|
||||||
from six.moves import reduce
|
from six.moves import reduce
|
||||||
from netlib.utils import escaped_str_to_bytes, bytes_to_escaped_str
|
from netlib.utils import escaped_str_to_bytes, bytes_to_escaped_str
|
||||||
from netlib import human
|
from netlib import human
|
||||||
@ -341,7 +342,7 @@ class OptionsOrValue(_Component):
|
|||||||
# it to be canonical. The user can specify a different case by using a
|
# it to be canonical. The user can specify a different case by using a
|
||||||
# string value literal.
|
# string value literal.
|
||||||
self.option_used = False
|
self.option_used = False
|
||||||
if isinstance(value, basestring):
|
if isinstance(value, six.string_types):
|
||||||
for i in self.options:
|
for i in self.options:
|
||||||
# Find the exact option value in a case-insensitive way
|
# Find the exact option value in a case-insensitive way
|
||||||
if i.lower() == value.lower():
|
if i.lower() == value.lower():
|
||||||
|
@ -41,11 +41,11 @@ class TestTokValueLiteral:
|
|||||||
def test_espr(self):
|
def test_espr(self):
|
||||||
v = base.TokValueLiteral("foo")
|
v = base.TokValueLiteral("foo")
|
||||||
assert v.expr()
|
assert v.expr()
|
||||||
assert v.val == "foo"
|
assert v.val == b"foo"
|
||||||
|
|
||||||
v = base.TokValueLiteral("foo\n")
|
v = base.TokValueLiteral("foo\n")
|
||||||
assert v.expr()
|
assert v.expr()
|
||||||
assert v.val == "foo\n"
|
assert v.val == b"foo\n"
|
||||||
assert repr(v)
|
assert repr(v)
|
||||||
|
|
||||||
def test_spec(self):
|
def test_spec(self):
|
||||||
@ -171,19 +171,19 @@ class TestMisc:
|
|||||||
def test_generators(self):
|
def test_generators(self):
|
||||||
v = base.TokValue.parseString("'val'")[0]
|
v = base.TokValue.parseString("'val'")[0]
|
||||||
g = v.get_generator({})
|
g = v.get_generator({})
|
||||||
assert g[:] == "val"
|
assert g[:] == b"val"
|
||||||
|
|
||||||
def test_value(self):
|
def test_value(self):
|
||||||
assert base.TokValue.parseString("'val'")[0].val == "val"
|
assert base.TokValue.parseString("'val'")[0].val == b"val"
|
||||||
assert base.TokValue.parseString('"val"')[0].val == "val"
|
assert base.TokValue.parseString('"val"')[0].val == b"val"
|
||||||
assert base.TokValue.parseString('"\'val\'"')[0].val == "'val'"
|
assert base.TokValue.parseString('"\'val\'"')[0].val == b"'val'"
|
||||||
|
|
||||||
def test_value2(self):
|
def test_value2(self):
|
||||||
class TT(base.Value):
|
class TT(base.Value):
|
||||||
preamble = "m"
|
preamble = "m"
|
||||||
e = TT.expr()
|
e = TT.expr()
|
||||||
v = e.parseString("m'msg'")[0]
|
v = e.parseString("m'msg'")[0]
|
||||||
assert v.value.val == "msg"
|
assert v.value.val == b"msg"
|
||||||
|
|
||||||
s = v.spec()
|
s = v.spec()
|
||||||
assert s == e.parseString(s)[0].spec()
|
assert s == e.parseString(s)[0].spec()
|
||||||
@ -235,8 +235,8 @@ class TestKeyValue:
|
|||||||
def test_simple(self):
|
def test_simple(self):
|
||||||
e = TKeyValue.expr()
|
e = TKeyValue.expr()
|
||||||
v = e.parseString("h'foo'='bar'")[0]
|
v = e.parseString("h'foo'='bar'")[0]
|
||||||
assert v.key.val == "foo"
|
assert v.key.val == b"foo"
|
||||||
assert v.value.val == "bar"
|
assert v.value.val == b"bar"
|
||||||
|
|
||||||
v2 = e.parseString(v.spec())[0]
|
v2 = e.parseString(v.spec())[0]
|
||||||
assert v2.key.val == v.key.val
|
assert v2.key.val == v.key.val
|
||||||
@ -289,9 +289,9 @@ def test_options_or_value():
|
|||||||
"three"
|
"three"
|
||||||
]
|
]
|
||||||
e = TT.expr()
|
e = TT.expr()
|
||||||
assert e.parseString("one")[0].value.val == "one"
|
assert e.parseString("one")[0].value.val == b"one"
|
||||||
assert e.parseString("'foo'")[0].value.val == "foo"
|
assert e.parseString("'foo'")[0].value.val == b"foo"
|
||||||
assert e.parseString("'get'")[0].value.val == "get"
|
assert e.parseString("'get'")[0].value.val == b"get"
|
||||||
|
|
||||||
assert e.parseString("one")[0].spec() == "one"
|
assert e.parseString("one")[0].spec() == "one"
|
||||||
assert e.parseString("'foo'")[0].spec() == "'foo'"
|
assert e.parseString("'foo'")[0].spec() == "'foo'"
|
||||||
|
Loading…
Reference in New Issue
Block a user