forked from wikimedia/restbase
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.test.yaml
190 lines (174 loc) · 6.09 KB
/
config.test.yaml
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# RESTBase test config, used in integration tests.
# Load some project templates. These are referenced / shared between domains
# in the root_spec further down.
default_project: &default_project
x-modules:
- path: test/test_module.yaml
- path: projects/wmf_default.yaml
options: &default_options
table:
backend: cassandra
hosts: [localhost]
keyspace: system
username: cassandra
password: cassandra
defaultConsistency: one # or 'localQuorum' for production
storage_groups:
- name: test.group.local
domains: /./
dbname: test.db.sqlite3 # ignored in cassandra, but useful in SQLite testing
table_ng:
backend: cassandra-ng
hosts: [localhost]
keyspace: system
username: cassandra
password: cassandra
defaultConsistency: one # or 'localQuorum' for production
storage_groups:
- name: test.group.local
domains: /./
dbname: test-ng.db.sqlite3 # ignored in cassandra, but useful in SQLite testing
parsoid:
host: https://parsoid-beta.wmflabs.org
grace_ttl: 2
action:
apiUriTemplate: "{{'https://{domain}/w/api.php'}}"
baseUriTemplate: "{{'https://{domain}/api/rest_v1'}}"
graphoid:
host: https://graphoid-beta.wmflabs.org
mathoid:
host: https://mathoid-beta.wmflabs.org
# 10 days Varnish caching, one day client-side
cache-control: s-maxage=864000, max-age=86400
mobileapps:
host: https://appservice.wmflabs.org
citoid:
host: https://citoid-beta.wmflabs.org
recommendation:
host: https://recommendation-api-beta.wmflabs.org
events: {}
purged_cache_control: test_purged_cache_control
# Cache control for purged endpoints allowing short-term client caching
purged_cache_control_client_cache: test_purged_cache_control_with_client_caching
pdf:
# Cache PDF for 5 minutes since it's not purged
cache_control: s-maxage=600, max-age=600
uri: https://pdfrender-beta.wmflabs.org
secret: secret
transform:
cx_host: https://cxserver-beta.wmflabs.org
skip_updates: false
# A separate project for en.wikipedia because it is more feature-rich
en.wikipedia.org: &en.wikipedia.org
x-modules:
- path: test/test_module.yaml
options:
events:
uri: http://127.0.0.1:8085/v1/events
topic: resource_change
transcludes_topic: change-prop.transcludes.resource-change
- path: projects/wmf_enwiki.yaml
options:
<<: *default_options
trending:
host: https://trending-beta.wmflabs.org
cache_control: s-maxage=1800, max-age=1800
labs_project: &labs_project
x-modules:
- path: test/test_module.yaml
- path: projects/wmf_enwiki.yaml
options:
<<: *default_options
trending:
host: https://trending-beta.wmflabs.org
cache_control: s-maxage=1800, max-age=1800
# A different project template, sharing configuration options.
wikimedia.org: &wikimedia.org
x-modules:
- path: test/test_module.yaml
- path: projects/wikimedia.org.yaml
options:
<<: *default_options
pageviews:
host: https://wikimedia.org/api/rest_v1/metrics
wiktionary_project: &wiktionary_project
x-modules:
- path: projects/wmf_wiktionary.yaml
options: *default_options
# Hacky way to parametrize RESTBase tests. TODO: Move to config?
test:
content_types:
html: text/html; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/HTML/1.5.0"
data-parsoid: application/json; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/data-parsoid/1.5.0"
wikitext: text/plain; charset=utf-8; profile="https://www.mediawiki.org/wiki/Specs/wikitext/1.0.0"
# The root of the spec tree. Domains tend to share specs by referencing them
# using YAML references.
spec_root: &spec_root
title: "The RESTBase root"
# Some more general RESTBase info
x-request-filters:
- path: test/utils/uri_dump_filter.js
options:
dump_test_uris: false
filepath: uri_dump
- path: lib/security_response_header_filter.js
x-sub-request-filters:
- type: default
name: http
options:
allow:
- pattern: /^https?:\/\/[a-zA-Z0-9\.]+\/w\/api\.php/
forward_headers: true
- pattern: /^https?:\/\/parsoid-beta.wmflabs.org.+/
forward_headers: true
- pattern: /^https?:\/\//
paths:
/{domain:test.wikipedia.org}: *default_project
# The order is important for tests.
# Redirect tests require en.wiki being not the first wiki in the list.
/{domain:en.wikipedia.org}: *en.wikipedia.org
/{domain:ru.wikipedia.org}: *default_project
/{domain:de.wikipedia.org}: *default_project
/{domain:test2.wikipedia.org}: *default_project
/{domain:commons.wikimedia.org}: *default_project
# labs, used for most tests
/{domain:en.wikipedia.beta.wmflabs.org}: *labs_project
# For security testing we rely on mocks, so it's OK to use French wiki.
/{domain:fr.wikipedia.org}:
<<: *default_project
x-route-filters:
- path: ./lib/mediawiki_auth_filter.js
options:
permissions:
- read
# global domain
/{domain:wikimedia.org}: *wikimedia.org
# Wiktionary has some specific endpoints
/{domain:en.wiktionary.org}: *wiktionary_project
# Finally, a standard service-runner config.
info:
name: restbase
services:
- name: restbase
module: hyperswitch
conf:
port: 7231
spec: *spec_root
salt: secret
default_page_size: 1
user_agent: RESTBase-testsuite
ui_name: RESTBase
ui_url: https://www.mediawiki.org/wiki/RESTBase
ui_title: RESTBase docs
logging:
name: restbase
level: info
#streams:
#- type: gelf
# host: <%= @logstash_host %>
# port: <%= @logstash_port %>
metrics:
#type: txstatsd
#host: localhost
#port: 8125
#batch: true