-
Notifications
You must be signed in to change notification settings - Fork 55
/
test-fiware.ini
96 lines (77 loc) · 2.41 KB
/
test-fiware.ini
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
[DEFAULT]
debug = false
# Uncomment and replace with the address which should receive any error reports
#email_to = [email protected]
smtp_server = localhost
error_email_from = paste@localhost
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 5000
[app:main]
#use = config:/usr/lib/ckan/default/src/ckan/test-core.ini
use = config:./ckan/test-core.ini
# Here we hard-code the database and a flag to make default tests
# run fast.
faster_db_test_hacks = True
#sqlalchemy.url = sqlite:///
# NB: other test configuration should go in test-core.ini, which is
# what the postgres tests use.
ckan.site_id = ckanext.oauth2.test
ckan.site_url = http://localhost:5000
ckan.cache_validation_enabled = True
ckan.cache_enabled = False
ckan.tests.functional.test_cache.expires = 1800
ckan.tests.functional.test_cache.TestCacheBasics.test_get_cache_expires.expires = 3600
ckan.plugins = oauth2
## OAuth2 configuration
ckan.oauth2.register_url = http://localhost:3000/sign_up
ckan.oauth2.reset_url = http://localhost:3000/password/request
ckan.oauth2.edit_url = http://localhost:3000/idm/settings
ckan.oauth2.authorization_endpoint = http://localhost:3000/oauth2/authorize
ckan.oauth2.token_endpoint = http://localhost:3000/oauth2/token
ckan.oauth2.profile_api_url = http://localhost:3000/user
ckan.oauth2.is_legacy = true
# The following parameters are configured through environment variables
#ckan.oauth2.client_id = 361020fd7cf64456890dd98da88e64f3
#ckan.oauth2.client_secret = edf713bf8a2344139f46a757fadae24f
ckan.oauth2.scope = all_info
ckan.oauth2.rememberer_name = auth_tkt
ckan.oauth2.profile_api_user_field = username
ckan.oauth2.profile_api_fullname_field = username
ckan.oauth2.profile_api_mail_field = email
ckan.oauth2.authorization_header = Bearer
#who.config_file = %(here)s/who-fiware.ini
# Avoid legacy templates
ckan.legacy_templates = no
# Logging configuration
[loggers]
keys = root, ckan, ckanext, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_ckan]
qualname = ckan
handlers = console
level = INFO
propagate = 0
[logger_ckanext]
qualname = ckanext
handlers = console
level = DEBUG
propagate = 0
[logger_sqlalchemy]
handlers = console
qualname = sqlalchemy.engine
level = WARN
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s