summaryrefslogtreecommitdiff
path: root/tests/test_func_loader.py
blob: a04632d33c245527ec735be561960ed14638116e (plain)
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
from paste.deploy import loadapp, loadfilter, appconfig
from fixture import *
import fakeapp.apps

here = os.path.abspath(os.path.dirname(__file__))

def test_main():
    app = loadapp('config:sample_configs/test_func.ini',
                  relative_to=here)
    assert app is fakeapp.apps.basic_app
    app = loadapp('config:sample_configs/test_func.ini#main',
                  relative_to=here)
    assert app is fakeapp.apps.basic_app
    app = loadapp('config:sample_configs/test_func.ini',
                  relative_to=here, name='main')
    assert app is fakeapp.apps.basic_app
    app = loadapp('config:sample_configs/test_func.ini#ignored',
                  relative_to=here, name='main')
    assert app is fakeapp.apps.basic_app

def test_other():
    app = loadapp('config:sample_configs/test_func.ini#other',
                  relative_to=here)
    assert app is fakeapp.apps.basic_app2
    

def test_composit():
    app = loadapp('config:sample_configs/test_func.ini#remote_addr',
                  relative_to=here)
    assert isinstance(app, fakeapp.apps.RemoteAddrDispatch)
    assert app.map['127.0.0.1'] is fakeapp.apps.basic_app
    assert app.map['0.0.0.0'] is fakeapp.apps.basic_app2