Esempio n. 1
0
def test_custom_handler():
    p = Parser.parse(['SERVER test 12345'])
    s = p.servers.values()[0]
    assert s.handler is None

    p = Parser.parse(['SERVER test 12345 handler=foo'])
    s = p.servers.values()[0]
    assert s.handler == 'foo'
Esempio n. 2
0
def test_custom_handler():
    p = Parser.parse(['SERVER test 12345'])
    s = p.servers.values()[0]
    assert s.handler is None

    p = Parser.parse(['SERVER test 12345 handler=foo'])
    s = p.servers.values()[0]
    assert s.handler == 'foo'
Esempio n. 3
0
def test_header():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER the-header default=whatever',
    ])
    assert p
    c = p.connections['foo']
    h = c.headers['the-header']
    assert h
    assert h.key == 'the-header'
    assert h.default == 'whatever'
    assert h.config is None

    try:
        p.config.connection.foo.header
        assert False
    except AttributeError:
        pass

    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER the-header config=yeah',
    ])
    assert p
    c = p.connections['foo']
    h = c.headers['the-header']
    assert h
    assert h.key == 'the-header'
    assert h.default is None
    assert h.config == 'yeah'

    config = p.config.connection.foo.header
    assert config.yeah is None

    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER the-header default=akk config=yeah',
    ])
    assert p
    c = p.connections['foo']
    h = c.headers['the-header']
    assert h
    assert h.key == 'the-header'
    assert h.default == 'akk'
    assert h.config == 'yeah'

    config = p.config.connection.foo.header
    assert config.yeah == 'akk'

    try:
        p = Parser.parse([
            'CONNECTION foo http://foo.com:10101',
            'HEADER the-header',
        ])
        assert False
    except Exception as e:
        assert str(e).startswith(
            'header must have a default, config or code setting')
Esempio n. 4
0
def test_header():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER the-header default=whatever',
    ])
    assert p
    c = p.connections['foo']
    h = c.headers['the-header']
    assert h
    assert h.key == 'the-header'
    assert h.default == 'whatever'
    assert h.config is None

    try:
        p.config.connection.foo.header
        assert False
    except AttributeError:
        pass

    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER the-header config=yeah',
    ])
    assert p
    c = p.connections['foo']
    h = c.headers['the-header']
    assert h
    assert h.key == 'the-header'
    assert h.default is None
    assert h.config == 'yeah'

    config = p.config.connection.foo.header
    assert config.yeah is None

    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER the-header default=akk config=yeah',
    ])
    assert p
    c = p.connections['foo']
    h = c.headers['the-header']
    assert h
    assert h.key == 'the-header'
    assert h.default == 'akk'
    assert h.config == 'yeah'

    config = p.config.connection.foo.header
    assert config.yeah == 'akk'

    try:
        p = Parser.parse([
            'CONNECTION foo http://foo.com:10101',
            'HEADER the-header',
        ])
        assert False
    except Exception as e:
        assert str(e).startswith('header must have a default, config or code setting')
Esempio n. 5
0
def test_connection_config():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
    ])
    config = p.config.connection.foo
    assert config.url == 'http://foo.com:10101'

    os.environ['CONNECTION_FOO_URL'] = 'akk'
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
    ])
    config = p.config.connection.foo
    assert config.url == 'akk'
Esempio n. 6
0
def test_old_custom_handler():
    p = Parser.parse(
        ['CONFIG_SERVER test 12345', 'SERVER test'],
    )
    s = p.servers.values()[0]
    assert s.port == 12345
    assert s.handler is None

    p = Parser.parse(
        ['CONFIG_SERVER test 12345 handler=foo', 'SERVER test'],
    )
    s = p.servers.values()[0]
    assert s.handler == 'foo'
    assert s.port == 12345
Esempio n. 7
0
def test_connection_header_config():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER test default=yeah config=geez',
    ])
    config = p.config.connection.foo
    assert config.header.geez == 'yeah'

    os.environ['CONNECTION_FOO_HEADER_GEEZ'] = 'akk'
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'HEADER test default=yeah config=geez',
    ])
    config = p.config.connection.foo
    assert config.header.geez == 'akk'
Esempio n. 8
0
def test_config_validate():
    p = Parser.parse(
        ['CONFIG foo validate=tests.test_micro_parser.my_validate'])
    assert p
    assert p.config.foo is None
    p.config._set('foo', 'a')
    assert p.config.foo == 'aa'
Esempio n. 9
0
def test_config_validate():
    p = Parser.parse([
        'CONFIG foo validate=tests.test_micro_parser.my_validate'
    ])
    assert p
    assert p.config.foo is None
    p.config._set('foo', 'a')
    assert p.config.foo == 'aa'
Esempio n. 10
0
def test_route():
    p = Parser.parse([
        'SERVER test 12345',
        'ROUTE /foo/bar$',
    ])
    s = p.servers['test']
    assert len(s.routes) == 1
    r = s.routes[0]
    assert r.pattern == '/foo/bar$'
Esempio n. 11
0
def test_route():
    p = Parser.parse([
        'SERVER test 12345',
        'ROUTE /foo/bar$',
    ])
    s = p.servers['test']
    assert len(s.routes) == 1
    r = s.routes[0]
    assert r.pattern == '/foo/bar$'
Esempio n. 12
0
def test_server():
    p = Parser.parse(['SERVER test 12345'])
    assert p
    assert len(p.servers) == 1
    assert p.servers['test'].port == 12345

    config = p.config.server.test
    assert config.port == 12345
    assert config.is_active is True
    assert config.ssl.is_active is False
    assert config.ssl.keyfile is None
    assert config.ssl.certfile is None
Esempio n. 13
0
def test_server():
    p = Parser.parse(['SERVER test 12345'])
    assert p
    assert len(p.servers) == 1
    assert p.servers['test'].port == 12345

    config = p.config.server.test
    assert config.port == 12345
    assert config.is_active is True
    assert config.ssl.is_active is False
    assert config.ssl.keyfile is None
    assert config.ssl.certfile is None
Esempio n. 14
0
def test_connection():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
    ])
    assert p
    c = p.connections['foo']
    assert c
    assert c.url == 'http://foo.com:10101'
    assert c.is_json is True
    assert c.is_debug is False
    assert c.timeout == 5.0
    assert c.handler is None
    assert c.wrapper is None

    config = p.config.connection.foo
    assert config.url == 'http://foo.com:10101'
    assert config.is_active is True
    assert config.is_debug is False
    assert config.timeout == 5.0

    p = Parser.parse([
        'CONNECTION bar http://bar.com:11101 is_json=false is_debug=true timeout=10.5 handler=the.handler wrapper=the.wrapper',
    ])
    assert p
    c = p.connections['bar']
    assert c
    assert c.url == 'http://bar.com:11101'
    assert c.is_json is False
    assert c.is_debug is True
    assert c.timeout == 10.5
    assert c.handler == 'the.handler'
    assert c.wrapper == 'the.wrapper'

    config = p.config.connection.bar
    assert config.url == 'http://bar.com:11101'
    assert config.is_active is True
    assert config.is_debug is True
    assert config.timeout == 10.5
Esempio n. 15
0
def test_connection():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
    ])
    assert p
    c = p.connections['foo']
    assert c
    assert c.url == 'http://foo.com:10101'
    assert c.is_json is True
    assert c.is_debug is False
    assert c.timeout == 5.0
    assert c.handler is None
    assert c.wrapper is None

    config = p.config.connection.foo
    assert config.url == 'http://foo.com:10101'
    assert config.is_active is True
    assert config.is_debug is False
    assert config.timeout == 5.0

    p = Parser.parse([
        'CONNECTION bar http://bar.com:11101 is_json=false is_debug=true timeout=10.5 handler=the.handler wrapper=the.wrapper',
    ])
    assert p
    c = p.connections['bar']
    assert c
    assert c.url == 'http://bar.com:11101'
    assert c.is_json is False
    assert c.is_debug is True
    assert c.timeout == 10.5
    assert c.handler == 'the.handler'
    assert c.wrapper == 'the.wrapper'

    config = p.config.connection.bar
    assert config.url == 'http://bar.com:11101'
    assert config.is_active is True
    assert config.is_debug is True
    assert config.timeout == 10.5
Esempio n. 16
0
def test_resource():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE bar /the/bar'
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['bar']
    assert r
    assert r.path == '/the/bar'
    assert r.method == 'GET'
    assert r.is_json is None
    assert r.is_debug is None
    assert r.timeout is None
    assert r.handler is None
    assert r.wrapper is None

    config = p.config.connection.foo.resource.bar
    assert config.is_debug is None

    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE akk /the/eek method=POST is_json=True is_debug=True timeout=6.3 handler=a.handler wrapper=a.wrapper',
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['akk']
    assert r
    assert r.path == '/the/eek'
    assert r.method == 'POST'
    assert r.is_json is True
    assert r.is_debug is True
    assert r.timeout == 6.3
    assert r.handler == 'a.handler'
    assert r.wrapper == 'a.wrapper'

    config = p.config.connection.foo.resource.akk
    assert config.is_debug is True
Esempio n. 17
0
def test_crud():
    p = Parser.parse([
        'SERVER test 12345',
        'ROUTE /foo/bar$',
        'GET a',
        'PUT a.b',
        'POST a.b.c',
        'DELETE a.b.c.d',
    ])
    s = p.servers['test']
    r = s.routes[0]
    assert r.methods['get'] == 'a'
    assert r.methods['put'] == 'a.b'
    assert r.methods['post'] == 'a.b.c'
    assert r.methods['delete'] == 'a.b.c.d'
Esempio n. 18
0
def test_required():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE bar /the/bar',
        'REQUIRED one',
        'REQUIRED two',
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['bar']
    q = r.required
    assert q
    assert len(q) == 2
    assert q[0] == 'one'
    assert q[1] == 'two'
Esempio n. 19
0
def test_resource():
    p = Parser.parse(
        ['CONNECTION foo http://foo.com:10101', 'RESOURCE bar /the/bar'])
    assert p
    c = p.connections['foo']
    r = c.resources['bar']
    assert r
    assert r.path == '/the/bar'
    assert r.method == 'GET'
    assert r.is_json is None
    assert r.is_debug is None
    assert r.timeout is None
    assert r.handler is None
    assert r.wrapper is None

    config = p.config.connection.foo.resource.bar
    assert config.is_debug is None

    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE akk /the/eek method=POST is_json=True is_debug=True timeout=6.3 handler=a.handler wrapper=a.wrapper',
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['akk']
    assert r
    assert r.path == '/the/eek'
    assert r.method == 'POST'
    assert r.is_json is True
    assert r.is_debug is True
    assert r.timeout == 6.3
    assert r.handler == 'a.handler'
    assert r.wrapper == 'a.wrapper'

    config = p.config.connection.foo.resource.akk
    assert config.is_debug is True
Esempio n. 20
0
def test_required():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE bar /the/bar',
        'REQUIRED one',
        'REQUIRED two',
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['bar']
    q = r.required
    assert q
    assert len(q) == 2
    assert q[0] == 'one'
    assert q[1] == 'two'
Esempio n. 21
0
def test_crud():
    p = Parser.parse([
        'SERVER test 12345',
        'ROUTE /foo/bar$',
        'GET a',
        'PUT a.b',
        'POST a.b.c',
        'DELETE a.b.c.d',
    ])
    s = p.servers['test']
    r = s.routes[0]
    assert r.methods['get'] == 'a'
    assert r.methods['put'] == 'a.b'
    assert r.methods['post'] == 'a.b.c'
    assert r.methods['delete'] == 'a.b.c.d'
Esempio n. 22
0
def test_optional():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE bar /the/bar',
        'OPTIONAL one default=whatever',
        'OPTIONAL two config=yeah',
        'OPTIONAL three default=foo config=bar',
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['bar']
    o = r.optional
    assert o
    oo = o['one']
    assert oo.default == 'whatever'
    oo = o['two']
    assert oo.default is None
    oo = o['three']
    assert oo.default == 'foo'
    assert oo.config == 'bar'

    config = p.config.connection.foo.resource.bar
    assert config.yeah is None
    assert config.bar == 'foo'
Esempio n. 23
0
def test_optional():
    p = Parser.parse([
        'CONNECTION foo http://foo.com:10101',
        'RESOURCE bar /the/bar',
        'OPTIONAL one default=whatever',
        'OPTIONAL two config=yeah',
        'OPTIONAL three default=foo config=bar',
    ])
    assert p
    c = p.connections['foo']
    r = c.resources['bar']
    o = r.optional
    assert o
    oo = o['one']
    assert oo.default == 'whatever'
    oo = o['two']
    assert oo.default is None
    oo = o['three']
    assert oo.default == 'foo'
    assert oo.config == 'bar'

    config = p.config.connection.foo.resource.bar
    assert config.yeah is None
    assert config.bar == 'foo'
Esempio n. 24
0
def load_config(config='config', micro='micro'):
    p = parser.parse(micro)
    p.config._load(file_util.normalize_path(config))
    sys.modules[__name__].config = p.config
    return p.config
Esempio n. 25
0
def _load(path):
    path = file_util.normalize_path(path, filetype='micro')
    p = parser.parse(path)
    return p
Esempio n. 26
0
def launch(micro):
    p = parser.parse(micro)
    sys.modules[__name__].config = p.config
    setup_servers(p.config, p.servers)
    setup_connections(p.config, p.connections)
    run()
Esempio n. 27
0
    import rhc.micro as module

    logging.basicConfig(level=logging.DEBUG)

    aparser = argparse.ArgumentParser(
        description='start a micro service',
        formatter_class=argparse.ArgumentDefaultsHelpFormatter,
    )
    aparser.add_argument('--config', default='config', help='configuration file')
    aparser.add_argument('--no-config', dest='no_config', default=False, action='store_true', help="don't use a config file")
    aparser.add_argument('--micro', default='micro', help='micro description file')
    aparser.add_argument('-c', '--config-only', dest='config_only', action='store_true', default=False, help='parse micro and config files and display config values')

    aparser.add_argument('-v', '--verbose', action='store_true', default=False, help='display debug level messages')
    aparser.add_argument('-s', '--stdout', action='store_true', default=False, help='display messages to stdout')
    args = aparser.parse_args()

    p = parser.parse(args.micro)
    if args.no_config is False:
        p.config._load(args.config)
    if args.config_only is True:
        print p.config
    else:
        module.config = p.config
        setup_servers(p.config, p.servers, p.is_new)
        if p.is_new:
            setup_connections(p.config, p.connections)
        start(p.config, p.setup)
        run()
        stop(p.teardown)